Fetch the pep status associated with the identity

GET /users/{user_id}/kyc/identities/{identity_id}/pep_status

Fetch the pep status associated with the identity or legal representative.

Path parameters

  • user_id string Required

    User id

  • identity_id string Required

    Identity or Legal representative id

Responses

  • 200

    The pep status of the identity or legal representative

    Hide response attributes Show response attributes object
    • id string(uuid)
    • identity_id string(uuid)
    • is_exposed boolean
    • is_sanctioned boolean
    • check_date string(datetime)
    • source string | null
    • reason string | null
    • created_at string(datetime)
    • updated_at string(datetime)
  • 404

    Resource not found.

GET /users/{user_id}/kyc/identities/{identity_id}/pep_status
curl \
 -X GET https://client-subdomain.bitbond.net/api/v1/users/{user_id}/kyc/identities/{identity_id}/pep_status
Response examples (200)
{
  "id": "string",
  "identity_id": "string",
  "is_exposed": true,
  "is_sanctioned": true,
  "check_date": "string",
  "source": "string",
  "reason": "string",
  "created_at": "string",
  "updated_at": "string"
}
Response examples (200)
{
  "id": "string",
  "identity_id": "string",
  "is_exposed": true,
  "is_sanctioned": true,
  "check_date": "string",
  "source": "string",
  "reason": "string",
  "created_at": "string",
  "updated_at": "string"
}