Skip to main content
POST
/
api
/
v2.1
/
fintrans
/
{accountId}
/
types
/
{operationType}
/
execute
Execute prepared operation
curl --request POST \
  --url https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/types/{operationType}/execute \
  --header 'Content-Type: application/json' \
  --data '
{
  "preparedOrderId": "<string>",
  "confirmationCode": "<string>",
  "authenticationCode": "<string>",
  "executionMetadata": {}
}
'

Sample cURL

curl --request POST \
  --url 'https://sandbox.finhub.cloud/api/v2.1/fintrans/{accountId}/types/{operationType}/execute' \
  --header 'Authorization: Bearer <ACCESS_TOKEN>' \
  --header 'X-Tenant-Id: <TENANT_ID>' \
  --header 'Content-Type: application/json' \
  --header 'Accept: application/json' \
  --header 'User-Agent: <USER_AGENT>' \
  --header 'X-Forwarded-From: <FORWARDED_FROM>' \
  --header 'platform: Web' \
  --header 'deviceId: <DEVICE_ID>' \
  --data '{
    "preparedOrderId": "<PREPARED_ORDER_ID>",
    "otp": "<OTP>",
    "consentId": "<CONSENT_ID>"
  }'

Headers

X-Tenant-ID
string
X-User-ID
string

Path Parameters

accountId
string
required
operationType
string
required

Body

application/json
preparedOrderId
string
confirmationCode
string
authenticationCode
string
executionMetadata
object

Response

200

OK