GuideLab API

List Stripe External Adjustments

List unresolved Stripe dashboard refunds, disputes, and refund gaps for the authenticated lab. Lab owner/admin only.

GET
/finances/external-adjustments

List unresolved Stripe dashboard refunds, disputes, and refund gaps for the authenticated lab. Lab owner/admin only.

Authorization

__Secure-guidelab-prod.session_token<token>

Production session cookie set for the guidelab.co domain by Better Auth

In: cookie

Query Parameters

page?integer
Range0 < value
Default1
limit?integer
Range0 < value <= 100
Default20

Response Body

application/json

curl -X GET "https://example.com/finances/external-adjustments"
{  "data": [    {      "id": "string",      "paymentId": "string",      "partnershipId": "string",      "clinicId": "string",      "clinicName": "string",      "kind": "refund",      "amount": "string",      "resolutionAmount": "string",      "currency": "string",      "providerStatus": "string",      "effectState": "none",      "reviewReason": "string",      "providerReference": "string",      "paymentReference": "string",      "lastProviderEventAt": "string",      "createdAt": "string",      "canResolve": true,      "allowedResolutionTypes": [        "allocate"      ]    }  ],  "pagination": {    "page": 0,    "limit": 0,    "total": 0,    "totalPages": 0  }}