GET
/data/user/context
curl \
--request GET 'http://api.example.com/data/user/context' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"user": {
"id": "uuid",
"name": "John Doe"
},
"projects": [
{
"id": "uuid",
"name": "Project 1"
}
],
"departments": [
{
"id": "uuid",
"name": "Animation"
}
],
"asset_types": [
{
"id": "uuid",
"name": "Character"
}
],
"task_types": [
{
"id": "uuid",
"name": "Modeling"
}
],
"task_status": [
{
"id": "uuid",
"name": "In Progress"
}
],
"custom_actions": [
{
"id": "uuid",
"name": "Custom Action"
}
],
"status_automations": [
{
"id": "uuid",
"name": "Auto Status"
}
],
"studios": [
{
"id": "uuid",
"name": "Studio Name"
}
],
"notification_count": 5,
"persons": [
{
"id": "uuid",
"name": "John Doe"
}
],
"project_status": [
{
"id": "uuid",
"name": "Active"
}
],
"search_filters": [
{
"id": "uuid",
"name": "My Filter"
}
],
"search_filter_groups": [
{
"id": "uuid",
"name": "Filter Group"
}
],
"preview_background_files": [
{
"id": "uuid",
"name": "background.jpg"
}
]
}