Set Account KYC to State

[STAGING ONLY] Sets an Account KYC state to the state specified in the payload. Can optionally set the PII level and/or KYC requirements. This API is meant for integration testing purposes.

Securitytilia_auth
Request
path Parameters
account_id
required
string (AccountId) <= 36 characters

The account ID to set.

Example: acct_2TiDFXHVFMlAuyy7ovvz3YPKv9b
Request Body schema: application/json
optional
state
required
string

The state to set this account to. Must be one of ACCEPT, MANUAL_REVIEW, DENY, CANCEL, NODATA

pii_level
string

The PII level to set this account to. Must be one of BASIC, FULL, DEFAULT

kyc_requirements
string

The KYC requirements to set this account to. Must be one of NONE, FULL_KYC, TAX_UPDATE. An empty value is allowed.

Responses
200

No response body

401

Unauthorized access.

500

Service unavailable or server error.

put/v2/kyc/account/{account_id}/state
Request samples
application/json
{
  • "state": "string",
  • "pii_level": "string",
  • "kyc_requirements": "string"
}