Skip to main content
GET
/
api
/
v1
/
configuration
/
get_user_configuration
/
{config_id}
Get User Configuration
curl --request GET \
  --url https://api.cognee.ai/api/v1/configuration/get_user_configuration/{config_id} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.cognee.ai/api/v1/configuration/get_user_configuration/{config_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

config_id
string<uuid>
required

UUID of a stored configuration (the 'id' field returned by GET /api/v1/configuration/get_user_configuration/).

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

Response

Successful Response

The response is of type Response Get User Configuration Api V1 Configuration Get User Configuration Config Id Get · object.