The DscoItemIdsOrItemKeys JSON object represents a list of uniquely identified items either by their dscoItemIds or by their keys (ItemKey) other than dscoItemId - such as UPC.
- Make sure you're familiar with JSON before continuing.
- The JSON objects are defined using Orderly. Optional attrs end with a "?" all others are required.
- isodate fields use one of these ISO 8601 format: 2014-01-01T10:30:00.000+01:00, 2014-01-01T10:30:00.000+0100, 2014-01-01T10:30:00.000Z
- Dsco reserves the right to add new attributes at any time so Partners should ensure their validators won't break should this happen
Definition
Object { array[int] dscoItemIds?; # A list of items uniquely identified using Dsco's ID # if present, itemKeys must not be array[ref ItemKey] itemKeys?; # A list of items unqiuely identified using an ID # other than dscoItemId (such as UPC) # if present, dscoItemIds must not be };
Example
{ "dscoItemIds": [24242, 98242] }
Comments
Please sign in to leave a comment.