POST Opportunity/getdateoppslastupdated
Get the date Opportunities were last updated
Request Information
URI Parameters
None.
Body Parameters
AuthenticatedRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
API access token |
globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"token": "dd1e654a-ed01-489a-8f21-94c34d9517f0"
}
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>dd1e654a-ed01-489a-8f21-94c34d9517f0</token> </AuthenticatedRequest>
Response Information
Resource Description
getDateOppsLastUpdatedResponse| Name | Description | Type | Additional 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": "2025-10-30T06:39:17.2991339-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>2025-10-30T06:39:17.2991339-07:00</DateOppsLastUpdated> </getDateOppsLastUpdatedResponse>