DELETE
/
meetings
/
{meeting_sid}
/
spots
/
{id}
Delete a spot
curl --request DELETE \
  --url https://{workspace}.neetocal.com/api/external/v1/meetings/{meeting_sid}/spots/{id} \
  --header 'X-Api-Key: <x-api-key>'
{
  "message": "Spot destroyed successfully"
}
Replace {your-workspace} with your workspace’s subdomain.
Learn how to find your subdomain in Identifying your subdomain.

Headers

X-Api-Key
string
required

You can generate an API key from the NeetoCal API Keys dashboard.

Path Parameters

meeting_sid
string
required

The unique identifier (SID) of the scheduling link you want to use. You can get sid in different ways. Visit the scheduling link page and then click on "Settings" > "Show SID". That will give you sid. You can also get this from the response of the List all scheduling links endpoint, where it appears as the sid property for each scheduling link in the response.

Example:

"vj5pgkh"

id
string
required

The unique identifier of the spot. You can get this id from the response of the List spots for a meeting endpoint, where it appears as the id property for each spot in the response.

Example:

"1d35e633-71b9-4ad9-b659-b034f361539b"

Response

200
application/json

OK - Request succeeded

The response is of type object.