Returns the list of landing pages that use a specific persona. This is useful for understanding where a persona is applied before deleting or modifying it.
Requires authentication.
Request
GET /personas/{id}/landingpage-usage
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | The ID of the persona to look up landing page usage for. |
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Response
Returns a JSON array of landing pages that reference this persona.
Example Response
[
{
"id": 42,
"title": "Summer Sale",
"slug": "summer-sale"
},
{
"id": 99,
"title": "VIP Offers",
"slug": "vip-offers"
}
]If the persona is not used by any landing page, an empty array is returned.
[]
