Skip to main content
GET
/
meetings
/
{meeting_sid}
/
spots
/
{id}
Get a specific spot
curl --request GET \
  --url https://{your-workspace}.neetocal.com/api/external/v1/meetings/{meeting_sid}/spots/{id} \
  --header 'X-Api-Key: <x-api-key>'
{
  "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

X-Api-Key is used to authenticate requests using an API key. Provide your API key in this header to access protected endpoints. 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 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

id
string

Unique identifier for the spot.

Example:

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

spot
enum<string>

The spot type for the meeting.

Available options:
daily,
zoom,
jitsi,
google_meet,
teams,
whereby,
in_person,
custom,
phone_call
Example:

"in_person"

spot_phone_call_number
string | null

Phone number for phone call spots. Only populated when spot type is "phone_call", otherwise null.

Example:

null

spot_custom_text
string | null

Custom text for custom spots. Only populated when spot type is "custom", otherwise null.

Example:

null

spot_in_person_location
string | null

Location details for in-person meetings. Only populated when spot type is "in_person", otherwise null.

Example:

"123 Main St, Suite 100, City, State 12345"

is_default
boolean

Whether this spot is the default option.

Example:

true

created_at
string<date-time>

Timestamp when the spot was created.

Example:

"2025-01-15T10:30:00Z"

updated_at
string<date-time>

Timestamp when the spot was last updated.

Example:

"2025-01-15T10:30:00Z"

I