Get results from push operations

Get results from a completed push operation, or scrub through multiple pages of results.

Security
Request
Request Body schema: application/json
cursor
required
string (Cursor)

An opaque string which should be passed back in the next request – for paging / polling.

auth
required
object
Responses
200

Results from a push operation, either PROCESSING, PAGING or DONE.

501

Response when the requested operation is not supported by this Inventory App.

4XX

Any error response.

5XX

Any error response.

post/push_results
Request samples
application/json
{
  • "cursor": "cGFnZTozMDo6cGVyX3BhZ2U6NTAw",
  • "auth": { }
}
Response samples
application/json
{
  • "status": "PAGING",
  • "skus_updated": [
    ],
  • "message": "Next page ready at `/push/cGFnZTozMDo6cGVyX3BhZ2U6NTAw`.",
  • "next_cursor": "cGFnZTozMDo6cGVyX3BhZ2U6NTAw"
}