GET
/
audiences
/
{id}
/
contacts
List Contacts
curl --request GET \
  --url https://api.amisend.com/audiences/{id}/contacts \
  --header 'Authorization: Bearer <token>'
{
  "total": 123,
  "page": 123,
  "pages": 123,
  "results": [
    "<any>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID of the audience

Query Parameters

page
integer
default:1

Page number

limit
integer
default:40

Number of results per page

Search by name or email

Response

200
application/json

List of contacts in the audience

The response is of type object.