Tours
Tour management — create, update, and manage tours
Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Query Parameters
curl -X GET "https://example.com/api/v1/tours/?teamId=string"Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
TypeScript Definitions
Use the request body type in TypeScript.
curl -X POST "https://example.com/api/v1/tours/" \ -H "Content-Type: application/json" \ -d '{ "name": "string", "teamId": 0 }'Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Path Parameters
curl -X GET "https://example.com/api/v1/tours/string"Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Path Parameters
curl -X DELETE "https://example.com/api/v1/tours/string"Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Path Parameters
TypeScript Definitions
Use the request body type in TypeScript.
curl -X PUT "https://example.com/api/v1/tours/string" \ -H "Content-Type: application/json" \ -d '{}'Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Path Parameters
curl -X GET "https://example.com/api/v1/tours/string/covers"Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Path Parameters
TypeScript Definitions
Use the request body type in TypeScript.
curl -X POST "https://example.com/api/v1/tours/string/covers" \ -H "Content-Type: application/json" \ -d '{ "fileName": "string" }'Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Path Parameters
curl -X DELETE "https://example.com/api/v1/tours/string/covers/string"Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Path Parameters
curl -X PUT "https://example.com/api/v1/tours/string/covers/string/current"Authorization
sessionAuth Supabase access token — used by the web and mobile apps
In: header
Path Parameters
TypeScript Definitions
Use the request body type in TypeScript.
curl -X PUT "https://example.com/api/v1/tours/string/covers/string/public" \ -H "Content-Type: application/json" \ -d '{ "isPublic": true }'