Skip to main content

Create KYC for Beneficiary

POST 

https://api.cleverhub.co/api/v1/payouts/create_kyc

Submit KYC (Know Your Customer) documentation for a beneficiary before proceeding with a payout. The KYC submission helps verify the beneficiary’s identity. The email provided will be used for approving the payout process in subsequent steps.

Request

Bodyrequired

    emailstringrequired

    Email address associated with the beneficiary’s KYC process. This email will be used to approve the payout processing later.

    Example: beneficiary@example.com
    id_doc_typestringrequired

    Type of ID document provided for KYC verification. Options include:

    • id_card: National identification card.
    • passport: Passport document.

    Possible values: [id_card, passport]

    Example: passport
    id_doc_front_sidebinaryrequired

    Front side of the ID document. The file format must be PDF.

    id_doc_back_sidebinaryrequired

    Back side of the ID document. The file format must be PDF.

    selfiebinaryrequired

    A selfie image of the beneficiary for identity verification. The file format must be JPEG.

Responses

KYC submission was successful.

Schema
    statusstring

    Indicates the status of the KYC submission.

    Example: OK
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.cleverhub.co/api/v1/payouts/create_kyc");
request.Headers.Add("Accept", "application/json");
var content = new StringContent(string.Empty);
content.Headers.ContentType = new MediaTypeHeaderValue("multipart/form-data");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.cleverhub.co/api
Body required
required
required
required
Front side of the ID document. The file format must be PDF.
required
Back side of the ID document. The file format must be PDF.
required
A selfie image of the beneficiary for identity verification. The file format must be JPEG.
ResponseClear

Click the Send API Request button above and see the response here!