GET
https://api.main.apexscore.ai
/
api
/
v1
/
versions
curl --request GET \
  --url https://api.main.apexscore.ai/api/v1/versions/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": 123,
      "name": "<string>",
      "audience": "<string>",
      "audience_type": 0,
      "sequence": -1
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

Response

200 - application/json

The response is of type object.