View Categories

Search individual

< 1 min read

Search Individual (Beneficiaries) #

Searches the 10nPay directory to find other users you can add as beneficiaries.

Endpoint #

POST https://api-test.10npay.com/app/search-beneficiaries

Headers #

  • Authorization: Bearer <access_token>
  • Content-Type: application/json
  • Accept: application/json

Request Body #

{
  "filters": [
    {
      "columnName": "Email",
      "operator": 0,
      "value": "test@example.com"
    }
  ],
  "sortings": [
    {
      "sortBy": "Email",
      "sortOrder": 1
    }
  ],
  "pageNumber": 1,
  "pageSize": 10
}

This matches the wallet’s SearchFriendModel – you can filter by Email/Name and paginate results.

Response #

200 OK:

{
  "totalCount": 1,
  "data": [
    {
      "id": 590,
      "firstName": "Ivailo",
      "email": "user@example.com",
      "walletId": "WALLET123",
      "status": 1
    }
  ]
}

Errors #

  • 400 – invalid filter (missing column/value).
  • 401 – missing/expired token.
  • 500 – retry later.