Part3 Developers

Clients list

GET /client

List OAuth clients

GET
/client
AuthorizationBearer <token>

In: header

Query Parameters

cursor?string

Cursor from a prior response. Omit on the first page.

limit?string

Page size, 1–50 (default 20). Sent as a string.

sortBy?string

Sort field. createdAt (default) or name.

sortOrder?string

Sort direction. desc (default) or asc.

includePermissions?string

When true, attach the permissions map on each row.

Response Body

application/json

application/json

curl -X GET "https://api.part3.io/v1/client"
{
  "data": [
    {
      "id": "4f5e6d7c-8b9a-4d2e-a3f5-678c9d0e1f2a",
      "clientId": "p3_8a1b2c3d4e5f60718293a4b5c6d7e8f9",
      "name": "AcmeCorp Project Sync",
      "description": "Backend job that mirrors AcmeCorp project metadata.",
      "superadmin": false,
      "enabled": true,
      "createdBy": "admin@part3.io",
      "createdAt": "2026-01-08T19:24:00Z"
    }
  ],
  "nextCursor": null,
  "hasMore": false
}
{
  "error": "Client token required"
}