SchedulePerson

Endpoint to retrieve data for persons, in the currently finalized draft.

Finds authors by filtering a specific conference(frame).

get

Gets Person objects.

Autorisierungen
Pfadparameter
idinteger · int64Erforderlich

Id of the conference the persons from the schedule are loaded for.

Antworten
200

Successful response

application/json
get
GET /rest-api/v2/frame/{id}/schedule/person HTTP/1.1
Host: 
token: YOUR_API_KEY
Accept: */*
{
  "meta": {
    "lastFinalization": "text"
  },
  "data": [
    {
      "id": 1,
      "firstName": "text",
      "lastName": "text",
      "title": "text",
      "email": "text",
      "company": "text",
      "city": "text",
      "country": "text",
      "photo": "https://example.com"
    }
  ]
}

War das hilfreich?