APIOrderNotification


This method allows you to set an order notification for email and SMS
/api/plain/?type=APIOrderNotification&[payload]&HashString=[hashstring]

URL Parameters

 Field TypeDescription
TypeStringAPI that will be called
PayloadURL_ENCODEDAn URL encoded JSON array 
HashString Varchar sha256 encoded string. Read how to create payload and hashstring 


Payload Parameters

 Field TypeDescription
SendConfirmationEmail Boolean
SendConfirmationSMS Boolean


Success 200

FieldTypeDescription
Reference Varchar
EmailNotificationBoolean
SMSNotification Boolean
  •  Success-Response: 
  •     HTTP/1.1 200 OK
        {
          "Reference": "ABC123",
          "EmailNotification": "1",
          "SMSNotification": "0"
    }

Error 4xx

FieldTypeDescription
Errorsarray() 
 - Code IntNumber of error
 - Error StringError message
  •  Error-Response: 
  •     HTTP/1.1 200 OK
        {
          "Errors": [
    	  	{"Code":"12", "Error":"Not found order"}
    	  ]
        }