GET
/
catalogues
/
{catalogue_id}
/
audiences
/
{audience_id}
List all audiences for this catalogue
curl --request GET \
  --url http://localhost:3001/portal-api/catalogues/{catalogue_id}/audiences/{audience_id} \
  --header 'Authorization: <api-key>'
{
  "ID": 1,
  "OrganisationID": 1,
  "TeamID": 1,
  "CreatedAt": "2023-06-23 21:02",
  "UpdatedAt": "2023-06-23 21:02"
}

Authorizations

Authorization
string
header
required

Path Parameters

audience_id
integer
required

UID of an audience

Example:

1

catalogue_id
integer
required

UID of a catalogue

Example:

1

Response

OK

ID
integer

UID of this audience

Example:

1

OrganisationID
integer

UID of this audience

Example:

1

TeamID
integer

UID of this audience

Example:

1

CreatedAt
string

Date-time when this audience is created

Example:

"2023-06-23 21:02"

UpdatedAt
string

Date-time when this audience is updated the last time

Example:

"2023-06-23 21:02"