Skip to main content
GET
/
marketing
/
clients-granted-consent
/
events
Retrieve clients who granted consent for marketing for events by status
curl --request GET \
  --url https://private-api.tixyapp.com/marketing/clients-granted-consent/events \
  --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

status
enum<string>

The status of the events to retrieve sales report for. If not specified, it defaults to all. Valid values are:

  • all: Fetch sales report for all events.
  • published: Fetch sales report for events currently published.
  • pastdue: Fetch sales report for events whose dates have passed.
Available options:
all,
published,
pastdue

Response

Successful response containing marketing consent information for clients associated with events matching the specified status.

id
string<uuid>

The UUID of the event.

name
string

The name of the event.

slug
string

A slug identifier for the event.

A list of clients who have granted consent.