curl --request POST \
--url https://api.openint.dev/v0/unified/crm/note \
--header 'Content-Type: application/json' \
--header 'x-apikey: <api-key>' \
--header 'x-connection-id: <api-key>' \
--data '{
"record": {
"content": "<string>",
"passthrough_fields": {},
"account_id": "<string>"
}
}'
{
"record": {
"id": "<string>",
"updated_at": "<string>",
"raw_data": {},
"content": "<string>"
}
}
Successful response
The response is of type object
.
curl --request POST \
--url https://api.openint.dev/v0/unified/crm/note \
--header 'Content-Type: application/json' \
--header 'x-apikey: <api-key>' \
--header 'x-connection-id: <api-key>' \
--data '{
"record": {
"content": "<string>",
"passthrough_fields": {},
"account_id": "<string>"
}
}'
{
"record": {
"id": "<string>",
"updated_at": "<string>",
"raw_data": {},
"content": "<string>"
}
}