Responses

All the injection Web services will return a response with the same pattern. This pattern is :

{
        "status":<status>,
        "message":<error message>,
        "result":<Payload>
}

With :

  • status : the status of the response. It should be OK or ERROR
  • message : an error message associated to the ERROR status. It is null in case of an OK status.
  • payload : It’s the real response of the called service.

Example :

{
        "status":"OK",
        "message":null,
        "result":{
                "batchImportId":"9733e237-8aad-4d2a-9e18-efbccc78bc85",
                "clientId":null
        }
}