const inventoryApi = client.inventoryApi;
InventoryApi
- Deprecated Retrieve Inventory Adjustment
- Retrieve Inventory Adjustment
- Deprecated Batch Change Inventory
- Deprecated Batch Retrieve Inventory Changes
- Deprecated Batch Retrieve Inventory Counts
- Batch Change Inventory
- Batch Retrieve Inventory Changes
- Batch Retrieve Inventory Counts
- Deprecated Retrieve Inventory Physical Count
- Retrieve Inventory Physical Count
- Retrieve Inventory Transfer
- Retrieve Inventory Count
- Retrieve Inventory Changes
This endpoint is deprecated.
Deprecated version of RetrieveInventoryAdjustment after the endpoint URL is updated to conform to the standard convention.
async deprecatedRetrieveInventoryAdjustment( adjustmentId: string,
requestOptions?: RequestOptions): Promise<ApiResponse<RetrieveInventoryAdjustmentResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
adjustmentId |
string |
Template, Required | ID of the InventoryAdjustment to retrieve. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
RetrieveInventoryAdjustmentResponse
const adjustmentId = 'adjustment_id0';
try {
const { result, ...httpResponse } = await inventoryApi.deprecatedRetrieveInventoryAdjustment(adjustmentId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Returns the InventoryAdjustment object
with the provided adjustment_id
.
async retrieveInventoryAdjustment( adjustmentId: string,
requestOptions?: RequestOptions): Promise<ApiResponse<RetrieveInventoryAdjustmentResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
adjustmentId |
string |
Template, Required | ID of the InventoryAdjustment to retrieve. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
RetrieveInventoryAdjustmentResponse
const adjustmentId = 'adjustment_id0';
try {
const { result, ...httpResponse } = await inventoryApi.retrieveInventoryAdjustment(adjustmentId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
This endpoint is deprecated.
Deprecated version of BatchChangeInventory after the endpoint URL is updated to conform to the standard convention.
async deprecatedBatchChangeInventory( body: BatchChangeInventoryRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<BatchChangeInventoryResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
body |
BatchChangeInventoryRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
const body: BatchChangeInventoryRequest = {
idempotencyKey: '8fc6a5b0-9fe8-4b46-b46b-2ef95793abbe',
changes: [
{
type: 'PHYSICAL_COUNT',
physicalCount: {
referenceId: '1536bfbf-efed-48bf-b17d-a197141b2a92',
catalogObjectId: 'W62UWFY35CWMYGVWK6TWJDNI',
state: 'IN_STOCK',
locationId: 'C6W5YS5QM06F5',
quantity: '53',
teamMemberId: 'LRK57NSQ5X7PUD05',
occurredAt: '2016-11-16T22:25:24.878Z',
},
}
],
ignoreUnchangedCounts: true,
};
try {
const { result, ...httpResponse } = await inventoryApi.deprecatedBatchChangeInventory(body);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
This endpoint is deprecated.
Deprecated version of BatchRetrieveInventoryChanges after the endpoint URL is updated to conform to the standard convention.
async deprecatedBatchRetrieveInventoryChanges( body: BatchRetrieveInventoryChangesRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<BatchRetrieveInventoryChangesResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
body |
BatchRetrieveInventoryChangesRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
BatchRetrieveInventoryChangesResponse
const body: BatchRetrieveInventoryChangesRequest = {
catalogObjectIds: [
'W62UWFY35CWMYGVWK6TWJDNI'
],
locationIds: [
'C6W5YS5QM06F5'
],
types: [
'PHYSICAL_COUNT'
],
states: [
'IN_STOCK'
],
updatedAfter: '2016-11-01T00:00:00.000Z',
updatedBefore: '2016-12-01T00:00:00.000Z',
};
try {
const { result, ...httpResponse } = await inventoryApi.deprecatedBatchRetrieveInventoryChanges(body);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
This endpoint is deprecated.
Deprecated version of BatchRetrieveInventoryCounts after the endpoint URL is updated to conform to the standard convention.
async deprecatedBatchRetrieveInventoryCounts( body: BatchRetrieveInventoryCountsRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<BatchRetrieveInventoryCountsResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
body |
BatchRetrieveInventoryCountsRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
BatchRetrieveInventoryCountsResponse
const body: BatchRetrieveInventoryCountsRequest = {
catalogObjectIds: [
'W62UWFY35CWMYGVWK6TWJDNI'
],
locationIds: [
'59TNP9SA8VGDA'
],
updatedAfter: '2016-11-16T00:00:00.000Z',
};
try {
const { result, ...httpResponse } = await inventoryApi.deprecatedBatchRetrieveInventoryCounts(body);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Applies adjustments and counts to the provided item quantities.
On success: returns the current calculated counts for all objects referenced in the request. On failure: returns a list of related errors.
async batchChangeInventory( body: BatchChangeInventoryRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<BatchChangeInventoryResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
body |
BatchChangeInventoryRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
const body: BatchChangeInventoryRequest = {
idempotencyKey: '8fc6a5b0-9fe8-4b46-b46b-2ef95793abbe',
changes: [
{
type: 'PHYSICAL_COUNT',
physicalCount: {
referenceId: '1536bfbf-efed-48bf-b17d-a197141b2a92',
catalogObjectId: 'W62UWFY35CWMYGVWK6TWJDNI',
state: 'IN_STOCK',
locationId: 'C6W5YS5QM06F5',
quantity: '53',
teamMemberId: 'LRK57NSQ5X7PUD05',
occurredAt: '2016-11-16T22:25:24.878Z',
},
}
],
ignoreUnchangedCounts: true,
};
try {
const { result, ...httpResponse } = await inventoryApi.batchChangeInventory(body);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Returns historical physical counts and adjustments based on the provided filter criteria.
Results are paginated and sorted in ascending order according their
occurred_at
timestamp (oldest first).
BatchRetrieveInventoryChanges is a catch-all query endpoint for queries that cannot be handled by other, simpler endpoints.
async batchRetrieveInventoryChanges( body: BatchRetrieveInventoryChangesRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<BatchRetrieveInventoryChangesResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
body |
BatchRetrieveInventoryChangesRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
BatchRetrieveInventoryChangesResponse
const body: BatchRetrieveInventoryChangesRequest = {
catalogObjectIds: [
'W62UWFY35CWMYGVWK6TWJDNI'
],
locationIds: [
'C6W5YS5QM06F5'
],
types: [
'PHYSICAL_COUNT'
],
states: [
'IN_STOCK'
],
updatedAfter: '2016-11-01T00:00:00.000Z',
updatedBefore: '2016-12-01T00:00:00.000Z',
};
try {
const { result, ...httpResponse } = await inventoryApi.batchRetrieveInventoryChanges(body);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Returns current counts for the provided CatalogObjects at the requested Locations.
Results are paginated and sorted in descending order according to their
calculated_at
timestamp (newest first).
When updated_after
is specified, only counts that have changed since that
time (based on the server timestamp for the most recent change) are
returned. This allows clients to perform a "sync" operation, for example
in response to receiving a Webhook notification.
async batchRetrieveInventoryCounts( body: BatchRetrieveInventoryCountsRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<BatchRetrieveInventoryCountsResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
body |
BatchRetrieveInventoryCountsRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
BatchRetrieveInventoryCountsResponse
const body: BatchRetrieveInventoryCountsRequest = {
catalogObjectIds: [
'W62UWFY35CWMYGVWK6TWJDNI'
],
locationIds: [
'59TNP9SA8VGDA'
],
updatedAfter: '2016-11-16T00:00:00.000Z',
};
try {
const { result, ...httpResponse } = await inventoryApi.batchRetrieveInventoryCounts(body);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
This endpoint is deprecated.
Deprecated version of RetrieveInventoryPhysicalCount after the endpoint URL is updated to conform to the standard convention.
async deprecatedRetrieveInventoryPhysicalCount( physicalCountId: string,
requestOptions?: RequestOptions): Promise<ApiResponse<RetrieveInventoryPhysicalCountResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
physicalCountId |
string |
Template, Required | ID of the InventoryPhysicalCount to retrieve. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
RetrieveInventoryPhysicalCountResponse
const physicalCountId = 'physical_count_id2';
try {
const { result, ...httpResponse } = await inventoryApi.deprecatedRetrieveInventoryPhysicalCount(physicalCountId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Returns the InventoryPhysicalCount
object with the provided physical_count_id
.
async retrieveInventoryPhysicalCount( physicalCountId: string,
requestOptions?: RequestOptions): Promise<ApiResponse<RetrieveInventoryPhysicalCountResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
physicalCountId |
string |
Template, Required | ID of the InventoryPhysicalCount to retrieve. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
RetrieveInventoryPhysicalCountResponse
const physicalCountId = 'physical_count_id2';
try {
const { result, ...httpResponse } = await inventoryApi.retrieveInventoryPhysicalCount(physicalCountId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Returns the InventoryTransfer object
with the provided transfer_id
.
async retrieveInventoryTransfer( transferId: string,
requestOptions?: RequestOptions): Promise<ApiResponse<RetrieveInventoryTransferResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
transferId |
string |
Template, Required | ID of the InventoryTransfer to retrieve. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
RetrieveInventoryTransferResponse
const transferId = 'transfer_id6';
try {
const { result, ...httpResponse } = await inventoryApi.retrieveInventoryTransfer(transferId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Retrieves the current calculated stock count for a given CatalogObject at a given set of Locations. Responses are paginated and unsorted. For more sophisticated queries, use a batch endpoint.
async retrieveInventoryCount( catalogObjectId: string,
locationIds?: string,
cursor?: string,
requestOptions?: RequestOptions): Promise<ApiResponse<RetrieveInventoryCountResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
catalogObjectId |
string |
Template, Required | ID of the CatalogObject to retrieve. |
locationIds |
string | undefined |
Query, Optional | The Location IDs to look up as a comma-separated list. An empty list queries all locations. |
cursor |
string | undefined |
Query, Optional | A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for the original query. See the Pagination guide for more information. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
RetrieveInventoryCountResponse
const catalogObjectId = 'catalog_object_id6';
try {
const { result, ...httpResponse } = await inventoryApi.retrieveInventoryCount(catalogObjectId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
This endpoint is deprecated.
Returns a set of physical counts and inventory adjustments for the provided CatalogObject at the requested Locations.
You can achieve the same result by calling BatchRetrieveInventoryChanges
and having the catalog_object_ids
list contain a single element of the CatalogObject
ID.
Results are paginated and sorted in descending order according to their
occurred_at
timestamp (newest first).
There are no limits on how far back the caller can page. This endpoint can be used to display recent changes for a specific item. For more sophisticated queries, use a batch endpoint.
async retrieveInventoryChanges( catalogObjectId: string,
locationIds?: string,
cursor?: string,
requestOptions?: RequestOptions): Promise<ApiResponse<RetrieveInventoryChangesResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
catalogObjectId |
string |
Template, Required | ID of the CatalogObject to retrieve. |
locationIds |
string | undefined |
Query, Optional | The Location IDs to look up as a comma-separated list. An empty list queries all locations. |
cursor |
string | undefined |
Query, Optional | A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for the original query. See the Pagination guide for more information. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
RetrieveInventoryChangesResponse
const catalogObjectId = 'catalog_object_id6';
try {
const { result, ...httpResponse } = await inventoryApi.retrieveInventoryChanges(catalogObjectId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}