Conference

Retrieves the collection of Conference resources.

get

The group parameter can be use to load additional data. Use 'groups[]=translation' to load translations as well.

Authorizations
Query parameters
id[between]stringOptional
id[gt]stringOptional
id[gte]stringOptional
id[lt]stringOptional
id[lte]stringOptional
groups[]string[]Optional
Responses
200

Conference collection

get
GET /conferences HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Conference collection

{
  "hydra:member": [
    {
      "@id": "text",
      "@type": "text",
      "@context": "text",
      "id": 1,
      "name": "text",
      "nameTranslations": [
        {
          "@context": "text",
          "@id": "text",
          "@type": "text",
          "language": "/entitiy/1",
          "content": "text"
        }
      ],
      "shortNameTranslations": [
        {
          "@context": "text",
          "@id": "text",
          "@type": "text",
          "language": "/entitiy/1",
          "content": "text"
        }
      ],
      "internalName": "text",
      "isActive": true,
      "isVisible": true,
      "startTime": "2025-09-12T14:28:23.955Z",
      "endTime": "2025-09-12T14:28:23.955Z",
      "invoiceNumberGroup": "text",
      "generalContact": "/entitiy/1",
      "registrationContact": "/entitiy/1",
      "submissionContact": "/entitiy/1",
      "reviewingContact": "/entitiy/1",
      "currency": "text",
      "defaultLanguage": "/entitiy/1",
      "availableLanguages": [
        "/entitiy/1"
      ],
      "categories": [
        "/entitiy/1"
      ]
    }
  ],
  "hydra:totalItems": 1,
  "hydra:view": {
    "@id": "string",
    "type": "string",
    "hydra:first": "string",
    "hydra:last": "string",
    "hydra:previous": "string",
    "hydra:next": "string"
  },
  "hydra:search": {
    "@type": "text",
    "hydra:template": "text",
    "hydra:variableRepresentation": "text",
    "hydra:mapping": [
      {
        "@type": "text",
        "variable": "text",
        "property": "text",
        "required": true
      }
    ]
  }
}

Retrieves a Conference resource.

get

The group parameter can be use to load additional data. Use 'groups[]=translation' to load translations as well.

Authorizations
Path parameters
idstringRequired

Resource identifier

Responses
200

Conference resource

get
GET /conferences/{id} HTTP/1.1
Host: api
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "@id": "text",
  "@type": "text",
  "@context": "text",
  "id": 1,
  "name": "text",
  "nameTranslations": [
    {
      "@context": "text",
      "@id": "text",
      "@type": "text",
      "language": "/entitiy/1",
      "content": "text"
    }
  ],
  "shortNameTranslations": [
    {
      "@context": "text",
      "@id": "text",
      "@type": "text",
      "language": "/entitiy/1",
      "content": "text"
    }
  ],
  "internalName": "text",
  "isActive": true,
  "isVisible": true,
  "startTime": "2025-09-12T14:28:23.955Z",
  "endTime": "2025-09-12T14:28:23.955Z",
  "invoiceNumberGroup": "text",
  "generalContact": "/entitiy/1",
  "registrationContact": "/entitiy/1",
  "submissionContact": "/entitiy/1",
  "reviewingContact": "/entitiy/1",
  "currency": "text",
  "defaultLanguage": "/entitiy/1",
  "availableLanguages": [
    "/entitiy/1"
  ],
  "categories": [
    "/entitiy/1"
  ]
}

Was this helpful?