For the complete documentation index, see llms.txt. This page is also available as Markdown.

List To Dos

List To Dos

get

Retrieve To Dos for the authenticated user. Admins see every To Do; all other users see the To Dos belonging to phones on their own accounts. Results are paginated with page and page_size — this endpoint does not support date-range filtering.

Authorizations
AuthorizationstringRequired

Answering Service Care uses bearer token authentication. Generate API tokens from your user profile under Application Keys.

Query parameters
pageinteger · min: 1Optional

Page number to return (1-based).

Default: 1
page_sizeinteger · min: 1Optional

Number of To Dos per page. Defaults to 10.

Default: 10
Responses
200

Successful response

application/json
get/api/v2/to-dos
GET /api/v2/to-dos HTTP/1.1
Host: secure.answeringservicecare.com
Authorization: Bearer YOUR_API_TOKEN
Accept: */*
{
  "data": [
    {
      "id": 157,
      "name": "text",
      "phone_id": 1,
      "delivery_type": "sms",
      "contact": "text",
      "message_text": "text",
      "instructions": "text",
      "from": "text",
      "from_email": "text",
      "sender_name": "text",
      "subject": "text",
      "sendgrid_authenticated_domain_id": 1,
      "ai_assistant_id": "text",
      "times": [
        "text"
      ],
      "is_sending": true,
      "created_at": "2026-01-01T00:00:00.000Z",
      "updated_at": "2026-01-01T00:00:00.000Z",
      "schedule": {
        "id": 1,
        "schedulable_id": 1,
        "schedulable_type": "ToDo",
        "rule": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        },
        "times": [
          "text"
        ],
        "previous_occurrence": "2026-01-01T00:00:00.000Z",
        "next_occurrence": "2026-01-01T00:00:00.000Z",
        "created_at": "2026-01-01T00:00:00.000Z",
        "updated_at": "2026-01-01T00:00:00.000Z"
      }
    }
  ]
}

Last updated

Was this helpful?