GET
/
admin
/
phone
/
quarantined
Listar telefones em quarentena
curl --request GET \
  --url https://services.staging.app.dados.rio/rmi/v1/admin/phone/quarantined \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "cpf": "<string>",
      "expired": true,
      "phone_number": "<string>",
      "quarantine_until": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "per_page": 123,
    "total": 123,
    "total_pages": 123
  }
}

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: 20, máximo: 100)

expired
boolean

Filtrar apenas quarentenas expiradas

Response

200
application/json

OK

The response is of type object.