User authentication and session management for B2B integrations
- Get Event Date Range
Search Events
Search Event Dates
Get Event Search Filters
Duplicate Event
Search Event Services
List Event Duplication Strategies
Create Event Duplication Strategy
Update Event Duplication Strategy
Deprecated. Get Event
Deprecated. Update Event
Deprecated. Delete Event
Deprecated. Create Event
Get Event Date Range
Business Management (1.0.0)
Full-featured B2B API for business operations.
Base URL: https://api.alteg.io/api
V1 will be gradually deprecated. We recommend using V2 API for new integrations. V1 endpoints are maintained for backward compatibility, but new features will be released in V2 only.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://developer.alteg.io/_mock/en/b2b-v1/openapi/
Production
https://api.alteg.io/api/v1/
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/activity/{location_id}/search_dates
- Productionhttps://api.alteg.io/api/v1/activity/{location_id}/search_dates
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/activity/123/search_dates?from=2026-06-01&till=2026-07-15&service_ids=123&staff_ids=456&resource_ids=789' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>' \
-H 'Content-Type: application/json'Response
application/json
{ "success": true, "data": [ "2026-06-01", "2026-06-02", "2026-06-08", "2026-07-04", "2026-07-15" ], "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/activity/{location_id}/search_dates_range
- Productionhttps://api.alteg.io/api/v1/activity/{location_id}/search_dates_range
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/activity/123/search_dates_range?service_ids=123&staff_ids=456&resource_ids=789' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>' \
-H 'Content-Type: application/json'Response
application/json
{ "success": true, "data": { "min_date": "2026-06-01", "max_date": "2026-07-15" }, "meta": [] }
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v1/openapi/activity/{location_id}/filters
- Productionhttps://api.alteg.io/api/v1/activity/{location_id}/filters
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.alteg.io/_mock/en/b2b-v1/openapi/activity/123/filters?service_ids=123&staff_ids=456&resource_ids=789' \
-H 'Accept: application/vnd.api.v2+json' \
-H 'Authorization: Bearer <YOUR_Bearer {PartnerToken}_HERE>' \
-H 'Content-Type: application/json'Response
application/json
{ "success": true, "data": [ { … }, { … }, { … }, { … } ], "meta": { "count": 4 } }