Overview
Group stories in the queue.
HTTP method |
POST |
|
---|---|---|
URL template parameters |
id |
The id of the queue. |
Query parameters |
force |
Put true to group stories ignoring errors and return verbose results of operation, false by default. |
qkey |
Password for key-locked queue. |
|
Request body |
In the request body, supply data with the following structure:
|
|
HTTP response |
200 OK |
|
Response body |
An ia:queue-stories resource. If force parameter is true, response will look like the following:
|
|
Available in |
Description
Group stories in the queue.
Examples
{
"op": "group",
"stories": ["queue1_story3", "queue1_story4"]
}
For QUEUE1 with INVERTED attribute will result to:
QUEUE1 |
---|
-queue1_story4 |
-queue1_story3 |
queue1_story6 |
queue1_story5 |
|
|
queue1_story2 |
queue1_story1 |
For QUEUE1 without INVERTED attribute will result to:
QUEUE1 |
---|
queue1_story1 |
queue1_story2 |
|
|
queue1_story5 |
queue1_story6 |
-queue1_story3 |
-queue1_story4 |
Example
{
"op": "order",
"stories": ["queue1_story3", "queue1_story4"],
"position": "queue1_story2"
}
For QUEUE1 with INVERTED attribute will result to:
QUEUE1 |
---|
queue1_story6 |
queue1_story5 |
|
|
queue1_story2 |
-queue1_story4 |
-queue1_story3 |
queue1_story1 |
For QUEUE1 without INVERTED attribute will result to:
QUEUE1 |
---|
queue1_story1 |
-queue1_story3 |
-queue1_story4 |
queue1_story2 |
|
|
queue1_story5 |
queue1_story6 |