Skip to main content
GET
/
api
/
core
/
contexts
/
{context_id}
Get a specific Context
curl --request GET \
  --url https://api.example.com/api/core/contexts/{context_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "title": "<string>",
  "category_id": "<string>",
  "context": "<string>",
  "scope": {
    "type": "org",
    "scope_id": "<string>"
  },
  "stack_order": 123
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Format: 'Bearer '

Path Parameters

context_id
string
required

Response

Successful Response

id
string
required
title
string
required
category_id
string
required
context
string
required
scope
ContextScope · object
required
stack_order
integer | null