GET
/
rest
/
configs
/
{id}
curl --request GET \
  --url https://copilotz.com/rest/configs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "name": "AI_CHAT_PROVIDER",
  "value": {
    "provider": "openai",
    "model": "gpt-4o"
  },
  "owner": 1,
  "ownerType": "copilotz"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Successful response

Response containing configuration details.