Activity records
Create an activity record
Creates a new activity record, for example one specific phone call.
This endpoint is in alpha and may be subject to breaking changes as we gather feedback.
Required scopes: activity_record:read-write, activity_configuration:read.
post/v2/activities/{activity}/records
Path parameters
activitystring required
A UUID or slug to identify the activity.
Example:phone_calls
Request body
Example request
{
"data": {
"values": {
"41252299-f8c7-4b5e-99c9-4ff8321d2f96": "Text value",
"multiselect_attribute": [
"Select option 1",
"Select option 2"
]
}
}
}Response
Success
Example response
{
"data": {
"id": {
"workspace_id": "14beef7a-99f7-4534-a87e-70b564330a4c",
"activity_id": "97052eb9-e65e-443f-a297-f2d9a4a7f795",
"record_id": "5f4f2d9c-2b3e-4a83-9c76-1de3a3f14f26"
},
"created_at": "2022-11-21T13:22:49.061281000Z"
}
}