| Parameter | Type | Description |
|---|---|---|
| id | integer | Document ID |
| Parameter | Type | Default | Description |
|---|---|---|---|
| per_page | integer | 100 | Number of results to be returned per request (100 is the maximum) |
| page_no | integer | 1 | Number of results page |
| confirmed | boolean | null | When true, returns only recipients that confirmed - and vice versa |
| Status | Description |
|---|---|
404 | Document not found |
{
"document_recipients": [], // List of document recipients - see 'DocumentRecipient model'
"pagination_info": {} // Pagination info - see 'Pagination info'
}curl --location --request GET 'https://api.mpc.dev.placewise.com/v1/operations/documents/1/recipients' \
--header 'X-User-Agent: ApiDog' \
--header 'X-Product-Name: default' \
--header 'X-Loyalty-Club-Slug: infinity-mall' \
--header 'X-Customer: 447' \
--header 'Authorization: Bearer ' \
--header 'X-Client-Authorization: ' \
--header 'Content-Type: application/json'{}