FormOfPresentation

Endpoint to retrieve data for forms of presentation.

Finds forms of presentation by filtering a specific conference(frame).

get

Gets FormOfPresentation objects.

Authorizations
tokenstringRequired

Api key has to be used to authenticate against the server. The token parameter has must be sent in the header

Path parameters
idinteger · int64Required

Id of the conference the forms of presentation are loaded for.

Responses
get
/rest-api/v2/frame/{id}/fop/
GET /rest-api/v2/frame/{id}/fop/ HTTP/1.1
Host: 
token: YOUR_API_KEY
Accept: */*
{
  "meta": {},
  "data": [
    {
      "id": 1,
      "name": [
        {
          "language": "text",
          "content": "text"
        }
      ],
      "type": "Oral",
      "visible": true,
      "active": true,
      "reference": 0
    }
  ]
}

Was this helpful?