PUT
/
reminders
/
{id_reminder}
curl --request PUT \
  --url https://api.breakcold.com/reminders/{id_reminder} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "name": "Updated Reminder Name",
  "date": "2021-07-01T13:00:00Z",
  "cron": "0 15 10 * * ?",
  "is_done": true
}'
{
  "id_reminder": "reminder002",
  "name": "Updated Reminder",
  "id_lead": "lead001",
  "date": "2021-07-02T13:00:00Z",
  "is_done": true
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

id_reminder
string
required

The unique identifier for the reminder to update.

Query Parameters

id_space
string

Workspace identifier. Not required if 'X-API-KEY' is provided.

Body

application/json

Updated details of the reminder.

The body is of type object.

Response

200
application/json

Reminder updated successfully.

The response is of type any.