Order List Representation
An order list representation is a JSON document which represents part of a list of orders. Its MIME type is application/vnd.fotoware.order-list+json
. A list of orders is represented as a paged list (see Paging).
{ data: [{...}, ...], paging: {...} }
where
Attribute |
Type |
Description |
---|---|---|
data |
Array of Objects | Orders in the list. Each element is an Order representation of an order in the list. |
paging |
Paging information (object) | Paging information. See Paging. |
Order list representations are always sorted chronologically with the newest orders first. The newest order is guaranteed to be always on the first page of the paged list.