Submit individual KYX
POST/kyx/individual
Submits KYX (identity verification) for a previously created individual. Identity documents are sent inline as a map of filename to base64-encoded file content. The individual must pass KYX before it can be paid out or cash out.
Request
- application/json
Body
required
Possible values: <= 36 characters, Value must match regular expression ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
UUID v4
Possible values: <= 36 characters, Value must match regular expression ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
UUID v4
docs
object
required
Map of document filename to base64-encoded file content. The key is the original filename (e.g. "passport.jpg"); the value is the base64-encoded contents of that file.
Base64-encoded file content.
Responses
- 201
- 401
- 403
- 422
- 500
KYX submission accepted. The response envelope carries no resource body; verification is processed asynchronously.
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [success]
Possible values: [201]
Empty data array; the submission carries no resource body.
{
"status": "success",
"code": 201,
"data": [
null
],
"message": "string"
}
Access token is missing or invalid
Access denied — the individual is not accessible to the authenticated account
The KYX submission could not be processed due to a validation failure
Server error