Inventory transfer query
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
A header used by fabric to identify the tenant making the request. You must include tenant id in the authentication header for an API request to access any of fabric’s endpoints. You can retrieve the tenant id , which is also called account id, from Copilot. This header is required.
x-fabric-channel-id identifies the sales channel where the API request is being made; primarily for multichannel use cases. The channel ids are 12 corresponding to US and 13 corresponding to Canada. The default channel id is 12. This field is required.
Unique request ID
Body
Library Query Model
A query used to filter your records. The query structure should match the target entity ( for example, order, shipment, etc) structure.
The maximum number of records per page.
The number of records to skip before returning all records. For example, offset=20, limit=10
returns records 21-30.
The item property that data is sorted on.
The direction of the sorting, such as ascending or descending.
asc
, desc
Response
The library query response model object containing query properties.
The count for the query response.
The maximum number of records per page.
The number of records to skip before returning all records. For example, offset=20, limit=10
returns records 21-30.
Was this page helpful?