engagements

Count Post

POST
Counts the engagement records.

Request

This endpoint expects an object.
external_ref
list of stringsOptional

Filters for meetings with the provided external_refs.

members
list of stringsOptional
Filters for engagement of the provided members.
parent
list of stringsOptional
Filters for engagements with the provided parent.
type
list of enumsOptional
Filters for engagement of the provided types.

Response

This endpoint returns an object
count
integer
The number of engagements matching the filter.
POST
1curl -X POST https://api.devrev.ai/engagements.count \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
200
Successful
1{
2 "count": 1
3}