Skip to main content
POST
/
api
/
v2
/
task
curl --request POST \
  --url https://api.example.com/api/v2/task \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "attributes": {
    "title": "Acme Follow Up Task",
    "owner_user_id": "<user-uuid>"
  }
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "attributes": {
      "id": {
        "value": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "value_type": "uuid"
      },
      "organization_id": {
        "value": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "value_type": "uuid"
      },
      "title": {
        "value": "<string>",
        "value_type": "string"
      },
      "status": {
        "value": "<string>",
        "value_type": "enum"
      },
      "priority": {
        "value": "<string>",
        "value_type": "enum"
      },
      "owner_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "type": {
        "value": "<string>",
        "value_type": "enum"
      },
      "source_type": {
        "value": "<string>",
        "value_type": "enum"
      },
      "created_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "updated_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "participant_user_id_list": [
        {
          "value": {
            "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "related_record_type": "<string>"
          },
          "value_type": "record_reference"
        }
      ],
      "note": {
        "value": "<string>",
        "value_type": "long_text"
      },
      "due_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "disposition": {
        "value": "<string>",
        "value_type": "string"
      },
      "owner_team_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "is_private": {
        "value": true,
        "value_type": "boolean"
      },
      "archived_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "completed_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "created_by_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "updated_by_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "archived_by_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "completed_by_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      }
    },
    "record_type": "task"
  }
}

Authorizations

Authorization
string
header
required

Reevo API key passed as Authorization: Bearer <api-key>.

Body

application/json
attributes
TaskCreateRequestAttributes · object
required

Create writable-field surface.

Only the writable task scalars are declared. title is the sole required-on-create attribute on the public wire; owner_user_id is excluded from required-on-create and defaults to the API-key caller in the adapter. status / priority / type are server-defaulted by the adapter (the internal CreateTaskRequest requires them, but the public surface does not). Non-writable fields (read-only render fields, disposition which core drops on create, and the account / pipeline relationships) are NOT declared here, so an explicit value lands in __pydantic_extra__ and is rejected by the shared custom-field write-validator. In particular owner_team_id is read-only — it has no CRUD write path, so it is omitted here and an explicit value is rejected. Account / pipeline linkage is written via the task relationship endpoints.

Response

Successful Response

Wrapper around a single TaskObjectRecord — GET / POST / PATCH.

data
TaskObjectRecord · object
required