Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

Bloc de code
languagejson
  "response": 
  {
    "maxElementAtOnce": "10" // max elements that can be passed at once
    "data": 
    [{
      "action": "value", // inserted or updated
      "xxxxx_ID": "value", // with xxxxx = table and value is ID created/updated
      "codexxxxx": "value" // with xxxx = table and value is code created/updated
    }]
  }

...

Bloc de code
languagejson
"result": 
{
    "results": 
    [{
        "common": 
        {
            "resultCode": "0", // 0 if ok otherwise specific error of the webhook
            "errorMessage": "" // if resultCode <> 0, text of the error in english
        },
        "response": 
        {
            "maxElementAtOnce": "10" // max elements that can be passed at once
            "data": 
            [{
                "action": "value", // inserted or updated
                "xxxxx_ID": "value", // with xxxxx = table and value is ID created/updated
                "codexxxxx": "value" // with xxxx = table and value is code created/updated
            }]
        }
    },
    {
        "common": 
        {
            "resultCode": "0",
            "errorMessage": ""
        },
        "response": 
        {
            "maxElementAtOnce": "10" // max elements that can be passed at once
            "data": 
            [{
                "action": "value",
                "xxxxx_ID": "value",
                "codexxxxx": "value"
            }]
        }
    },
    {
        ...
    }]
}

...