Skip to main content
PUT
/
v1
/
events
/
{eventId}
/
locations
/
{locationId}
Update an existing location
curl --request PUT \
  --url https://api.zuddl.com/v1/events/{eventId}/locations/{locationId} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Conference Hall A, Tech Park",
  "mapLink": "https://maps.google.com/..."
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Provide your API key secret in the Authorization header

Path Parameters

eventId
string
required

Unique identifier of the event

locationId
string
required

Unique identifier of the location

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 updated successfully

⌘I