Update Signal
Log in to add to favouritesPage last updated 12 June 2026
This endpoint is used for updating a single Signal for the specified project.
PUTapi/management/projects/{projectId}/personalization/signals/{signalId}
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
{
"id": "updatedSignalId",
"name": "Signal Example",
"description": "This is an example signal",
"minMatches": 4,
"where": {
"or": [
{
"attribute": "browser.ScreenWidth",
"equalTo": "1920"
},
{
"attribute": "page.url",
"startsWith": "/test"
}
]
}
}Remarks
name and id must both be unique when performing an update with a new name or id.
The id cannot be updated if the Signal is currently in use in another Audience.