FormOfPresentation

Endpoint to retrieve data for forms of presentation.

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

get

Gets FormOfPresentation objects.

Authorizations
Path parameters
idinteger · int64Required

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

Responses
200

Successful response

application/json
get
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?