Harmonizely
  • Introduction
  • Authentication
  • Pagination
  • Errors
  • Endpoints
    • Meeting Types
    • Single-Use Links
    • Webhooks
  • Resources
    • Webhook
Powered by GitBook
On this page
  • Create a Single-Use Link
  • Examples

Was this helpful?

  1. Endpoints

Single-Use Links

Single-use links are used to create a meeting once which can't be used again. Once someone schedules a meeting with you, the link is no longer valid.

Create a Single-Use Link

POST https://harmonizely.com/api/single-use-link

Create new single-use link based on the existing meeting type.

Headers

Name
Type
Description

Content-Type

string

application/json

X-API-KEY

string

Your API key.

Request Body

Name
Type
Description

meeting_type_uuid

string

UUID of the existing Meeting Type.

{
   "code":"random-string",
   "url":"https://harmonizely.com/s/random-string"
}
{
   "message":"Invalid arguments",
   "errors":{
      "meetingTypeUuid":[
         "Meeting Type with uuid 7ab22519-0135-2941-0bd6-a3381d173110 was not found."
      ]
   }
}

Examples

curl --location --request POST 'https://harmonizely.com/api/single-use-link' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: YOUR_API_KEY' \
--data-raw '    {
      "meeting_type_uuid": "7ab22519-0135-2941-0bd6-a3381d173110"
    }'
PreviousMeeting TypesNextWebhooks

Last updated 4 years ago

Was this helpful?