Build connected event experiences with Azavista
Explore module-oriented API documentation with explicit versions, audience-aware authorization, searchable endpoints, schemas, and code examples in multiple languages.
Browse by module
Resources are organized by developer intent rather than raw controller order.
Activities
Build schedules, registrations, groups, conditions, speakers, and attendance.
43 endpoints →Event management
Create, configure, copy, search, and organize events and series.
51 endpoints →Identity & administration
Manage users, teams, roles, clients, scopes, and identity providers.
70 endpoints →Participant experience
Power participant websites, engagement, forms, payments, and registration.
40 endpoints →Participants & contacts
Manage participants, contacts, custom fields, and check-in workflows.
34 endpoints →Platform
Inspect platform status, compatibility endpoints, and supporting services.
3 endpoints →Workflows & automation
Configure processes, stages, and workflow-driven event operations.
47 endpoints →Make your first authenticated request
Open any endpoint to get examples for cURL, TypeScript, Python, C#, and Java. Authentication requirements and accepted scopes are generated from the specification’s authorization metadata.
Explore endpointsconst response = await fetch(
"https://api.azavista.com/3.0/event/{eventID}",
{
headers: {
Authorization: "Bearer YOUR_ACCESS_TOKEN"
}
}
);
if (!response.ok) {
throw new Error(`Request failed: ${response.status}`);
}
const event = await response.json();