POST api/Zapier/InsertCallLogRecord
Insert call log record.
Request Information
URI Parameters
None.
Body Parameters
CallLogRecordIntegrationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| type | string |
None. |
|
| from_number | string |
None. |
|
| from_name | string |
None. |
|
| to_number | string |
None. |
|
| to_name | string |
None. |
|
| start_date | date |
None. |
|
| duration | decimal number |
None. |
|
| call_log_id | string |
None. |
|
| action | string |
None. |
|
| result | string |
None. |
|
| insured_database_id | globally unique identifier |
None. |
|
| insured_email | string |
None. |
|
| insured_first_name | string |
None. |
|
| insured_last_name | string |
None. |
|
| insured_commercial_name | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"type": "sample string 1",
"from_number": "sample string 2",
"from_name": "sample string 3",
"to_number": "sample string 4",
"to_name": "sample string 5",
"start_date": "2025-10-28T02:37:44.7752451-05:00",
"duration": 1.0,
"call_log_id": "sample string 6",
"action": "sample string 7",
"result": "sample string 8",
"insured_database_id": "428a576b-b4d2-4638-b765-dedd11f37787",
"insured_email": "sample string 9",
"insured_first_name": "sample string 10",
"insured_last_name": "sample string 11",
"insured_commercial_name": "sample string 12"
}
application/xml, text/xml
Sample:
<CallLogRecordIntegrationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Integrations.Models"> <Action>sample string 7</Action> <CallLogId>sample string 6</CallLogId> <Duration>1</Duration> <FromName>sample string 3</FromName> <FromNumber>sample string 2</FromNumber> <InsuredCommercialName>sample string 12</InsuredCommercialName> <InsuredDatabaseId>428a576b-b4d2-4638-b765-dedd11f37787</InsuredDatabaseId> <InsuredEmail>sample string 9</InsuredEmail> <InsuredFirstName>sample string 10</InsuredFirstName> <InsuredLastName>sample string 11</InsuredLastName> <Result>sample string 8</Result> <StartDate>2025-10-28T02:37:44.7752451-05:00</StartDate> <ToName>sample string 5</ToName> <ToNumber>sample string 4</ToNumber> <Type>sample string 1</Type> </CallLogRecordIntegrationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NowCertsApiResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ApiStatus |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 0,
"message": "sample string 1"
}
application/xml, text/xml
Sample:
<NowCertsApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <Message>sample string 1</Message> <Status>Error</Status> </NowCertsApiResult>