Deregistration

Overview

Third Party Applications can use this request to deregister their existing app with the Moneris Go App.


Request Structure

Element Type Description Size Required
apiVersion String API version number V20 Required
correlationId String Correlates a series of requests within the same flow V50 Required
requestDateTime String Date and time of the request (YYYY-MM-DDTHH:MM:SSZ).
The format is based on the standard RFC 3339 internet profile—a subset of ISO 8601.
F20 Required
action String "DEREGISTER" V50 Required
applicationData Object Third party application data - -
applicationName String Third party application name V50 Required
applicationPackageName String Third party application package name V50 Required

{
  "apiVersion": "2025-01-09",
  "correlationId": "example_correlationId",
  "requestDateTime": "2025-12-31T23:59:60Z",
  "applicationData": {
    "applicationName": "xyz loyalty",
    "applicationPackageName": "xyz.exe"
  },
  "action": "DEREGISTER"
}

Response Structure

Element Type Description Size Required
apiVersion String API version number V20 Required
correlationId String Echo from the request V50 Required
responseDateTime String Date and time of the response (YYYY-MM-DDTHH:MM:SSZ).
The format is based on the standard RFC 3339 internet profile—a subset of ISO 8601.
F20 Required
action String "DEREGISTER" V50 Required
status String HTTP Status Codes for the overall transaction request F3 Required

{
  "apiVersion": "2025-01-09",
  "correlationId": "example_correlationId",
  "responseDateTime": "2025-12-31T23:59:60Z",
  "action": "DEREGISTER",
  "status": "200"
}

Did this page help you?