GET
/
profiles
/
owners
curl --request GET \
  --url https://api.live.paisr.tech/{version}/profiles/owners \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "owners": [
      {
        "id": "bow_123456",
        "full_name": "Jane Smith",
        "email": "jsmith@example.com",
        "type": "individual",
        "role": "shareholder",
        "status": "verified",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json
Successfully retrieved the list of beneficial owners.
success
boolean
Example:

true

data
object