Skip to main content
POST
/
v1
/
events
/
{eventId}
/
locations
Create a new location
curl --request POST \
  --url https://api.zuddl.com/v1/events/{eventId}/locations \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Conference Hall A, Tech Park",
  "mapLink": "https://maps.google.com/..."
}'
{
  "kind": "<string>",
  "url": "<string>",
  "id": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
  "name": "Conference Hall A, Tech Park",
  "mapLink": "https://maps.google.com/..."
}

Authorizations

Authorization
string
header
required

Provide your API key secret in the Authorization header

Path Parameters

eventId
string
required

Unique identifier of the event

Body

application/json
name
string
required

Name of the location (complete address)

Maximum length: 100
Example:

"Conference Hall A, Tech Park"

Google Maps or other map service link for the location

Maximum length: 400
Example:

"https://maps.google.com/..."

Response

Location created successfully

kind
string
url
string<uri>
id
string<uuid>

Unique identifier of the location

Example:

"4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d"

name
string

Name of the location (complete address)

Example:

"Conference Hall A, Tech Park"

Google Maps or other map service link for the location

Example:

"https://maps.google.com/..."

⌘I