Skip to main content
POST
/
api
/
payments
/
transfer-initiations
/
{transferId}
/
status
Update the status of a transfer initiation
curl --request POST \
  --url http://localhost/api/payments/transfer-initiations/{transferId}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "REJECTED"
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

transferId
string
required

The transfer ID.

Body

application/json
status
enum<string>
required
Available options:
REJECTED,
VALIDATED

Response

No content