GET v1/organization/ordermaplastupdated?serviceprovider={serviceprovider}
Get Order Map Last Update: Get a UTC timestamp of the last time a given service provider's Order Map was published.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| serviceprovider |
Name of service provider associated with order map. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
OrderMapLastUpdatedResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| LastUpdateUTC |
UTC Timestamp of last time OrderMap was published. |
date |
None. |
| Error |
Will be set to True if any errors occur during the processing of the API method. |
boolean |
None. |
| ErrorMessage |
Will contain an error message string if Error is True. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"LastUpdateUTC": "2026-04-05T09:36:03.0462751-05:00",
"Error": true,
"ErrorMessage": "sample string 3"
}
application/xml, text/xml
Sample:
<OrderMapLastUpdatedResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Error>true</Error> <ErrorMessage>sample string 3</ErrorMessage> <LastUpdateUTC>2026-04-05T09:36:03.0462751-05:00</LastUpdateUTC> </OrderMapLastUpdatedResponse>