cURL
curl --request POST \ --url https://api.example.com/distribution-requests/list \ --header 'Content-Type: application/json' \ --data ' { "pageInfo": { "count": 10, "page": 1 }, "order": { "by": "<string>", "direction": "<string>" } } '
{ "data": [ { "id": "<string>", "type": "<string>", "status": "PENDING", "brokerageFirmId": "<string>", "productId": "<string>", "createdAt": "2023-11-07T05:31:56Z" } ], "pageInfo": { "first": true, "last": true }, "totalCount": 123, "currentPage": 123, "totalPages": 123 }
Status of the distribution request
PENDING
WAITING_FOR_SIGNATURE
APPROVED
DENIED
REVOKED
Brokerage firm the request is attached to
Product id
the page info
Show child attributes
the sort options
the list of items in the page
the total number of items
the current page
the total number of pages
Was this page helpful?