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
Query Parameters
  • 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.
  • The batch size to fetch queued actions. Max Limit is 250.
  • The offset of the page. By default, offset is 0, which means first page will be returned.
  • Specifies a comma-separated list of pairs to order the response by.
  • "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.|",
  • Indicates if the total results should be included in the response.
Back to Top

Response

Supported Media Types

200 Response

Response containing the list quotes
Body ()
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
Body ()
Root Schema : Error
Type: object
Show Source
Back to Top