Simple Appointment Scheduling API
Important Notes: - user ids are all UUIDv4 - start and end fields are date and time in UTC timestamps (i.e. "2024-01-01T10:00:00Z") - the details of an appointment can be any json object with string values
Simple Appointment Scheduling API endpoints
| Method | Endpoint | Description |
|---|---|---|
| default | ||
| POST |
Save Appointment /api/user/{userUUIDv4}/appointments |
Save an appointment between users. Start and end fields are date and time in UTC timestamps. The details object in the body can have anything you want. As long as it is a string. |
| GET |
Get Appointments For User /api/user/{userUUIDv4}/appointments |
Get appointments for a specific user. |
| DELETE |
Delete Appointment /api/user/{userUUIDv4}/appointments |
Delete appointment for user. Start and end fields are date and time in UTC timestamps. |
Simple Appointment Scheduling API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $14.99 / month | — |
|
| ULTRA | $64.99 / month | — |
|
| MEGA | $139.99 / month | — |
|