Skip to main content
DELETE
/
meetings
/
{meeting_sid}
/
spots
/
{id}
Delete a spot
curl --request DELETE \
  --url https://{your-subdomain}.neetocal.com/api/external/v1/meetings/{meeting_sid}/spots/{id} \
  --header 'X-Api-Key: <x-api-key>'
{
  "message": "Spot destroyed successfully"
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.neetocal.com/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint is part of API v1, which is deprecated. Please use the v2 API instead.
Replace {your-subdomain} with your workspace’s subdomain.
Learn how to find your subdomain in Workspace subdomain.

Headers

X-Api-Key
string
required

Use the X-Api-Key header to provide your workspace API key. Refer to Authentication for more information.

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 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 place. You can get this id from the response of the List meeting places endpoint, where it appears as the id property for each place in the response.

Example:

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

Response

200 - application/json

OK - Request succeeded

message
string
Example:

"Spot destroyed successfully"