Step 4 - Get the payment status

As you are aware, you can receive payments through webhooks too, so making an API call to obtain the same data isn't mandatory. However, it is highly recommended to implement both methods to ensure there is a fallback option should one of them fail.

API Call

There are two methods to retrieve the transaction status through an API call: by using the "Id" provided by the Remitee at the time of payment creation, or by using the "referenceId" generated by yourself.

Get Transaction by id

get
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
  • : MoneyTransfer API
  • : Support API
  • : MoneyTransfer API
  • : Support API
Authorizations
OAuth2implicitRequired
Authorization URL:
OAuth2clientCredentialsRequired
Token URL:
Path parameters
idstring · uuidRequired

Identifier.

Responses
chevron-right
200

Returns the payment matching the Id

application/json
get
/api/Payments/{id}

Get Transaction by reference

get
chevron-right
lockRequired scopes
This endpoint requires the following scopes:
  • : MoneyTransfer API
  • : Support API
  • : MoneyTransfer API
  • : Support API
Authorizations
OAuth2implicitRequired
Authorization URL:
OAuth2clientCredentialsRequired
Token URL:
Path parameters
referencestringRequired

reference.

Responses
chevron-right
200

Returns the payment matching the reference

application/json
get
/api/Payments/Find/{reference}

Last updated