Skip to main content
GET
/
v1
/
payout
/
data-qualification
/
services
Get Data Qualification Services
curl --request GET \
  --url https://api.sandbox.wepayout.com.br/v1/payout/data-qualification/services \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "name": "Data qualification manually"
  },
  {
    "id": 2,
    "name": "Automatic validation + micro deposit"
  },
  {
    "id": 3,
    "name": "Automatic validation + micro deposit + manual correction"
  },
  {
    "id": 4,
    "name": "Automatic validation + deposit"
  },
  {
    "id": 5,
    "name": "Automatic validation + deposit + manual correction"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.wepayout.co/llms.txt

Use this file to discover all available pages before exploring further.

The data qualification services determine the procedures that will be applied to qualify the bank account.

Available Services

We have five data qualification services available:
  • 1 - Automatic validation: validates the document and bank account digits.
  • 2 - Automatic validation + micro deposit: After the data is validated a micro deposit is made to the account to assure that it’s valid.
  • 3 - Automatic validation + micro deposit + manual correction: Same as above plus manual check in case of failures.
  • 4 - Automatic validation + deposit: Same as 2 but you provide the amount to be deposited.
  • 5 - Automatic validation + deposit + manual correction: Same as 3 but you provide the amount to be deposited.

Response

array
array
Array of data qualification services.

Request Example

curl --request GET \
  --url 'https://api.sandbox.wepayout.com.br/v1/payout/data-qualification/services' \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer {token}'
[
  {
    "id": 1,
    "name": "Data qualification manually"
  },
  {
    "id": 2,
    "name": "Automatic validation + micro deposit"
  },
  {
    "id": 3,
    "name": "Automatic validation + micro deposit + manual correction"
  },
  {
    "id": 4,
    "name": "Automatic validation + deposit"
  },
  {
    "id": 5,
    "name": "Automatic validation + deposit + manual correction"
  }
]