Endpoint - Listing Delete
Endpoint is used when customer selects a list of items to be deleted.
This endpoint is used when customer selects a list of items to be deleted.
Request
Post
ProductsListingDeleteRequest
ProductsListingDeleteRequest
Field Name | Type | Description |
---|---|---|
AuthorizationToken | String | Authorization Token from the customers integration. |
ExternalListingIds | ListingDeleteData[] | Channel listing data. See ListingDeleteData table. See ListingDeleteData |
ListingDeleteData
ListingDeleteData
Field Name | Type | Description |
---|---|---|
ChannelSKU | OrderCancellationItem | Channels SKU used in the listing. |
ExternalListingId | String | Channel listing ID. |
TemplateId | Integer | Linnworks template ID. |
Sample
{
"AuthorizationToken": "0dfdbaf3e4d5434f825e774e31bcc148",
"ExternalListingIds": [
{
"ChannelSKU": "XYZ-1",
"ExternalListingId": "external2033",
"TemplateId": "2"
}
]
}
Response
ProductsListingResponse
ProductsListingResponse
Field Name | Type | Description |
---|---|---|
ChannelFeedId | String | ID for the feed that corresponds to the batch of products that were created, updated or deleted. If the channel does not use feeds, a feed id needs to be generated by the external developer. |
Error | String | Defines if there was an error with the request and returns it. |
Sample
{
"ChannelFeedId": "123"
}
Updated over 1 year ago