/reconciliations

Every approved upload that has promoted at least one of this vendor's own hits to Reconcile. Pending and rejected uploads never appear — a vendor has no business seeing a client's still-in-review reconciliation attempt.

GEThttps://dashboard.a2bsample.com/api/developer/playground/vendor/reconciliations
RequiresAuthorizationandX-Api-Tokenas headers.
Vendor
Vendor·Reconciliations·GET/reconciliations
GEThttps://dashboard.a2bsample.com/api/developer/playground/vendor/reconciliations
Response

Send a request to see the response.

Example request

Request
curl --request GET \  --url 'https://dashboard.a2bsample.com/api/developer/playground/vendor/reconciliations' \  --header 'Authorization: Bearer $A2B_BEARER_TOKEN' \  --header 'X-Api-Token: $A2B_API_TOKEN' \  --header 'Accept: application/json'

Request

Headers3

Authorizationstringrequired

The secret half. A vendor token starts vnd_ — the four-character prefix says which table to resolve it in, so the row it matches is the caller. A clt_… token on this prefix is a 403, not a 404.

example: Bearer vnd_7b3d4c8ea1f52d6b8e0c4a919f1c4e2a
X-Api-Tokenstringrequired

The identity half — this vendor's own 40-hex apiToken, the value GET /api/developer/me echoes back. Compared in constant time against the bearer token's own row, so a bearer token lifted on its own is not enough to call the playground.

example: 9f1c4e2a7b3d4c8ea1f52d6b8e0c4a913c7a1b90
Acceptstringoptional

Response media type.

default: application/json

Responses

200OK

Approved uploads affecting this vendor.

successboolean
Whether the call succeeded.
reconciliationsarray<object>
totalinteger
Example response
{  "success": true,  "reconciliations": [    {      "id": "4a919f1c-4e2a-7b3d-4c8e-a1f52d6b8e0c",      "projectId": "9f1c4e2a-7b3d-4c8e-a1f5-2d6b8e0c4a91",      "projectName": "Q3 Brand Tracker",      "clientName": "Acme Insights",      "fileName": "reconcile-aug.csv",      "status": "APPROVED",      "uploadedAt": "2026-08-20T09:14:02",      "uploadedByName": "string",      "reviewedAt": "2026-08-21T11:03:44",      "reviewedByName": "priya",      "totalRows": 310,      "matchedRows": 287,      "rejectionReason": "string"    }  ],  "total": 4}