Update the details of a payment identified by the paymentId that is in the PENDING_CONFIRMATION state.
Required user role: CREATOR
Security
apiKey and authToken
- Sandboxhttps://sandbox.weavr.io/payment-run/v1/payment_runs/{payment_run_id}
- Mock serverhttps://api.weavr.io/_mock/products/payment-run/openapi/v1/payment_runs/{payment_run_id}
- FasterPaymentsBankDetails
- SepaBankDetails
curl -i -X PUT \
'https://sandbox.weavr.io/payment-run/v1/payment_runs/{payment_run_id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"payments": [
{
"paymentId": "string",
"supplier": {
"name": "string",
"address": "string",
"bankName": "string",
"bankAddress": "string",
"bankCountry": "st",
"type": "PERSONAL",
"bankAccountDetails": {
"accountNumber": "stringst",
"sortCode": "string",
"secondaryReference": "string"
}
}
}
]
}'