GET
/
v1
/
events
/
{eventId}
/
sponsors
/
{sponsorId}
Get sponsor details
curl --request GET \
  --url https://api.zuddl.com/v1/events/{eventId}/sponsors/{sponsorId} \
  --header 'Authorization: <api-key>'
{
  "kind": "<string>",
  "url": "<string>",
  "id": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
  "name": "Acme Corp",
  "title": "Acme's sponsorship",
  "description": "Acme Corp is a leading...",
  "websiteUrl": "https://acme.com",
  "logoUrl": "https://example.com/sponsors/acme_logo.png",
  "email": "sponsorship@acme.com",
  "coverImageUrl": "https://example.com/sponsors/acme_cover.png",
  "tier": {
    "tierId": "tier-gold",
    "tierName": "Gold"
  },
  "booth": {
    "boothId": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c4f",
    "boothName": "Acme Booth"
  }
}

Authorizations

Authorization
string
header
required

Provide your API key secret in the Authorization header

Path Parameters

eventId
string
required

Event ID

sponsorId
string
required

Sponsor ID

Response

200
application/json

Sponsor details retrieved successfully

The response is of type object.