GET
/
api
/
v1
/
devices
curl --request GET \
  --url https://app.pnta.io/api/v1/devices \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "token": "<string>",
      "platform": "ios",
      "metadata": {},
      "identifiers": {},
      "id": "<string>"
    }
  ],
  "pagination": {
    "count": 123,
    "page": 123,
    "pages": 123,
    "from": 123,
    "to": 123,
    "last": 123
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

success

The response is of type object.