About Aha RestAPI Server
The REST API is intended to expose portions of content to external services in a flexible way, allowing for API extension over time without forcing third party services to understand the underlying data structure.
Structure for API paths follow the below format:
http[s]://{domainname.com}/api/v{api-version}/{public/authenticated}/{api-resource-path}[/{id}]/{operation}.{format}
Examples:
- https://example.teamaha.com/api/v1/public/meeting/list.json
- https://example.teamaha.com/api/v1/public/meeting/1234/view.json
- https://example.teamaha.com/api/v1/authenticated/meeting/1234/view.json
- https://example.teamaha.com/api/v1/authenticated/meeting/1234/update.json
- https://example.teamaha.com/api/v1/authenticated/meeting/create.json