Skip to main content
GET
/
catalogues
/
{catalogue_id}
/
audiences
List audiences for this catalogue
curl --request GET \
  --url http://localhost:3001/portal-api/catalogues/{catalogue_id}/audiences \
  --header 'Authorization: <api-key>'
[
  {
    "ID": 1,
    "OrganisationID": 1,
    "TeamID": 1
  }
]

Authorizations

Authorization
string
header
required

Path Parameters

catalogue_id
integer
required

UID of a catalogue

Example:

1

Query Parameters

limit
integer

Maximum number of records to return for this request. Overrides the row count only, not the page offset (which is always based on per_page), so use per_page for pagination rather than combining limit with page. Defaults to the per_page value.

per_page
integer
default:20

Items per page. Defaults to the resource-specific page count if configured, otherwise 20

page
integer
default:1

Page number. Defaults to 1 when omitted

Response

200 - application/json

OK

ID
integer

UID of this audience

Example:

1

OrganisationID
integer

UID of an organisation

Example:

1

TeamID
integer

UID of an team

Example:

1