Reminders
Create a Reminder
Creates a new Reminder. Exactly one of company, person, or opportunity must be provided.
The creator of the new reminder is the user associated with the API key.
post/v2/reminders
Request body
Example request
{
"owner": {
"id": 1
},
"content": "Follow up about the funding round",
"entity": {
"type": "company",
"id": 1
}
}Response
Created
Example response
{
"id": 1,
"content": "Follow up about the funding round",
"dueDate": "2026-06-01T17:00:00Z",
"creator": {
"id": 1
},
"owner": {
"id": 1
},
"completer": {
"id": 1
},
"company": {
"id": 1
},
"person": {
"id": 1
},
"opportunity": {
"id": 1
},
"createdAt": "2023-01-01T00:00:00Z",
"updatedAt": "2023-01-01T00:00:00Z"
}