interactions
Get interaction record by ID
people
companies
interactions
Get interaction record by ID
GET
/
interactions
/
{interactionId}
curl --request GET \
--url https://api.klipycrm.com/api/v1/interactions/{interactionId} \
--header 'X-KLIPY-API-KEY: <api-key>'
{
"success": true,
"data": {
"id": "<string>",
"companies": [
"<string>"
],
"contacts": [
"<string>"
],
"direction": "INBOUND",
"sentiment": "MEETING_REQUESTED",
"source": "EMAIL",
"summary": "<string>",
"title": "<string>",
"type": "EMAIL",
"createdBy": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"interactionDate": "2023-11-07T05:31:56Z"
}
}
Authorizations
Path Parameters
Unique ID of the interaction record
Response
200
application/json
Success
Unique ID of interaction record
Array of company IDs associated with this interaction
Array of contact IDs associated with this interaction
Direction of the interaction (INBOUND, OUTBOUND, HYBRID, EVENT)
Available options:
INBOUND
, OUTBOUND
, HYBRID
, EVENT
Sentiment of the interaction
Example:
"MEETING_REQUESTED"
Source of the interaction
Example:
"EMAIL"
Detailed summary of the interaction, may contain HTML
Title or subject of the interaction
Type of interaction
Example:
"EMAIL"
ID of the user who created this interaction record
Timestamp when the interaction record was created
Timestamp when the interaction occurred
curl --request GET \
--url https://api.klipycrm.com/api/v1/interactions/{interactionId} \
--header 'X-KLIPY-API-KEY: <api-key>'
{
"success": true,
"data": {
"id": "<string>",
"companies": [
"<string>"
],
"contacts": [
"<string>"
],
"direction": "INBOUND",
"sentiment": "MEETING_REQUESTED",
"source": "EMAIL",
"summary": "<string>",
"title": "<string>",
"type": "EMAIL",
"createdBy": "<string>",
"creationTime": "2023-11-07T05:31:56Z",
"interactionDate": "2023-11-07T05:31:56Z"
}
}