Skip to main content
GET
http://localhost:3000
/
scopes
/
{id}
curl -X GET 'https://api.example.com/scopes/scope_123' \
  -H 'Authorization: Bearer YOUR_TOKEN'
{
  "id": "scope_123",
  "name": "Acme Organization",
  "typeId": "type_org",
  "externalId": "org-acme"
}

Path Parameters

id
string
required
The unique identifier of the scope

Response

id
string
Unique identifier for the scope
name
string
Display name of the scope
typeId
string
The scope type ID
externalId
string
External identifier for the scope
curl -X GET 'https://api.example.com/scopes/scope_123' \
  -H 'Authorization: Bearer YOUR_TOKEN'
{
  "id": "scope_123",
  "name": "Acme Organization",
  "typeId": "type_org",
  "externalId": "org-acme"
}