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>"
}
}
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>"
}
}
The access token received from the authorization server in the OAuth 2.0 flow.
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.
Accepted
The response is of type object
.