GET
/
profiles
/
status
curl --request GET \
  --url https://api.live.paisr.tech/{version}/profiles/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "bus_123456",
    "status": "verified",
    "country": "SR",
    "approved": true,
    "approved_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 profile information.
success
boolean
Example:

true

data
object