Ferndesk

Tasks

Get task by ID

Retrieve a single task by its ID to check its current processing status.

GET /tasks/{id}

Get task by ID

curl --request GET \
  --url 'https://api.ferndesk.com/v1/tasks/{ID}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "id": "<string>",
  "title": "<string>",
  "status": "<string>"
}

Task

Authorizations

  • Authorization string required header

    All requests require a Bearer token in the Authorization header. API keys are prefixed with fdsk_ and should be kept secret. You can generate and manage keys from the Developer settings page.

Path Parameters

  • id string required

    Resource ID for the requested entity. Example: art_01JXY9AZK4KV

Response

application/json
  • id string

    Task ID (tsk_...).

  • title string | null

    Task title. Derived from description if omitted on create.

  • status string

    Task processing status.