Skip to main content
GET
http://localhost:3000
/
scope-types
curl -X GET 'https://api.example.com/scope-types' \
  -H 'Authorization: Bearer YOUR_TOKEN'
[
  {
    "id": "type_org",
    "name": "Organization",
    "description": "Top-level organization scope"
  },
  {
    "id": "type_team",
    "name": "Team",
    "description": "Team within an organization"
  },
  {
    "id": "type_project",
    "name": "Project",
    "description": "Project within a team"
  }
]

Response

Returns an array of all scope type objects.
scopeTypes
array
curl -X GET 'https://api.example.com/scope-types' \
  -H 'Authorization: Bearer YOUR_TOKEN'
[
  {
    "id": "type_org",
    "name": "Organization",
    "description": "Top-level organization scope"
  },
  {
    "id": "type_team",
    "name": "Team",
    "description": "Team within an organization"
  },
  {
    "id": "type_project",
    "name": "Project",
    "description": "Project within a team"
  }
]