POST DealSheet/postvendoractivity
Post Activity from vendor systems.
Request Information
URI Parameters
None.
Body Parameters
PostVendorActivityRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| entityList |
List of one or more entities (GUID's) to assign the activity to. |
Collection of globally unique identifier |
None. |
| activityId |
Activity Id |
string |
None. |
| vendorCustomerId |
Vendor-specific Customer Id |
string |
None. |
| activityType |
Activity Type |
string |
None. |
| activityDateUTC |
Activity Date in UTC format |
date |
None. |
| notes |
Notes |
string |
None. |
| performedByUserId |
Performed By UserID. If the user is an AutoAlert user, this is the AutoAlert User ID, otherwise it is null. |
integer |
None. |
| performedByFirstName |
Performed By First Name |
string |
None. |
| performedByLastName |
Performed By Last Name |
string |
None. |
| contactedPhone |
Contacted Phone Number. For use with outbound calls. |
string |
None. |
| subject |
Subject. For use with inbound or outbound emails. |
string |
None. |
| fromEmailAddress |
From Email Address. For use with inbound or outbound emails. |
string |
None. |
| toEmailAddress |
To Email Address. For use with inbound or outbound emails. |
string |
None. |
| token |
API access token |
globally unique identifier |
Required |
Request Formats
application/json, text/json
{
"entityList": [
"4f8fed67-9232-41a8-8491-5be1720de9e6",
"c8f57169-a406-43e7-b580-664e126f09fb"
],
"activityId": "sample string 1",
"vendorCustomerId": "sample string 2",
"activityType": "sample string 3",
"activityDateUTC": "2025-11-11T00:18:23.4535118-08:00",
"notes": "sample string 5",
"performedByUserId": 1,
"performedByFirstName": "sample string 6",
"performedByLastName": "sample string 7",
"contactedPhone": "sample string 8",
"subject": "sample string 9",
"fromEmailAddress": "sample string 10",
"toEmailAddress": "sample string 11",
"token": "6e5be427-c328-4fc2-b21e-cf66dda0cbda"
}
application/xml, text/xml
<PostVendorActivityRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.DealSheet">
<token xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models">6e5be427-c328-4fc2-b21e-cf66dda0cbda</token>
<activityDateUTC>2025-11-11T00:18:23.4535118-08:00</activityDateUTC>
<activityId>sample string 1</activityId>
<activityType>sample string 3</activityType>
<contactedPhone>sample string 8</contactedPhone>
<entityList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>4f8fed67-9232-41a8-8491-5be1720de9e6</d2p1:guid>
<d2p1:guid>c8f57169-a406-43e7-b580-664e126f09fb</d2p1:guid>
</entityList>
<fromEmailAddress>sample string 10</fromEmailAddress>
<notes>sample string 5</notes>
<performedByFirstName>sample string 6</performedByFirstName>
<performedByLastName>sample string 7</performedByLastName>
<performedByUserId>1</performedByUserId>
<subject>sample string 9</subject>
<toEmailAddress>sample string 11</toEmailAddress>
<vendorCustomerId>sample string 2</vendorCustomerId>
</PostVendorActivityRequest>
Response Information
Resource Description
APIResult| Name | Description | Type | Additional information |
|---|---|---|---|
| code |
API result code |
integer |
None. |
| error |
API error message |
string |
None. |
| APIVersion |
API Version |
integer |
None. |
Response Formats
application/json, text/json
{
"APIVersion": 1,
"code": 200,
"error": "sample string 2"
}
application/xml, text/xml
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API"> <APIVersion>1</APIVersion> <error>sample string 2</error> </APIResult>