Response of the Perfion Query

  • Created
<Response>
    <Result>
        <Id>89</Id>
        <Id>90</Id>
        <Id>91</Id>
    </Result>
</Response>

When making an update-, insert-, or delete-statement the query will return an XML document containing the IDs of the items affected. The content of the XML document will look similar to the following:

{
  "Response": {
    "Result": [ 1, 2, 3 ]
  }
}

When the update-, insert- or delete-statement is defined as JSON, the query will return in the following

For update-statements, only IDs of items directly modified are returned. This means that e.g. updating a virtual item will not return the IDs of all child-items having their values affected due to inheritance.

For delete-statement all IDs of the deleted items are returned. This means that deleting a virtual item will return not only the IDs of the virtual item, but also all IDs of children deleted (if any).

Was this article helpful?

0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.