Retrieves all actions queued up for current user in context of current organization.
get
/ccstore/v1/selfservice/queuedActions
This is an authenticated endpoint to fetch all actions queued up for current user in context of current organization.
Request
Supported Media Types
- application/json
Query Parameters
-
fields: string
This controls which fields are returned in the response body. For example, to include the field1 and field2 for each quote in the list, you can send fields=field1,field2.
-
limit: string
The batch size to fetch queued actions. Max Limit is 250.
-
offset: string
The offset of the page. By default, offset is 0, which means first page will be returned.
-
orderby: string
Specifies a comma-separated list of pairs to order the response by.
-
q: string
"Search criteria to filter the search results based on various fields like first Name etc. Following are the fields supported by this param: \n\n|Field|Type|Description|\n|------------------|------------------|------------------|\n|entityId|string|entity ID of the queued action.|\n|status|string|status of the queued action. Valid status are QUEUED, PROCESSED, FAILED eg. CREATED|\n|action|string|Type of action which is submitted. eg. 'submiteOrder'.|\n|entityType|string|type of entity submitted. eg. 'order'|\n|queuedActionId|string|Identifier of the queued action.|",
-
totalResults: boolean
Indicates if the total results should be included in the response.
Response
Supported Media Types
- application/json
200 Response
Response containing the list quotes
Root Schema : QueuedActionsResponse
Example:
{
"total":1,
"totalResults":1,
"offset":0,
"limit":250,
"links":[
{
"rel":"self",
"href":"http://localhost:8080/ccstore/v1/selfservice/queuedActions?q=entityId%20eq%20%22o990431%22"
}
],
"sort":[
{
"property":"action",
"order":"asc"
}
],
"items":[
{
"organizationId":"or-100001",
"profileId":"bb-110034",
"entityType":"order",
"repositoryId":"msg-8316",
"processedAt":"2025-04-04T12:11:45.210Z",
"queuedActionId":"msg-8316",
"errorMessage":null,
"siteId":"siteUS",
"action":"submitOrder",
"entityId":"o990431",
"receivedAt":"2025-04-04T12:11:17.150Z",
"status":"PROCESSED"
}
]
}
400 Response
Bad query params in the request
Root Schema : Error
Type:
Show Source
object
-
message:
string
The error message
-
status:
string
The Error code