Skip to main content
GET
/
api
/
v1
/
customers
/
{customerId}
/
kycSubmissions
/
Retrieve Latest KYC Submission
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/customers/{customerId}/kycSubmissions/ \
  --header 'Authorization: Bearer <token>'
{
  "customerId": "07918d77-ae84-42f1-b816-58a8b086a625",
  "status": "COMPLETED",
  "createdAt": "2024-06-13T18:10:55.939054Z"
}

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Path Parameters

customerId
string<uuid>
required

Unique identifier for the customer.

Response

Latest KYC submission retrieved successfully.

customerId
string<uuid>
required

Unique identifier for the customer.

status
enum<string>
required

Current status of the KYC submission. IN_REVIEW: KYC is being reviewed, COMPLETED: KYC has been approved, FAILED: KYC was rejected.

Available options:
IN_REVIEW,
COMPLETED,
FAILED
createdAt
string<date-time>
required

Date and time the KYC submission was created (UTC format).