GET orders/{orderKey}/tags

Get all tags for an order by order number or GUID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderKey The order number or GUID string Required

Body Parameters

None.

Response Information

Resource Description

Get all tags for an order by order number or GUID.

Collection of OrderTagResponse
NameDescriptionTypeAdditional information
OrderTagId integer None.
TagId integer None.
TagValue string None.

Response Formats

application/json, text/json

Sample:
[
  {
    "OrderTagId": 1,
    "TagId": 2,
    "TagValue": "sample string 3"
  },
  {
    "OrderTagId": 1,
    "TagId": 2,
    "TagValue": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOrderTagResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <OrderTagResponse>
    <OrderTagId>1</OrderTagId>
    <TagId>2</TagId>
    <TagValue>sample string 3</TagValue>
  </OrderTagResponse>
  <OrderTagResponse>
    <OrderTagId>1</OrderTagId>
    <TagId>2</TagId>
    <TagValue>sample string 3</TagValue>
  </OrderTagResponse>
</ArrayOfOrderTagResponse>