Payment.Payment Request
Create payment request
Create a payment request with the given values. This endpoint returns an id which can be used with Tink Link to create a full payment journey for an end user.
post/api/v1/payments/requests
Request body
Example request
{
"amount": 10,
"currency": "GBP",
"destinations": [
{
"accountNumber": "31245678901234",
"type": "sort-code"
}
],
"executionDate": "2023-11-20",
"merchantId": "c7f2de71-ad83-4eb7-b7df-5ed6445cb2af",
"metadata": {
"custom key": "custom value",
"merchantReference": "17172137"
},
"recipient": {
"address": {
"city": "Stockholm",
"country": "Sweden",
"postalCode": "11120",
"state": "Stockholm",
"street": "Vasagatan 11"
}
},
"recipientName": "Test AB",
"remittanceInformation": {
"type": "UNSTRUCTURED"
},
"sourceMessage": "Gym Equipment",
"userConsent": {
"consentCaptured": true,
"consentText": "I agree to the Terms of Service and Privacy Notice."
}
}Response
The payment request was created.