Skip to main content
GET
/
components
/
{component_id}
/
configs
List Configs
curl --request GET \
  --url https://api.example.com/components/{component_id}/configs \
  --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

Query Parameters

include_config
boolean
default:true

Include full config blob

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