Developer ZoneRecipesAPI ReferenceChangelog
Developer Zone

Warmup

Warmup API ensures that the SoftPOS app and the runtime environment on the device are initialized and ready for transactions

Warmup API calls the SoftPOS Application to start performing a series of runtime checks.

📘

API Parameter

Request Parameter
Response Parameters

Warmup API Request

Warmup Request do not take any body and uses GET request

curl http://{payserverIPAddress}:{payserverPort}/api/v1/warmup
val result = client.get("http://${remoteIpAddress.value}:${remotePort.value}/api/v1/warmup")
val response = result.body<PosResponse<Unit>>()

Warmup API Response

{
 "respCode" : "0",
 "rspMsg": "Success"
}