Skip to main content
GET
/
subcategories
/
{id}
/
participants
Fetch events participants for a given subcategory id
curl --request GET \
  --url https://sandbox.api.btdx.io/subcategories/{id}/participants \
  --header 'authorization: <authorization>'
{
  "_meta": {
    "_count": 123,
    "_page": {
      "_pageNumber": 123,
      "_pageSize": 123,
      "_totalElements": 123,
      "_totalPages": 123
    }
  },
  "participants": [
    {
      "id": "<string>",
      "externalReferences": {
        "_ref": "<string>",
        "_ids": [
          "<string>"
        ]
      },
      "code": "<string>",
      "name": "<string>",
      "active": true
    }
  ],
  "externalReferences": [
    {
      "id": 123,
      "source": "<string>",
      "externalReference": "<string>"
    }
  ]
}

Headers

authorization
string
required

Header with the accessToken for the current session

Path Parameters

id
string
required

subcategory id

Response

OK

_meta
object
participants
object[]
externalReferences
object[]