Get persona landing page usage

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

ParameterTypeRequiredDescription
idintegerYesThe ID of the persona to look up landing page usage for.

Headers

HeaderValue
AuthorizationBearer <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.

[]