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

NameDescriptionTypeAdditional information
serviceprovider

Name of service provider associated with order map.

string

Required

Body Parameters

None.

Response Information

Resource Description

OrderMapLastUpdatedResponse
NameDescriptionTypeAdditional 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": "2025-08-24T22:52:22.9093472-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>2025-08-24T22:52:22.9093472-05:00</LastUpdateUTC>
</OrderMapLastUpdatedResponse>