Skip to main content
GET
/
components
/
{component_id}
/
configs
/
current
Get Current Config
curl --request GET \
  --url https://api.example.com/components/{component_id}/configs/current \
  --header 'Authorization: Bearer <token>'
{
  "component_id": "<string>",
  "version": 123,
  "stage": "<string>",
  "config": {},
  "created_at": 123,
  "label": "<string>",
  "notes": "<string>",
  "updated_at": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

component_id
string
required

Component ID

Response

Successful Response

component_id
string
required
version
integer
required
stage
string
required
config
Config · object
required
created_at
integer
required
label
string | null
notes
string | null
updated_at
integer | null