Get open projects

GET /data/user/projects/open

Retrieve open projects for which the current user has at least one task assigned. Optionally filter by project name.

Query parameters

  • name string

    Filter projects by name

Responses

  • 200 application/json

    Open projects with assigned tasks for current user

    Hide response attributes Show response attributes object
    • id string(uuid)

      Project unique identifier

    • name string

      Project name

    • description string

      Project description

    • status string

      Project status

    • fps number

      Frames per second

    • ratio string

      Aspect ratio

    • resolution string

      Project resolution

    • created_at string(date-time)

      Creation timestamp

    • updated_at string(date-time)

      Last update timestamp

GET /data/user/projects/open
curl \
 --request GET 'http://api.example.com/data/user/projects/open' \
 --header "Authorization: $API_KEY"
Response examples (200)
[
  {
    "id": "a24a6ea4-ce75-4665-a070-57453082c25",
    "name": "My Project",
    "description": "A sample project",
    "status": "Active",
    "fps": 24.0,
    "ratio": "16:9",
    "resolution": "1920x1080",
    "created_at": "2023-01-01T12:00:00Z",
    "updated_at": "2023-01-01T12:30:00Z"
  }
]