Skip to main content
POST
/
v1
/
platform
/
card-processing
Apply for Card Processing
curl --request POST \
  --url https://api-sandbox.finogates.com/v1/platform/card-processing \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "kyb_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "status_code": 123,
  "data": "<unknown>",
  "query_generated_time": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Platform-realm card-processing application request body.

Unlike :class:CardAcquiringCreate, the target user_id travels in the request body (not the path), and the compliance-check reference is the shorter public field name kyb_id.

user_id
string<uuid>
required

Public id of the user the application is for.

kyb_id
string<uuid>
required

Public id of the compliance_checks row with check_type='kyb' to apply against. The row must be approved, not deleted, and belong to the target user.

Response

Successful Response

Standard response wrapper for single-object responses and errors.

Generic over the payload type. A route that declares CommonResponse[SomeModel] gets the real data schema rendered in OpenAPI/Swagger; a bare CommonResponse leaves data untyped.

status_code
integer
required

HTTP status code for the response.

data
any
required

Payload or error details.

query_generated_time
integer
required

UTC timestamp (milliseconds since epoch) when response was generated.