Skip to content

Get KYC for a consumer

Request

Returns the KYC status for the logged-in consumer.

Security
auth_token and api-key
curl -i -X GET \
  https://sandbox.weavr.io/multi/consumers/kyc \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'api-key: YOUR_API_KEY_HERE'

Responses

Success

Headers
request-refstringrequired

A request identifier. Providing this reference when contacting our support team will help us investigate your query.

Bodyapplication/json
fullDueDiligencestring(KyiStatus)required

The status of the Due Diligence for the consumer.

Enum:"NOT_STARTED""INITIATED""PENDING_REVIEW""APPROVED""REJECTED"
ongoingFullDueDiligencestring(KyiStatus)required

The status of the ongoing Due Diligence process for the consumer

Enum:"NOT_STARTED""INITIATED""PENDING_REVIEW""APPROVED""REJECTED"
kycLevelstring(KycLevel)deprecated

The customer's level of due diligence.

Enum:"KYC_LEVEL_1""KYC_LEVEL_2"
ongoingKycLevelstring(KycLevel)deprecated

The level of due diligence of the ongoing KYC process.

Enum:"KYC_LEVEL_1""KYC_LEVEL_2"
Response
{ "fullDueDiligence": "NOT_STARTED", "kycLevel": "KYC_LEVEL_1", "ongoingFullDueDiligence": "NOT_STARTED", "ongoingKycLevel": "KYC_LEVEL_1" }