Responses

All the injection Web services will return a response with an identical 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: the real response of the called service.

Example :

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