Skip to main content
POST
/
players
/
{playerId}
/
kyc
/
documents
Submit a KYC document
curl --request POST \
  --url https://mock-api.cevro.ai/v1/players/{playerId}/kyc/documents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Session-ID: <x-session-id>' \
  --data '
{
  "type": "id_card",
  "expires_at": "2023-12-25"
}
'

Authorizations

Authorization
string
header
required

API Bearer token. For this demo, any non-empty string is accepted.

Headers

X-Session-ID
string
required

Path Parameters

playerId
string
required

Body

application/json
type
enum<string>
required
Available options:
id_card,
passport,
drivers_license,
proof_of_address,
bank_statement,
utility_bill,
selfie,
source_of_funds
expires_at
string<date>

Document expiry date (for ID documents)

Response

Document submitted successfully