Update Queued Job Priority - Sellercloud API Docs

Update Queued Job Priority

Overview

This endpoint allows you to update the Priority status of a single existing Queued Job. To consume it, you must be an Authenticated User. Once you have obtained a valid token, you must pass it to the call. Additionally, you need a valid ID of an existing queued job.

Endpoint

An example of this endpoint for server XX:

https:// xx.api.sellercloud.com/rest/api/QueuedJobs/Priority

For your server, the endpoint will be:

​https:// {your_server_id}.api.sellercloud.com/rest/api/QueuedJobs/Priority

Request

Parameter Data Type Description Is Required
id integer The ID of an existing queued job. Yes
priority enum The available values are:
- 0 = BelowNormal
- 1 = Normal
- 2 = High
- 3 = Critical
Yes

Request Body

{
  "ID": 0,
  "Priority": 0
}

Response