Skip to main content
GET
/
v1
/
tasks
/
{id}
Get task by ID
curl --request GET \
  --url https://api.stardex.ai/v1/tasks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "aaa11111-bbbb-cccc-dddd-eeeeeeee1111",
    "content_text": "Follow up with candidate about interview availability",
    "task_type": "text",
    "due_date": "2024-02-15T17:00:00Z",
    "is_completed": false,
    "person_id": "123e4567-e89b-12d3-a456-426614174000",
    "deal_id": "234e5678-e90a-12b3-c456-789012345678",
    "client_id": "345e6789-e01b-23c4-d567-890123456789",
    "job_id": "456e7890-e12b-34d5-a678-901234567890",
    "created_at": "2024-02-01T10:00:00Z",
    "updated_at": "2024-02-01T10:00:00Z",
    "owners": [
      {
        "id": "567e8901-e23c-45d6-e789-012345678901",
        "first_name": "Jane",
        "last_name": "Smith"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Authenticate with a Bearer token: API key, OAuth token, or session token.

Path Parameters

id
string
required

Task ID

Response

Task found

success
enum<boolean>
required
Available options:
true
data
object
required