POST DealSheet/postvendoractivity

Request Information

URI Parameters

None.

Body Parameters

PostVendorActivityRequest
NameDescriptionTypeAdditional information
entityList

Collection of globally unique identifier

None.

activityId

string

None.

vendorCustomerId

string

None.

activityType

string

None.

activityDateUTC

date

None.

notes

string

None.

performedByUserId

integer

None.

performedByFirstName

string

None.

performedByLastName

string

None.

contactedPhone

string

None.

subject

string

None.

fromEmailAddress

string

None.

toEmailAddress

string

None.

token

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "entityList": [
    "d7483727-6fb0-45ac-b843-8a008d459a46",
    "f098254a-d253-4c3b-90bd-77989701016a"
  ],
  "activityId": "sample string 1",
  "vendorCustomerId": "sample string 2",
  "activityType": "sample string 3",
  "activityDateUTC": "2025-12-18T21:29:34.7478257-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": "d8504211-235a-4084-94e8-7cdc89c5d16a"
}

application/xml, text/xml

Sample:
<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">d8504211-235a-4084-94e8-7cdc89c5d16a</token>
  <activityDateUTC>2025-12-18T21:29:34.7478257-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>d7483727-6fb0-45ac-b843-8a008d459a46</d2p1:guid>
    <d2p1:guid>f098254a-d253-4c3b-90bd-77989701016a</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>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResult
NameDescriptionTypeAdditional information
code

integer

None.

error

string

None.

APIVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "APIVersion": 1,
  "code": 200,
  "error": "sample string 2"
}

application/xml, text/xml

Sample:
<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>