Reload Configuration
Reload API forces the SoftPOS app to reload EMV configurations and payment keys
Reload API calls the SoftPOS Application to reload EMV configurations and payment keys in the event of errors.
API Parameter
Reload API Request
Reload Request do not take any body and uses GET request
curl http://{payserverIPAddress}:{payserverPort}/api/v1/reload
val result = client.get("http://${remoteIpAddress.value}:${remotePort.value}/api/v1/reload")
val response = result.body<PosResponse<Unit>>()
Reload API Response
{
"respCode" : "0",
"rspMsg": "Success"
}
Updated 22 days ago