1. Event
  • API Overview
  • Registration
    • Create/Update Registration
      POST
    • Delete Registration
      DELETE
    • Get Registrations
      GET
  • Event
    • Get Event
      GET
  • Webhooks
    • Create webhook
      POST
    • Update webhook
      PUT
    • Delete webhook
      DELETE
    • List webhook
      GET
  1. Event

Get Event

Prod Env
Prod Env
GET
{{baseUrl}}/event/{organization_id}/{event_id}
Purpose
Retrieve metadata for the active event, including key details (id, slug, name, timezone, start/end) and the available personas with their registration fields. Useful for client apps to configure flows and validate registration inputs.
Endpoint and Method
Method: GET
URL: {{base_url}}event
Path/URL Variables
None. The base URL is parameterized via {{base_url}} in your active environment.
Headers
Accept: application/json
Accept-Encoding: application/json
Authentication
If the API requires auth, use a Bearer token variable. Configure at the folder/collection level or request level:
Type: Bearer Token
Token: {{token}}
If auth is inherited from the collection/folder, no per-request changes are needed here.
Sample Success Response (200) — summarized
{ "event_id": 6200,
"slug": "mobapp",
"name": "vFairs Mobile app integration",
"timezone": "Asia/Qatar",
"start_date": "2025-11-09T10:00:00+03:00",
"end_date": "2025-11-30T22:00:00+03:00",
"personas": [ {
"id": 15910, "slug": "visitor", "name": "Visitor",
"fields": [ { "id": 323339, "slug": "fullname", "label": "Full name", "type": "Name" }, { "id": 323340, "slug": "email", "label": "E-mail", "type": "E-mail" }, { "id": 323341, "slug": "phone", "label": "Phone number", "type": "Phone number" }
] }, // Additional personas such as exhibitor, speaker, vip, media, etc. ] }
Key fields: event_id, slug, name, timezone, start_date, end_date. Personas is an array; each persona has id, slug, name, and fields[]. A field has id, slug, label, type, and optional values (e.g., radio options).
Response Codes
200 OK: Event metadata returned successfully.
400 Bad Request: Invalid query parameter(s).
401 Unauthorized: Missing/invalid token when authentication is enforced.
404 Not Found: Event not available.
5xx Server Error: Unexpected server-side issue.
Usage Tips (Environments and Variables)
Set {{base_url}} in your active environment (e.g., Sandbox) to target the appropriate host.
Store {{token}} in the same environment and configure Authorization to inherit Bearer token.
Use examples above for query parameters; toggle them in the Params tab as needed.
Do not modify method, URL, or headers when using this request unless your API variant requires it.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff --request GET '{{baseUrl}}/event/2110/10' \
--header 'Accept-Encoding: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'
Response Response Example
{
    "event_id": 4171,
    "slug": "titoevent",
    "name": "Test MICEtribe public APIs",
    "timezone": "Asia/Dubai",
    "start_date": "2026-01-01T10:00:00+04:00",
    "end_date": "2026-01-02T22:00:00+04:00",
    "personas": [
        {
            "id": 13054,
            "slug": "visitor",
            "name": "Visitor",
            "fields": [
                {
                    "id": 867114,
                    "slug": "fullname",
                    "label": "Full name",
                    "type": "Name",
                    "values": []
                },
                {
                    "id": 867115,
                    "slug": "email",
                    "label": "E-mail",
                    "type": "E-mail",
                    "values": []
                },
                {
                    "id": 867116,
                    "slug": "phone",
                    "label": "Phone number",
                    "type": "Phone number",
                    "values": []
                },
                {
                    "id": 867117,
                    "slug": "job_title",
                    "label": "Job title",
                    "type": "Job Title",
                    "values": []
                },
                {
                    "id": 867118,
                    "slug": "organization",
                    "label": "Organization",
                    "type": "Organization",
                    "values": []
                },
                {
                    "id": 867119,
                    "slug": "country",
                    "label": "Country",
                    "type": "Country",
                    "values": []
                },
                {
                    "id": 867120,
                    "slug": "gender",
                    "label": "Gender",
                    "type": "Gender",
                    "values": [
                        {
                            "slug": "male",
                            "name": "Male",
                            "weight": 0
                        },
                        {
                            "slug": "female",
                            "name": "Female",
                            "weight": 1
                        }
                    ]
                },
                {
                    "id": 867121,
                    "slug": "star_rating",
                    "label": "How do you rate your last edition experience?",
                    "type": "Star Rating",
                    "values": []
                },
                {
                    "id": 867122,
                    "slug": "star_rating1",
                    "label": "How do you ",
                    "type": "Star Rating",
                    "values": []
                }
            ]
        },
        {
            "id": 13069,
            "slug": "exhibitor",
            "name": "Exhibitor",
            "fields": [
                {
                    "id": 867123,
                    "slug": "organization",
                    "label": "Organization",
                    "type": "Organization",
                    "values": []
                },
                {
                    "id": 867124,
                    "slug": "fullname",
                    "label": "Focal person Full name",
                    "type": "Name",
                    "values": []
                },
                {
                    "id": 867125,
                    "slug": "email",
                    "label": "Focal person E-mail",
                    "type": "E-mail",
                    "values": []
                },
                {
                    "id": 867126,
                    "slug": "radio",
                    "label": "Single select",
                    "type": "Radio buttons",
                    "values": [
                        {
                            "slug": "otp1",
                            "name": "option1",
                            "weight": 1
                        }
                    ]
                },
                {
                    "id": 867127,
                    "slug": "datetime",
                    "label": "Date & Time",
                    "type": "Datetime",
                    "values": []
                }
            ]
        },
        {
            "id": 13070,
            "slug": "exhibitor_members",
            "name": "Exhibitor member",
            "fields": [
                {
                    "id": 867128,
                    "slug": "fullname",
                    "label": "Full name",
                    "type": "Name",
                    "values": []
                },
                {
                    "id": 867129,
                    "slug": "email",
                    "label": "E-mail",
                    "type": "E-mail",
                    "values": []
                },
                {
                    "id": 867130,
                    "slug": "phone",
                    "label": "Phone number",
                    "type": "Phone number",
                    "values": []
                },
                {
                    "id": 867131,
                    "slug": "job_title",
                    "label": "Job title",
                    "type": "Job Title",
                    "values": []
                },
                {
                    "id": 867132,
                    "slug": "organization",
                    "label": "Organization",
                    "type": "Organization",
                    "values": []
                },
                {
                    "id": 867133,
                    "slug": "country",
                    "label": "Country",
                    "type": "Country",
                    "values": []
                }
            ]
        },
        {
            "id": 13053,
            "slug": "generic",
            "name": "Generic",
            "fields": [
                {
                    "id": 867134,
                    "slug": "category",
                    "label": "Category",
                    "type": "Input",
                    "values": []
                },
                {
                    "id": 867135,
                    "slug": "line1",
                    "label": "Line1",
                    "type": "Input",
                    "values": []
                },
                {
                    "id": 867136,
                    "slug": "line2",
                    "label": "Line2",
                    "type": "Input",
                    "values": []
                },
                {
                    "id": 867137,
                    "slug": "line3",
                    "label": "Line3",
                    "type": "Input",
                    "values": []
                },
                {
                    "id": 867138,
                    "slug": "line4",
                    "label": "Line4",
                    "type": "Input",
                    "values": []
                }
            ]
        }
    ]
}
Modified at 2026-08-19 12:29:03
Previous
Get Registrations
Next
Webhooks
Built with