GET
/
admin
/
beta
/
whitelist
Listar telefones na whitelist
curl --request GET \
  --url https://services.staging.app.dados.rio/rmi/v1/admin/beta/whitelist \
  --header 'Authorization: Bearer <token>'
{
  "pagination": {
    "page": 123,
    "per_page": 123,
    "total": 123,
    "total_pages": 123
  },
  "total_count": 123,
  "whitelisted": [
    {
      "added_at": "<string>",
      "group_id": "<string>",
      "group_name": "<string>",
      "phone_number": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer

Página (padrão: 1)

per_page
integer

Itens por página (padrão: 10)

group_id
string

Filtrar por ID do grupo

Response

200
application/json

OK

The response is of type object.