Developers
API ReferenceTask Reminder

Creates a TaskReminder resource

POST
/project/task-reminders

Creates a TaskReminder resource

Authorization<token>

Value for the Authorization header parameter.

In: header

Request Body

The new TaskReminder resource

TypeScript Definitions

Use the request body type in TypeScript.

task*string
Formatuuid
remindAt*string
Formatdate-time

Response Body

curl -X POST "https://example.com/project/task-reminders" \  -H "Content-Type: application/json" \  -d '{    "task": "4879b8a6-fb3e-4a0d-aef8-b0ea469ac85c",    "remindAt": "2019-08-24T14:15:22Z"  }'
{  "id": "string",  "remindAt": "2019-08-24T14:15:22Z",  "isExecuted": true}