POST Opportunity/getdateoppslastupdated

Get the date Opportunities were last updated

Request Information

URI Parameters

None.

Body Parameters

AuthenticatedRequest
NameDescriptionTypeAdditional information
token

API access token

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "token": "66af8e70-6f36-4182-b1f5-31b5926adc9e"
}

application/xml, text/xml

Sample:
<AuthenticatedRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models">
  <token>66af8e70-6f36-4182-b1f5-31b5926adc9e</token>
</AuthenticatedRequest>

Response Information

Resource Description

getDateOppsLastUpdatedResponse
NameDescriptionTypeAdditional information
code

API result code

integer

None.

error

API error message

string

None.

DateOppsLastUpdated

UTC Date Opportunities were last updated

date

None.

APIVersion

API Version

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "DateOppsLastUpdated": "2024-10-23T06:46:09.3086697-07:00",
  "APIVersion": 2,
  "code": 200,
  "error": "sample string 1"
}

application/xml, text/xml

Sample:
<getDateOppsLastUpdatedResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Opportunity">
  <APIVersion xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">2</APIVersion>
  <error xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">sample string 1</error>
  <DateOppsLastUpdated>2024-10-23T06:46:09.3086697-07:00</DateOppsLastUpdated>
</getDateOppsLastUpdatedResponse>