For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
DocsAPI Reference
DocsAPI Reference
    • End Points
  • PARTNER
    • GETGet Orders
    • GETGet Order By ID
    • GETGet Webhooks
    • POSTRefresh Access Token
    • POSTCreate Widget URL
  • COUNTRIES
    • GETGet Countries
  • CURRENCIES
    • GETGet Crypto Currencies
    • GETGet Fiat Currencies
    • GETGet Price
    • GETVerify Wallet Address
  • TRANSAK WHITELABEL API
    • End Points
      • GETGet FCA Requirements
      • POSTSubmit FCA Requirements
      • GETGet FCA Status
Dashboard
LogoLogo
TRANSAK WHITELABEL APIFCA

Submit FCA Requirements

||View as Markdown|
POST
https://api-gateway-stg.transak.com/api/v2/user/fca-requirements
POST
/api/v2/user/fca-requirements
$curl -X POST https://api-gateway-stg.transak.com/api/v2/user/fca-requirements \
> -H "Content-Type: application/json" \
> -d '{
> "status": "CATEGORIZATION_PENDING",
> "data": {
> "answers": [
> {
> "questionId": "HNI_Q1",
> "answerId": "A"
> },
> {
> "questionId": "HNI_Q2",
> "answerId": "A"
> }
> ]
> }
>}'
1{
2 "data": {
3 "result": "HIGH_NET_WORTH_INVESTOR"
4 }
5}
The **Submit FCA Requirements** is an **authenticated POST API call** that submits a user's FCA compliance data for the current step. The request body varies based on the user's FCA status — categorization answers, investor agreement signature, or risk assessment responses. Call [Get FCA Status](/api/whitelabel/fca/get-fca-status) to determine the current step, then [Get FCA Requirements](/api/whitelabel/fca/get-fca-requirements) to fetch the form data before submitting answers with this endpoint. Use the **status** selector in the request body to switch between categorization, agreement, and risk assessment payloads. Use the **Examples** dropdown to load a matching request and response pair for each flow.
Was this page helpful?
Previous

Get FCA Requirements

Next

Get FCA Status

Built with

The Submit FCA Requirements is an authenticated POST API call that submits a user’s FCA compliance data for the current step. The request body varies based on the user’s FCA status — categorization answers, investor agreement signature, or risk assessment responses.

Call Get FCA Status to determine the current step, then Get FCA Requirements to fetch the form data before submitting answers with this endpoint.

Use the status selector in the request body to switch between categorization, agreement, and risk assessment payloads. Use the Examples dropdown to load a matching request and response pair for each flow.

Headers

authorizationstringOptional

Authorization token is the accessToken received from the API - api/v2/auth/verify

Note: This is not applicable for Auth Reliance Flows

x-user-identifierstringOptional

Your authenticated user Email Id address.

Note: This is applicable only for Auth Reliance Flows

x-access-tokenstringOptional

Your Partner Access Token. Please refer here for a tutorial on generating your access token.

Note: This is applicable only for Auth Reliance Flows

Request

This endpoint expects an object.
CATEGORIZATION_PENDINGobjectRequired
OR
AGREEMENT_PENDINGobjectRequired
OR
RISK_ASSESSMENT_PENDINGobjectRequired
OR
RISK_ASSESSMENT_FAILEDobjectRequired

Response

200 - Success

dataobject

Errors

400
Bad Request Error
401
Unauthorized Error
404
Not Found Error
500
Internal Server Error