Update STIP Balance

The Update Stand in Processing (STIP) Balance endpoint enables customer's using EHI Mode 4 or 5 to adjust a balance for a card.

You can update the balance by making a PUT request to the endpoint. For example:

https://cardsapi-uat-pub.globalprocessing.net/api/v1/cards/{PublicToken}/balance/stip

The below is an example body for an Update STIP balance request:

{
  "AvailableSTIPBalanceGPS": 150,
  "CurrentSTIPBalanceGPS": 200,
  "CurrenceyCode": "GBP",
  "BalanceSequenceIDExT": 1234,
  "UpdatedBy": "J Sims",
  "TxnCode" : 16,
  "IssCode" : "PMT",
  "RequestDate": 2022-10-09,
  "RequestTime": 11:32:32
}

If successful, a 200 response will be returned with details of the transaction. The below is an example response:

{
  "BalanceSequenceID": 1235,
  "BalanceSequenceIDExT" : 1234,
  "CurrenceyCode": "GBP",
  "TxnCode" : 16,
  "ItemId" : 23290,
  "IssCode" : "PMT"
  "ActionCode" : 000,
  "ProcessingDate": 2022-10-09,
  "ProcessingTime" : 11:34:32
}

👍

API Explorer

See the Update Card STIP Balance endpoint.