curl --request PUT \
--url https://api.example.com/payments/commands/create \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"gatewayCredId": "<string>",
"nickname": "<string>",
"message": "<string>",
"recipientId": "<string>",
"method": "<string>",
"amount": {
"minor": 123,
"major": 123,
"currency": "<string>"
},
"attachments": [
"<string>"
],
"actions": [
{
"id": "<string>",
"actionId": "<string>",
"amount": 123,
"parameters": {}
}
],
"goal": "<string>",
"marker": "<string>"
}
'