Skip to main content
GET
/
marketing
/
clients-granted-consent
/
event
Retrieve clients who granted consent for marketing for a specific event
curl --request GET \
  --url https://private-api.tixyapp.com/marketing/clients-granted-consent/event \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "slug": "<string>",
  "clientsGrantedConsent": [
    {
      "name": "<string>",
      "lastName": "<string>",
      "email": "[email protected]"
    }
  ]
}

Authorizations

Authorization
string
header
required

Custom Bearer token authentication for accessing private organizer endpoints.

Query Parameters

eventId
string

The unique identifier for the event. Must be a 24-character hexadecimal string. Note: If you provide this parameter, do not provide eventSlug.

eventSlug
string

The SEO-friendly slug for the event. Accepts alphanumeric characters, hyphens, underscores, and periods. Note: If you provide this parameter, do not provide eventId.

Response

Successful response containing marketing consent information for clients associated with the specified event.

id
string<uuid>
required

The UUID of the event.

name
string
required

The name of the event.

slug
string
required

A slug identifier for the event.

A list of clients who have granted consent.