Skip to content

Consumer_Charge_Settled

Request

For a Merchant/Contractor to see if a transaction is settled (The funds from the transaction are in the destination account).

Security
basicAuth
Path
request_user_idstringrequired
Bodyrequired
payment_identifierstringrequired
One of:

The payment_identifier that was sent in the callback of the original transaction.

string (uuid)
curl -i -X POST \
  -u '<username>:<password>' \
  'https://momnt-api-docs.redocly.app/_mock/docs/openapi/sponsor_consumer_v1/api/v1/sponsor/merchants/{request_user_id}/settled/' \
  -H 'Content-Type: application/json' \
  -d '{
    "payment_identifier": "dc8b6f5d-792f-4caa-9ffc-351a69c91328"
  }'

Responses

Bodyapplication/json
is_settledbooleanrequired

If settled = true, then the funds from the transaction are in the destination account. If settled = false, then the funds from the transaction are not in the destination account.

payment_identifierstringrequired
Response
{ "is_settled": true, "payment_identifier": "string" }