engagements

Get Post

POST
Gets the engagement record.

Request

This endpoint expects an object.
id
stringRequired
The engagement ID.

Response

This endpoint returns an object
engagement
object
POST
1curl -X POST https://api.devrev.ai/engagements.get \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "id"
6}'
200
Successful
1{
2 "engagement": {
3 "id": "id",
4 "created_date": "2023-01-01T12:00:00Z",
5 "description": "description",
6 "display_id": "display_id",
7 "modified_date": "2023-01-01T12:00:00Z"
8 }
9}