Part3 Developers

Me introspect

GET /client/me

Introspect the calling client's auth

GET
/client/me
AuthorizationBearer <token>

In: header

Response Body

application/json

application/json

curl -X GET "https://api.part3.io/v1/client/me"
{
  "id": "4f5e6d7c-8b9a-4d2e-a3f5-678c9d0e1f2a",
  "clientId": "p3_8a1b2c3d4e5f60718293a4b5c6d7e8f9",
  "permissions": {
    "mcp:access": true,
    "organization:read": true,
    "project:read": true,
    "document:read": true,
    "email:read": true,
    "client:read": false,
    "client:create": false,
    "explorer:query": false
  },
  "superadmin": false,
  "scope": {
    "orgs": [
      "org_8a1b2c3d4e"
    ],
    "projects": {
      "org_8a1b2c3d4e": [
        "proj_5f9a3c2e8b"
      ]
    }
  }
}
{
  "error": "Client token required"
}