Get project quotas

GET /data/projects/{project_id}/quotas/{task_type_id}

Get quotas statistics for a project and task type. Supports weighted and raw modes with optional feedback filtering.

Path parameters

  • project_id Required
  • task_type_id Required

Query parameters

  • count_mode Required
  • studio_id

Responses

  • 200 application/json

    Quotas statistics for shots

    Hide response attribute Show response attribute object
    • * object Additional properties
      Hide * attributes Show * attributes object
      • count integer
      • frames integer
  • 400

    Invalid count_mode or parameter

GET /data/projects/{project_id}/quotas/{task_type_id}
curl \
 --request GET 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/quotas/a24a6ea4-ce75-4665-a070-57453082c25?count_mode=weighted' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "additionalProperty1": {
    "count": 42,
    "frames": 1200
  },
  "additionalProperty2": {
    "count": 42,
    "frames": 1200
  }
}