PUT
/
v1
/
events
/
{eventId}
/
speakers
/
{speakerId}
Update an existing speaker
curl --request PUT \
  --url https://api.zuddl.com/v1/events/{eventId}/speakers/{speakerId} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "firstName": "John",
  "lastName": "Doe",
  "company": "Tech Innovations Inc.",
  "designation": "Chief Technology Officer",
  "bio": "John is a renowned expert in his field...",
  "linkedInProfile": "https://www.linkedin.com/in/johndoe",
  "twitterProfile": "https://twitter.com/johndoe",
  "facebookProfile": "https://www.facebook.com/johndoe",
  "websiteUrl": "https://johndoe.com",
  "externalRefId": "d812a64f8865428990249a120792c3d8"
}'
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

speakerId
string
required

Unique identifier of the speaker

Body

application/json

Response

200

Speaker updated successfully