/projects/{id}
404 if no such project; 403 if it exists but belongs to another client.
GET
https://dashboard.a2bsample.com/api/developer/playground/client/projects/{projectId}Requires
AuthorizationandX-Api-Tokenas headers.Client
Client·Projects·GET
/projects/{id}GET
https://dashboard.a2bsample.com/api/developer/playground/client/projects/{projectId}missing projectId
Response
Send a request to see the response.
Example request
Request
Request
Headers3
AuthorizationstringrequiredThe secret half. A client token starts clt_ — the four-character prefix says which table to resolve it in, so the row it matches is the caller. A vnd_… token on this prefix is a 403, not a 404.
example: Bearer clt_4c8ea1f52d6b8e0c4a919f1c4e2a7b3d
X-Api-TokenstringrequiredThe identity half — this client'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: 3c7a1b905e424d189f637a2c5e1b8d40b1d9f4e6
AcceptstringoptionalResponse media type.
default: application/json
Path parameters1
projectIdstring<uuid>requiredProject identifier. Ownership-checked in the service, never trusted from the URL.
Responses
200OK
The project.
successboolean- Whether the call succeeded.
projectobject- A project as its owning client sees it.
vendorCpiis absent from this record entirely, not present-and-nulled — a field that is never populated is one nobody has to remember to null on a new code path.
Example response