Skip to main content
GET
/
api
/
context
/
{context_id}
Context Get
curl --request GET \
  --url https://app.apigene.ai/api/context/{context_id} \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "description": "<string>",
  "created_by": "<string>",
  "id": "<string>",
  "apps": [],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: 'Authorization: Bearer {token}'

Path Parameters

context_id
string
required

Response

Successful Response

name
string
required

Name of the context

description
string
required

Description of the context

created_by
string
required

User who created the context

id
string

Unique identifier for the context

apps
string[]

List of associated apps

created_at
string<date-time>

The date and time when the context was created.

updated_at
string<date-time>

The date and time when the context was last updated.