Create Audience
Log in to add to favouritesPage last updated 12 June 2026
This endpoint creates a single audience for a specified project.
POSTapi/management/projects/{projectId}/personalization/audiences/
Parameter
| Name | Parameter type | Type | Description |
|---|---|---|---|
| projectId(required) | path | string | The project identifier found in the project overview screen of the management console. |
Responses
Examples
{
"name": "My New Audience"
}{
"id": "myAudienceToUse",
"name": "My New Audience",
"description": "Example of a new audience"
}{
"id": "myNewAudience",
"name": "My New Audience",
"description": "Example of a new audience",
"conditions": {
"and": [
{
"id": "testDelete",
"type": "audience"
},
{
"id": "signalTesting",
"type": "signal"
}
]
}
}Remarks
The only required field to create an Audience is the name field. If no id is provided one will be generated based on the name.
name and id must both be unique.
When referencing an Audience or Signal in the conditions they must already exist.