POST
/
api
/
payments
/
v3
/
payment-initiations
curl --request POST \
  --url http://localhost:55001/api/payments/v3/payment-initiations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "reference": "<string>",
  "scheduledAt": "2023-11-07T05:31:56Z",
  "connectorID": "aSDinaTvuI8gbWludGxpZnk=",
  "description": "<string>",
  "type": "UNKNOWN",
  "amount": 123,
  "asset": "<string>",
  "sourceAccountID": "aSDinaTvuI8gbWludGxpZnk=",
  "destinationAccountID": "aSDinaTvuI8gbWludGxpZnk=",
  "metadata": {}
}'
{
  "data": {
    "paymentInitiationID": "<string>",
    "taskID": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

noValidation
boolean
default:false

If set to true, the request will not have to be validated. This is useful if we want to directly forward the request to the PSP.

Body

application/json

Response

202
application/json

Accepted

The response is of type object.