GET
/
meetings
/
{meeting_sid}
/
spots
List all spots for a meeting
curl --request GET \
  --url https://{workspace}.neetocal.com/api/external/v1/meetings/{meeting_sid}/spots \
  --header 'X-Api-Key: <x-api-key>'
{
  "spots": [
    {
      "id": "1d35e633-71b9-4ad9-b659-b034f361539b",
      "spot": "in_person",
      "spot_phone_call_number": null,
      "spot_custom_text": null,
      "spot_in_person_location": "123 Main St, Suite 100, City, State 12345",
      "is_default": true,
      "created_at": "2025-01-15T10:30:00Z",
      "updated_at": "2025-01-15T10:30:00Z"
    }
  ]
}
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"

Response

200
application/json

OK - Request succeeded

The response is of type object.