v1

latestOpenAPI 3.0.02026-07-242035712.0 MB
Account

Load Block Unblock

This API enables the blocking and unblocking of financial adjustments to the account using the Load Balance API. It is specifically designed for Prepaid and Debit programs and is not used for Credit card programs.

Blocking financial postings to the account does not affect the authorization flow of the related token(s).

post/pws/pws_block_load/

Request body

api_call_unique_identifierstring required

Unique number that must be passed at each API request. Identifier to make each API request unique

client_idinteger required

Unique identifier for the client which Paymentology will provide at outset

flaginteger required
<ul><li class="docBullet">0 = Block load</li><li class="docBullet">1 = Unblock load</li></ul>
input_idinteger required

Public token / account number /Group Id.Pass public token when input type is t./Pass account number when input type is a./Pass Group Id when iput type is g.

input_typestring required
<p>Input Type :</p> <ul> <li class="docBullet">a ==&gt; account</li> <li class="docBullet">t ==&gt; Token</li> <li class="docBullet">g ==&gt; Group</li> </ul>
user_idstring

User Id of the Customer who triggered the API request.

remarksstring

Remarks for API request

Example request

{
  "api_call_unique_identifier": "438574845790657485",
  "client_id": 760131,
  "flag": 1,
  "input_id": 479823917,
  "input_type": "a"
}

Response

Successful Response

Example response

{
  "header": {
    "error_desc": "success"
  },
  "body": {
    "message": "Load block success"
  }
}