White Server White Server White Server API White Server API v2 Description of Methods Current: RemovePrepayOrder RemovePrepayOrder PurposeRemoves prepayments in the specified orderRequest typeasynchronous/synchronousSupported agent version, SHWSA v2.8.5.8PluggetSystemTypeRKMidRequest format{ "taskType": "RemovePrepayOrder", "params": { "sync": { "objectId": number, "timeout": number }, "orderGuid": "string" }}ParameterTypeMandatoryDescriptiontaskTypestring+Task type (RemovePrepayOrder)syncSynchronous method call (either synchronous or asynchronous)|-timeoutint-Agent response timeout in seconds, default is 120 seconds|-objectIdint+Restaurant code in the licensing systemorderGuidguid+Order guid in r_keeperResponse format// Successful response { "taskResponse": {}, "responseCommon": { "taskGuid": "string", "taskType": "RemovePrepayOrder", "objectId": number, "agentGuid": "string" }} // Response with error{ "responseCommon": { "taskGuid": "string", "taskType": "RemovePrepayOrder", "objectId": number }, "error": { "wsError": { "code": "string", "desc": "string" }, "agentError": { "code": "string", "desc": "string" } }}Example request{ "taskType": "RemovePrepayOrder", "params": { "sync": { "objectId": "199990246", "timeout": 120 }, "orderGuid": "8fcf1323-a26c-4afc-a8a4-7023372b4ebb" }}Example response{ "taskResponse": {}, "responseCommon": { "taskGuid": "3bc26173-c9a8-486b-9f7a-e68b4159b5c8", "taskType": "RemovePrepayOrder", "objectId": 199990246, "agentGuid": "d564619a-50c3-3d87-0816-de67ed9c8e18" }} ×