Blocklist

Get Usuários na Blocklist

get/api/blocklist

Query parameters

cpfstring

O CPF do usuário.

Example:123.456.789-00

O CPF do usuário.

Request body

cpfstring

Example request

{
  "cpf": "delectus"
}

Response

Example response

{
  "data": [
    {
      "email": "string",
      "cpf": "nullable_string",
      "blocked_at": "datetime",
      "reason": "nullable_string"
    }
  ],
  "links": {
    "first": "string",
    "last": "string",
    "prev": "nullable_string",
    "next": "nullable_string"
  },
  "meta": {
    "current_page": "int",
    "from": "int",
    "last_page": "int",
    "links": [
      {
        "url": "nullable_string",
        "label": "string",
        "active": "boolean"
      },
      {
        "url": "string",
        "label": "string",
        "active": "boolean"
      },
      {
        "url": "nullable_string",
        "label": "string",
        "active": "boolean"
      }
    ],
    "path": "string",
    "per_page": "int",
    "to": "int",
    "total": "int"
  }
}

Changes