GET
/
v1
/
order_batches
/
{id}
/
recipients
curl --request GET \
  --url https://api.ongoody.com/v1/order_batches/{id}/recipients \
  --header 'Authorization: Bearer <token>'
{
"data": [
{
"first_name": "Alena",
"last_name": "Kenter",
"email": "alena@ongoody.com"
},
{
"first_name": "Michael",
"last_name": "Franci",
"email": "michael@ongoody.com"
}
],
"list_meta": {
"total_count": 2
}
}

Authorizations

Authorization
string
header
required

Your Goody API key.

Path Parameters

id
string
required

Order batch ID

Query Parameters

page
integer
default:1

Page for pagination, starting at 1

Required range: x >= 1
per_page
integer
default:20

Items per page for pagination

Required range: 1 <= x <= 100

Response

200
application/json

Recipients retrieved with pagination

The response is of type object.