{"info":{"_postman_id":"19b4c858-17c3-4eb0-b1ab-15d94a09374f","name":"Sync documentation","description":"<html><head></head><body><h2 id=\"introduction\">Introduction</h2>\n<p>Welcome to the Vertex Sync public documentation. In order to use the API, please use the latest version of the API.</p>\n<h2 id=\"authentication-and-authorization\">Authentication and Authorization</h2>\n<p>This API uses OAuth2 authentication with Keycloak. To access protected endpoints, you need to obtain a JWT token and include it in the <code>Authorization</code> header.</p>\n<p><strong>Keycloak URLS</strong></p>\n<ul>\n<li>Production site: auth-sync.vertex.fi</li>\n</ul>\n<p><strong>Sample Request to Obtain a JWT Token:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">  POST https://auth-sync.vertex.fi/auth/realms/{realm}/protocol/openid-connect/token\n  Content-Type: application/x-www-form-urlencoded\n  grant_type=client_credentials&amp;client_id=your-client-id&amp;client_secret=your-client-secret\n\n</code></pre>\n<p><strong>Sample Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">  {\n    \"access_token\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...\",\n    \"expires_in\": 300,\n    \"token_type\": \"Bearer\",\n    \"scope\": \"entities:write entities:delete\"\n  }\n\n</code></pre>\n<p><strong>Using the Access Token:</strong></p>\n<p>Include the token in the <code>Authorization</code> header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">  Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...\n\n</code></pre>\n<h2 id=\"entity-information\">Entity information</h2>\n<p>A service for handling entities. Entities are general use objects that most of Sync's main features revolve around. Entities typically contain various miscellaneous data, a payload file, a preview file and relations to other entities.</p>\n<h1 id=\"important-fields-of-entities\">Important fields of entities</h1>\n<h2 id=\"type-and-code\">Type and Code</h2>\n<p>Each entity must have a type and a code. The code is often automatically generated by the service but it can be set to specific values during creation as necessary. For example in Vertex BD the code is set to the building's ID. All entities must have a unique type and code combination (multiple entities can have the same combination if they are different revisions of each other). The code is case insensitive for all operations.</p>\n<h2 id=\"modificationcount\">ModificationCount</h2>\n<p>Entities have a modificationCount field. It is used to implement optimistic locking. Most modifying endpoints requires the field to be given and the operation only succeeds if the modificationCount is equal to the entity's modificationCount in the database.</p>\n<h2 id=\"client-system-files\">Client System Files</h2>\n<p>Entities marked as clientSystemFiles are normally hidden from the user. They can be optionally retrieved with a query parameter.</p>\n<h2 id=\"files\">Files</h2>\n<p>Each entity can have a file, a preview file and a thumbnail. The file is the main file of the entity. The preview file can be used to change the preview for a file. The thumbnail is automatically generated from the file or the preview file depending on whether a preview exists. It is a Base64 encoded picture.</p>\n<h1 id=\"entities-main-features\">Entities main features</h1>\n<h2 id=\"labels\">Labels</h2>\n<p>Labels can be added to entities. They are not freeform strings even though they may look like it. They need to be explicitly created after which they can be used freely in entities. The service renames and deletes labels from entities as necessary.</p>\n<h2 id=\"autolabeling\">Autolabeling</h2>\n<p>Labels can be automatically added to created entities based on some rules. The rules only activate on entities created after the rules were made. An entity's labels can be modified even if a label came from a rule.</p>\n<h2 id=\"blocks\">Blocks</h2>\n<p>Each entity can be blocked for various operations. Only admins and the user who added the block can remove it. OVERWRITE_EVERYONE block prevents all kinds of direct modifications except revisioning. OVERWRITE_OTHERS is akin to a reservation. It allows the current user to do anything while blocking all direct operations from other users. REVISE_EVERYONE only blocks revisioning.</p>\n<h2 id=\"revisions\">Revisions</h2>\n<p>When an entity is revised the original entity is overwrite blocked and a successor is attached to it. The successor is similar to a copy when it is first created. Revisioning can be likened to backing up an old version of an entity to version history.</p>\n<h2 id=\"relations\">Relations</h2>\n<p>Entities can have multiple kinds of relations to other entities. The relations are automatically maintained and the different types behave differently under different operations. Relations have no requirements meaning that they can freely form chains, loops, etc. The relation types are similar to their respective UML class diagram relationships.</p>\n<h3 id=\"composition-relations\">Composition Relations</h3>\n<p>Composition relations thightly couple entities to each other. Most modifying operations also target all other entities linked to the targeted entity via composition. For example deleting an entity also deletes all entities attached to it via composition.</p>\n<h3 id=\"aggregation-relations\">Aggregation Relations</h3>\n<p>Aggregation relations are not as tightly coupled as compositions. Most operations do not target entities linked via aggregation. Most operations can however be made to also target aggregation children via a query parameter.</p>\n<h3 id=\"association-relations\">Association Relations</h3>\n<p>Associations serve as \"links\" between entities. They are practically ignored by the service (but they are still maintained). They only serve a purpose for the client.</p>\n<h3 id=\"updating-relations\">Updating relations</h3>\n<p>Relations can be modified in all requests that take in entities in the body. If only one side of a relation is in a request, the relation is copied to the other side. If both sides are part of the request the behavior depends on the relation type: parent relations are completely ignored, children relations always overwritten and associations are asserted to be equal on both sides.</p>\n<h2 id=\"access-control\">Access Control</h2>\n<p>Entities can be hidden from specific users or groups with access control. The backend basically ignores any entities the user does not have access to. They cannot be retrieved or modified in any way. Admins can bypass access control as necessary with the optional entities:admin role.</p>\n<h2 id=\"branches\">Branches</h2>\n<p>Branches can be used to execute multiple operations to a group of entities transactionally. When a branch is created entities can be copied to it. Then the entities inside it can be freely modified, or new entities can be added to the branch. Once the branch is ready it can either be merged to commit all the changes at once or deleted to cancel all changes. If the entities in a branch received modifications outside the branch, merging the branch fails and the branch should be deleted.</p>\n<h2 id=\"recycle-bin\">Recycle bin</h2>\n<p>Deleted entities are automatically moved to the recycle bin. Entities in the recycle bin live for a certain period of time. They can be freely deleted from there or restored. Restored entities attach themselves to the entities they were originally attached to. Revision information is only restored if the previous revision hasn't received breaking changes. Entities in branches do not use the recycle bin.</p>\n<h1 id=\"admin-rights\">Admin rights</h1>\n<p>Admins by default have the same permissions as normal users. They can optionally request the entities:admin scope from the authentication server to gain extra rights. With the scope admins can bypass access control and ignore and manipulate blocks freely.</p>\n<h1 id=\"common-error-sources\">Common error sources</h1>\n<h2 id=\"changed-modificationcount\">Changed modificationCount</h2>\n<p>The service expected a different modificationCount. This means that something modified the entity without the client knowing about it.</p>\n<h2 id=\"invalid-relations\">Invalid relations</h2>\n<p>If both entities of an association relation are provided in the same request, the associations between the two entities must be identical.</p>\n<h2 id=\"invalid-labels\">Invalid labels</h2>\n<p>Any operation that allows setting labels requires valid labels. The labels must exist and be active. Inactive labels already on an entity do not need to be changed.</p>\n<h2 id=\"blocked-entities\">Blocked entities</h2>\n<p>Modifying requests may not modify entities that have been overwrite blocked or reserved by another user.</p>\n<h2 id=\"notification-information\">Notification information</h2>\n<h2 id=\"signalr\">SignalR</h2>\n<p>This API documentation includes both RESTful endpoints and real-time communication endpoints via SignalR.</p>\n<p>Vertex Sync uses SignalR for real-time web functionality, enabling the server to send asynchronous notifications to client-side web applications. The SignalR endpoints, specifically under <code>/(hubs)/NotificationHub</code>, are designed for real-time notifications and cannot be interacted with via standard HTTP requests.</p>\n<p>For more detailed information on how to establish a SignalR connection and interact with these real-time endpoints, please refer to the <a href=\"https://docs.microsoft.com/aspnet/core/signalr/introduction\">official SignalR documentation</a>.</p>\n<h3 id=\"group-naming-conventions\">Group Naming Conventions</h3>\n<p>Within the SignalR framework of our application, users can join different groups to receive targeted real-time notifications. Below are the formats used for different notification scenarios:</p>\n<ul>\n<li><p><strong>Single User Notifications</strong>: For notifications specific to a single user, groups are named using the user's ID and their interests in the format <code>USER_[userId]_INTERESTS</code>. For example, a user with the ID <strong>\"foo\"</strong> would be part of the group <code>USER_foo_INTERESTS</code>.</p>\n</li>\n<li><p><strong>Entity Change Notifications</strong>: To receive notifications about changes to any entity within the application, users should join the group named <code>ALL_ENTITY_CHANGES</code>.</p>\n</li>\n<li><p><strong>System-Wide Notifications</strong>: For notifications that are relevant across the entire system, the group name <code>SYSTEM</code> is used.</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Important fields of entities","slug":"important-fields-of-entities"},{"content":"Entities main features","slug":"entities-main-features"},{"content":"Admin rights","slug":"admin-rights"},{"content":"Common error sources","slug":"common-error-sources"}],"owner":"26452717","collectionId":"19b4c858-17c3-4eb0-b1ab-15d94a09374f","publishedId":"2sB2j1hsG8","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-04-28T07:58:54.000Z"},"item":[{"name":"entities","item":[{"name":"{entityId}","item":[{"name":"Find entity by id","id":"05b146fa-628a-458a-9cfc-043efeeee73e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?ignoreThumbnails=false","urlObject":{"path":["entities",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"169f7a00-dab4-452b-b5c2-3aff78c3f00d","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"a8c6db0c-8fb7-47a6-89cb-b3fcb7fc701a","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"creatorId\": \"<string>\",\n  \"modifierId\": \"<string>\",\n  \"creatorName\": \"<string>\",\n  \"modifierName\": \"<string>\",\n  \"description\": \"<string,null>\",\n  \"creationTime\": \"<integer>\",\n  \"modificationTime\": \"<integer>\",\n  \"metadata\": {\n    \"adipisicing__98\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"in_31\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"veniam_21\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"blockedOperations\": {\n    \"OVERWRITE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"OVERWRITE_OTHERS\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"REVISE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    }\n  },\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"predecessorId\": \"<string,null>\",\n  \"successorId\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"fileName\": \"<string,null>\",\n  \"fileNameExtension\": \"<string,null>\",\n  \"fileMimeType\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"paths\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"compositionParents\": {\n    \"cupidatat_8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollitb2\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"esse05\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"laboris3b\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"cupidatat_02_\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"labore__8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"enim_6\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"dolore52\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"Ut_f__\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"mollit_f1\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"eu9e\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}"},{"id":"78cdf438-d421-462e-8c10-13faf30bf4f4","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c40f0540-8cc7-4624-857d-4d3b0e663574","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"05b146fa-628a-458a-9cfc-043efeeee73e"},{"name":"Update entity","id":"4a28901d-369a-4455-822b-c7f1dedbb249","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"labore_093\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"veniam__2d\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in__9a\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"laboris2f8\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"commodoa4\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"laborisb\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"enim_4e\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"magna3\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"culpae\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"cillumbf\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","description":"<p>Update entity's modifiable data. All fields of provided entities are overwritten. Relations to other entities may also be added or removed.</p>\n","urlObject":{"path":["entities",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to overwrite parents. For entities with lots of parents it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateParents","value":"<boolean>"},{"description":{"content":"<p>Whether to overwrite children. For entities with lots of children it may be useful to set this to false and not send the children fields.</p>\n","type":"text/plain"},"key":"updateChildren","value":"true"},{"description":{"content":"<p>Whether to overwrite associations. For entities with lots of associations it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateAssociations","value":"true"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"d5e14663-5497-4e8a-a812-50100c372523","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"ea29f9cb-15a8-4219-bfef-d5dc15088545","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"b1e692fc-d066-4864-9270-a08cfa18f44d","name":"Invalid name, type, code, revision, relations or labels","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"c99c7933-ff39-4903-9dd8-61637b63e2c3","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"93f921ba-de25-4dbd-a82f-9ee03e6e85cd","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"349b8783-e02c-4bf6-a808-2a96b8d0c1b5","name":"Wrong modificationCount or the given entity or an added or removed composition parent, child or aggregation parent was blocked","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"4a28901d-369a-4455-822b-c7f1dedbb249"},{"name":"Delete entity","id":"a608cf27-a2a4-4463-ae66-7079222509a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?recursive=false&deletePermanently=true","description":"<p>Delete entity and its composition children by IDs. Aggregation children can be deleted with the \"recursive\" query parameter. By default the deleted entities are only moved to the recycle bin.</p>\n","urlObject":{"path":["entities",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Whether to delete the entities permanently instead of moving them to the recycle bin</p>\n","type":"text/plain"},"key":"deletePermanently","value":"true"}],"variable":[{"id":"91df39f2-ac22-410e-8b3b-6c7ce70fd491","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"3116cfde-4bdb-4129-9c3e-b1cfb63bf415","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?recursive=false&deletePermanently=true","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"recursive","value":"false"},{"key":"deletePermanently","value":"true"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"blockedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"entitiesBelongingToNotDeletedHierarchies\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"entitiesWithNotDeletedSuccessors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"62d51d34-2a81-4dcb-95de-bc1407966ef2","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?recursive=false&deletePermanently=true","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"recursive","value":"false"},{"key":"deletePermanently","value":"true"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"75fef787-0b40-4bd7-b71a-a1b75fc57bbd","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?recursive=false&deletePermanently=true","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"recursive","value":"false"},{"key":"deletePermanently","value":"true"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"984a2180-8d49-4367-9b1f-bdc033560ade","name":"A requested entity could not be deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId?recursive=false&deletePermanently=true","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId"],"query":[{"key":"recursive","value":"false"},{"key":"deletePermanently","value":"true"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"a608cf27-a2a4-4463-ae66-7079222509a4"},{"name":"Find all revisions","id":"6787b204-479b-4ac0-80c3-ee943183bdf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/revisions?ignoreThumbnails=false","description":"<p>Find all the revisions of the given entity.</p>\n","urlObject":{"path":["entities",":entityId","revisions"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"bbc8c948-4cb0-4e91-a95f-0ac2389e1d82","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"47447b8f-a381-4175-bb0a-b62130e8d377","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/revisions?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","revisions"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"84a84ea4-dbc1-4dfd-b585-f415aa1857a8","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/revisions?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","revisions"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"6787b204-479b-4ac0-80c3-ee943183bdf2"},{"name":"Get children count","id":"9d547135-b052-4750-bdb8-73515b4cd9e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/childrenCount","description":"<p>Returns various kinds of children counts for the given entity.</p>\n","urlObject":{"path":["entities",":entityId","childrenCount"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"e376d44f-d34e-4e0c-afaa-fbf65bab94c7","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"76df222f-50bb-47c1-9551-d08f327d73d8","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","childrenCount"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"childrenCount\": \"<integer>\",\n  \"childrenWithoutOtherParentsCount\": \"<integer>\",\n  \"directCompositeChildrenCount\": \"<integer>\",\n  \"indirectCompositeChildrenRootsByTypesCount\": {\n    \"Excepteur_e\": \"<integer>\"\n  }\n}"},{"id":"9c04fa0f-b59b-4d10-a4d5-5280ff1df4b0","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","childrenCount"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b5c7b175-93e7-498d-ac58-215b59896963","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","childrenCount"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"9d547135-b052-4750-bdb8-73515b4cd9e1"},{"name":"Copy entity by id","id":"c750bcf7-a5c9-42c8-9aca-1ffd22d2ffb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Duplicates the selected entity. The composition children are duplicated also. Aggregation children can be duplicated with the \"recursive\" query parameter.</p>\n","urlObject":{"path":["entities",":entityId","copy"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>What name to give to the copy of the selected entity. Name defaults to old name with \"-Copy\" suffix.</p>\n","type":"text/plain"},"key":"setName","value":"<string>"},{"description":{"content":"<p>What code to give to the copy of the selected entity. Code is generated by default.</p>\n","type":"text/plain"},"key":"setCode","value":"<string>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"8ab2414a-0637-4365-b9bb-82829265bd14","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"ea2d2ad8-d137-47e4-b82b-f18d92292fdc","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","copy"],"query":[{"key":"recursive","value":"false"},{"key":"setName","value":"<string>"},{"key":"setCode","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"minim_e97\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"amete77\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_3f9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": null,\n    \"compositionParents\": {\n      \"in_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Ut_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor_5ee\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aliqua_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"officia_ee9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"qui33\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"Excepteur_4ab\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"non9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"voluptate_bb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"nisi50\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea__\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minim4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"eiusmod_5\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"nostrud_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"qui_ef1\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": null,\n    \"compositionParents\": {\n      \"cupidatat52c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"in_7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"nonb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aliquip_9ea\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"sed_2a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"est_34\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aliquip68e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"fugiat_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"exercitation30a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"proidentf9f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laborum_280\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"Duis6bf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolorece\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"incididunt_c\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"dolor_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"adipisicing__db\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"Loremd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"in9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore07\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"deserunt5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sunt_330\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"nostrud7d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod36\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sunt_34\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"non_e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"incididunt_5c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"Ut_c3e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ex_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"voluptate38\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"consequat_2\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"eu93\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"autec\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"velit6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"nisi0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cupidatat_ab7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"Lorem_84\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"amet33\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"in895\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"occaecat_190\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"commodo_20\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"utf27\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_694\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"proident0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nulla59\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ut_646\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aute_fe4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"enim4a_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"nulla_5a_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"amet_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"culpab\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_f73\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"Duis17c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"occaecat58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n}"},{"id":"9a17e6f0-5267-4f74-8406-adf3a0665501","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","copy"],"query":[{"key":"recursive","value":"false"},{"key":"setName","value":"<string>"},{"key":"setCode","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"85429d0f-88ad-47be-b70d-423a4d5a21f2","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","copy"],"query":[{"key":"recursive","value":"false"},{"key":"setName","value":"<string>"},{"key":"setCode","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"bccb3f40-f09e-4cc2-8e21-67c5cf1ecbf8","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","copy"],"query":[{"key":"recursive","value":"false"},{"key":"setName","value":"<string>"},{"key":"setCode","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"c750bcf7-a5c9-42c8-9aca-1ffd22d2ffb2"},{"name":"Get entity hierarchy down","id":"0f1b19de-f681-4401-ac6b-d05e994965c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"ut8d\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"anim_3\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"magna_f10\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"ullamco_9be\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"Excepteurd\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"adipisicinga_e\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Gets the children of the given entity using nested entities. Only direct children are returned by default. Grandchildren and beyond can be fetched with the \"recursive\" query parameter. Note that the nested parent fields are not populated.</p>\n<p>Children can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["entities",":entityId","hierarchyDown"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to get composition and aggregations recursively</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"b351736c-733a-4fcf-a7a1-401d1c01172d","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"66c0c1ad-0c36-48ac-b7b6-2234ea898de5","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"entity\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"consectetur9d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam__0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"tempor_ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"mollit_e2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum0c7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ullamco6f5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"labore_c65\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"incididunt_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"nulla_6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"aliquaa6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore092\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nostrud56\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionParents\": {\n    \"id0\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"aliquipa10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliquip7be\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"exe7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nulla6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptate_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_d_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"dolor_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat93\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"fugiat_a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"sint_ea2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c84\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aliquipd\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"laboris_7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"non09a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"reprehenderit88\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"culpa_1e0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"esse_47\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationParents\": {\n    \"ad_64\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"Lorem_144\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nisi_d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"veniam_fe\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_ce\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"etac7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sinte\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"velit_04b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"minim1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"laborum5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"sed_f1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco_25\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"Excepteure01\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_53\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sint_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_cd4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"ipsumc1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_0d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionChildren\": {\n    \"consequat_b5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"nulla_a56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"quis_9_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_709\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat_0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliqua_e2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"minima1e\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing_f3_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"enim_f3\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"proidenta\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"elit_38\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ad2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"officia_a2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem1a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"magna_618\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Excepteur58\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"Excepteur1\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"ut10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_f5d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"est95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"id147\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consectetur_039\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sed792\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"irure_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"laboris_556\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"sedf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"dolor_7c5\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_842\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"exercitation_67\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proidentc\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"dolor_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"dolor_2e6\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"consequat__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_2f2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"ada\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"voluptate_e_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationChildren\": {\n    \"voluptate_c4\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"fugiat2_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_198\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ea_79\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sint_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"commodofac\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"deserunt_810\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptateaf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"amet_52\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n}"},{"id":"17fbde83-9750-49d1-8fca-7ff77a72fea3","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"1781de8d-5244-4002-91d5-fa9a1f930962","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3af9d353-bf1d-4fef-982d-b2e612c04ea0","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"0f1b19de-f681-4401-ac6b-d05e994965c2"},{"name":"Get entity hierarchy up","id":"fc287c7b-4f2a-4f8f-aca1-7724a5f5786f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Gets the parents of the given entity using nested entities. Only direct parents are returned by default. Grandparents and beyond can be fetched with the \"recursive\" query parameter. Note that the nested children fields are not populated.</p>\n<p>Children can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["entities",":entityId","hierarchyUp"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to get composition and aggregations recursively</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"81e7209b-012f-4514-ade9-e8346bd43595","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"b1a40122-63a3-473b-8c47-b636402ef9aa","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyUp"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"entity\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"consectetur9d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam__0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"tempor_ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"mollit_e2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum0c7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ullamco6f5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"labore_c65\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"incididunt_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"nulla_6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"aliquaa6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore092\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nostrud56\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionParents\": {\n    \"id0\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"aliquipa10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliquip7be\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"exe7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nulla6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptate_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_d_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"dolor_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat93\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"fugiat_a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"sint_ea2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c84\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aliquipd\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"laboris_7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"non09a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"reprehenderit88\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"culpa_1e0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"esse_47\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationParents\": {\n    \"ad_64\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"Lorem_144\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nisi_d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"veniam_fe\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_ce\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"etac7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sinte\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"velit_04b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"minim1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"laborum5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"sed_f1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco_25\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"Excepteure01\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_53\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sint_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_cd4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"ipsumc1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_0d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionChildren\": {\n    \"consequat_b5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"nulla_a56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"quis_9_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_709\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat_0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliqua_e2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"minima1e\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing_f3_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"enim_f3\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"proidenta\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"elit_38\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ad2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"officia_a2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem1a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"magna_618\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Excepteur58\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"Excepteur1\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"ut10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_f5d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"est95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"id147\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consectetur_039\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sed792\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"irure_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"laboris_556\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"sedf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"dolor_7c5\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_842\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"exercitation_67\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proidentc\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"dolor_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"dolor_2e6\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"consequat__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_2f2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"ada\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"voluptate_e_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationChildren\": {\n    \"voluptate_c4\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"fugiat2_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_198\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ea_79\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sint_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"commodofac\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"deserunt_810\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptateaf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"amet_52\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n}"},{"id":"43340f86-f047-4dd0-8177-4fbe4a13c573","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyUp"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"c91e60ef-cd22-4e09-a7e9-3f10a9b92bac","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyUp"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3ed75093-4e57-4afd-b043-b0e2329ac809","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyUp"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"fc287c7b-4f2a-4f8f-aca1-7724a5f5786f"},{"name":"Get entity hierarchy up and down","id":"48b035a5-b381-4d79-aef3-1f009d9923b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Gets the parents and children of the given entity using nested entities. Only direct parents and children are returned by default. Grandparents and grandchildren and beyond can be fetched with the \"recursive\" query parameter. Note that the nested children field is populated only for children and the nested parents for parents.</p>\n<p>With circular relations only one of the nested fields is populated randomly. The field may differ for each entity. In such cases the returned JSON should be manually altered to add references to both nested fields for each entity if the nested fields are to be directly used.</p>\n<p>Children can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["entities",":entityId","hierarchyUpDown"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to get composition and aggregations recursively</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"b4e0c603-1a17-485b-9936-b0946546b4f4","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"df3b1918-a5fb-48ae-a326-0bdb1067250d","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyUpDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"entity\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"consectetur9d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam__0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"tempor_ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"mollit_e2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum0c7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ullamco6f5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"labore_c65\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"incididunt_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"nulla_6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"aliquaa6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore092\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nostrud56\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionParents\": {\n    \"id0\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"aliquipa10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliquip7be\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"exe7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nulla6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptate_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_d_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"dolor_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat93\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"fugiat_a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"sint_ea2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c84\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aliquipd\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"laboris_7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"non09a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"reprehenderit88\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"culpa_1e0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"esse_47\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationParents\": {\n    \"ad_64\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"Lorem_144\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nisi_d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"veniam_fe\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_ce\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"etac7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sinte\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"velit_04b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"minim1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"laborum5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"sed_f1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco_25\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"Excepteure01\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_53\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sint_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_cd4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"ipsumc1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_0d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionChildren\": {\n    \"consequat_b5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"nulla_a56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"quis_9_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_709\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat_0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliqua_e2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"minima1e\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing_f3_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"enim_f3\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"proidenta\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"elit_38\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ad2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"officia_a2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem1a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"magna_618\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Excepteur58\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"Excepteur1\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"ut10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_f5d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"est95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"id147\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consectetur_039\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sed792\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"irure_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"laboris_556\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"sedf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"dolor_7c5\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_842\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"exercitation_67\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proidentc\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"dolor_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"dolor_2e6\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"consequat__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_2f2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"ada\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"voluptate_e_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationChildren\": {\n    \"voluptate_c4\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"fugiat2_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_198\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ea_79\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sint_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"commodofac\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"deserunt_810\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptateaf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"amet_52\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n}"},{"id":"d538f879-dc61-49e0-b431-efb591b6920a","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyUpDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"1199abdd-d834-41e2-82ac-f69f865671d6","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyUpDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"8938dfd3-bc8f-4a0f-bbd0-a54e4bca30f5","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","hierarchyUpDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"48b035a5-b381-4d79-aef3-1f009d9923b4"},{"name":"Move entity by id","id":"4c584859-07b4-4e83-809f-43c70fad32e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/move/:parentId?ignoreThumbnails=false","description":"<p>Changes an entity's aggregation parent into another</p>\n","urlObject":{"path":["entities",":entityId","move",":parentId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"811cefbb-a8c6-4381-9dce-1e4ddb4fa37c","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"},{"id":"61b75900-37f8-4f58-b77c-27d94275445c","description":{"content":"<p>(Required) The new aggregation parent</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"parentId"}]}},"response":[{"id":"08a89ca4-b446-4f19-ade0-28a3fe78b869","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"creatorId\": \"<string>\",\n  \"modifierId\": \"<string>\",\n  \"creatorName\": \"<string>\",\n  \"modifierName\": \"<string>\",\n  \"description\": \"<string,null>\",\n  \"creationTime\": \"<integer>\",\n  \"modificationTime\": \"<integer>\",\n  \"metadata\": {\n    \"adipisicing__98\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"in_31\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"veniam_21\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"blockedOperations\": {\n    \"OVERWRITE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"OVERWRITE_OTHERS\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"REVISE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    }\n  },\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"predecessorId\": \"<string,null>\",\n  \"successorId\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"fileName\": \"<string,null>\",\n  \"fileNameExtension\": \"<string,null>\",\n  \"fileMimeType\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"paths\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"compositionParents\": {\n    \"cupidatat_8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollitb2\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"esse05\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"laboris3b\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"cupidatat_02_\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"labore__8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"enim_6\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"dolore52\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"Ut_f__\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"mollit_f1\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"eu9e\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}"},{"id":"545bfa15-5d1f-4145-9c4b-0b5bad4f076a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2d77fb81-7da0-427e-91d3-63ebd416363e","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"42a35ada-6fce-4b76-81ec-8f13390f825d","name":"Entity has a composition parent, too many aggregation parents or the aggregation parent is already related to the entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"504cd09b-ebe9-43cd-9db2-bb8ce6a537fa","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"4c584859-07b4-4e83-809f-43c70fad32e0"}],"id":"6714823c-f538-42d5-beb1-8930d00428a4","_postman_id":"6714823c-f538-42d5-beb1-8930d00428a4","description":""},{"name":"code","item":[{"name":"Get the next code","id":"93df657c-346c-44b3-b52e-2f022ba58bff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/code/:type","description":"<p>Gets the next available code for the given entity type.</p>\n","urlObject":{"path":["entities","code",":type"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"58ddc256-0e6d-400d-9ecb-12b119a92754","description":{"content":"<p>(Required) The entity type to get the code for</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"type"}]}},"response":[{"id":"8ac2365d-e390-45b5-a0cd-31f86309ab9d","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/code/:type","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","code",":type"],"variable":[{"key":"type","value":"<string>","description":"(Required) The entity type to get the code for"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"<string>\""},{"id":"e2bf58a0-f644-4ed8-8f91-28fe8773a228","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/code/:type","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","code",":type"],"variable":[{"key":"type","value":"<string>","description":"(Required) The entity type to get the code for"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"93df657c-346c-44b3-b52e-2f022ba58bff"},{"name":"Check code usage","id":"855f7310-7ce5-4f1f-a266-0003deace837","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"type\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string,null>\"\n  },\n  {\n    \"type\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string,null>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/code/usage","description":"<p>Check whether the given type/code/revision combinations are in use or not. Also checks the recycle bin.</p>\n","urlObject":{"path":["entities","code","usage"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"c173093c-11c3-4b54-a86e-773641a0c3ad","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"type\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string,null>\"\n  },\n  {\n    \"type\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string,null>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/code/usage"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"typeCodeRevision\": {\n      \"type\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string,null>\"\n    },\n    \"exists\": \"<boolean>\"\n  },\n  {\n    \"typeCodeRevision\": {\n      \"type\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string,null>\"\n    },\n    \"exists\": \"<boolean>\"\n  }\n]"},{"id":"74fb497c-895c-4a76-8357-15d7afce2f85","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"type\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string,null>\"\n  },\n  {\n    \"type\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string,null>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/code/usage"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"8685a701-ba2c-4709-b575-36cabee563b7","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"type\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string,null>\"\n  },\n  {\n    \"type\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string,null>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/code/usage"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"855f7310-7ce5-4f1f-a266-0003deace837"}],"id":"475a0c82-c781-4679-86bc-32f69a7ca048","_postman_id":"475a0c82-c781-4679-86bc-32f69a7ca048","description":""},{"name":"recyclebin","item":[{"name":"{entityId}","item":[{"name":"restore","item":[{"name":"Restore entity","id":"85af99e2-49a2-4dec-bf5e-7f5bad6fc5d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/restore?recursive=false","description":"<p>Restore entity and its composition children by ID. Aggregation children can be restored with the \"recursive\" query parameter.</p>\n<p>Restored entities' relations are also restored. Revision data is only restored if the predecessor didn't receive any significant changes since the successor was deleted. Breaking changes include new successors, and file and relation changes.</p>\n","urlObject":{"path":["entities","recyclebin",":entityId","restore"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"}],"variable":[{"id":"a6bac195-371e-45b6-830c-32a755ad3a17","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"0c567570-fd3d-4b66-b4fa-8cbcf8a49343","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/restore?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","restore"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"9a8de80c-6497-4365-9fb1-b9d64cbadcb3","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/restore?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","restore"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"acbe8133-45db-4a9d-92fd-209ec6236845","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/restore?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","restore"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"85af99e2-49a2-4dec-bf5e-7f5bad6fc5d6"},{"name":"Get restore conflicts","id":"40b85bc8-159a-4616-ba28-1f5d86b945fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/restore/conflicts?recursive=false","description":"<p>Get all entities that would have a conflict when restoring. Conflicts can be caused by duplicate type, code and revision combinations or a modified predecessor.</p>\n","urlObject":{"path":["entities","recyclebin",":entityId","restore","conflicts"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"}],"variable":[{"id":"01e3089a-d4b5-4b9d-9a08-27ea1f6a315d","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"4b33a3ac-d5fb-475b-bc05-f232ea382332","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/restore/conflicts?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","restore","conflicts"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"176f1401-de99-40b7-9801-b24ccd307ca7","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/restore/conflicts?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","restore","conflicts"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"40b85bc8-159a-4616-ba28-1f5d86b945fc"}],"id":"ec891127-59e3-4774-823f-3928362eac76","_postman_id":"ec891127-59e3-4774-823f-3928362eac76","description":""},{"name":"Delete entity from recycle bin","id":"681a81d5-c8d8-467f-9347-717670450cf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId?recursive=false","description":"<p>Delete entity and its composition children by IDs from the recycle bin. Aggregation children can be deleted with the \"recursive\" query parameter.</p>\n","urlObject":{"path":["entities","recyclebin",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"}],"variable":[{"id":"eac83c9a-ad72-4750-8132-7c4a40dfb08a","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"c477d59a-ed91-48eb-bc2c-da5748ab4de2","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"blockedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"entitiesBelongingToNotDeletedHierarchies\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"entitiesWithNotDeletedSuccessors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"9d03db50-b664-4aac-b709-859a7d1863a7","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"94b56caa-78d7-42fe-ab2f-1a41daa001ac","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"e1e2cd32-f00f-4546-b766-37fe17044176","name":"A requested entity could not be deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"681a81d5-c8d8-467f-9347-717670450cf1"},{"name":"Get children count","id":"456df646-23ba-426a-8e17-7f53b7c0e22a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/childrenCount","description":"<p>Returns various kinds of children counts for the given entity.</p>\n","urlObject":{"path":["entities","recyclebin",":entityId","childrenCount"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"204b7ea4-8713-4034-9129-abc99c5a48fa","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"3031fe2b-bfa9-402f-821d-80e0e5bf9377","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","childrenCount"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"childrenCount\": \"<integer>\",\n  \"childrenWithoutOtherParentsCount\": \"<integer>\",\n  \"directCompositeChildrenCount\": \"<integer>\",\n  \"indirectCompositeChildrenRootsByTypesCount\": {\n    \"Excepteur_e\": \"<integer>\"\n  }\n}"},{"id":"87fc7f3c-e24f-4cc6-bfc2-738f11a84c6a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","childrenCount"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"9ab44864-b0c8-4ee3-a690-b22d9c80900f","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","childrenCount"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"456df646-23ba-426a-8e17-7f53b7c0e22a"},{"name":"Get time to live","id":"e36b20e2-16b2-45c3-832d-ea7b381f78e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/timeToLive","description":"<p>Get the time the entity has to live until it can be automatically deleted.</p>\n","urlObject":{"path":["entities","recyclebin",":entityId","timeToLive"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"0f27861c-ac29-4a83-92ea-14be831a172d","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"12eb8a4d-ec4e-4a67-8468-1de869500f80","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/timeToLive","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","timeToLive"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"<integer>\""},{"id":"19aac1af-c229-46bc-beb0-fa38a4138d83","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/timeToLive","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","timeToLive"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"db387a96-006c-4ce9-8c4d-6f974faae50d","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/:entityId/timeToLive","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin",":entityId","timeToLive"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"e36b20e2-16b2-45c3-832d-ea7b381f78e6"}],"id":"f940b4bd-3c1d-48e1-9bc9-e21c5af103a8","_postman_id":"f940b4bd-3c1d-48e1-9bc9-e21c5af103a8","description":""},{"name":"restore","item":[{"name":"Restore entities","id":"1790bca7-96dd-4cc9-8112-e77db10d6d8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ids\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"newCodesForConflictingIds\": {\n    \"sint_6\": \"<string>\",\n    \"in07c\": \"<string>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/restore?recursive=false","description":"<p>Restore entities and their composition children by ID. Aggregation children can be restored with the \"recursive\" query parameter.</p>\n<p>Restored entities' relations are also restored. Revision data is only restored if the predecessor didn't receive any significant changes since the successor was deleted. Breaking changes include new successors, and file and relation changes.</p>\n<p>Restored entities with the same type, code and revision as an existing entity get generated new codes. Instead of receiving generated codes they can be set with the newCodesForConflictingIds field.</p>\n","urlObject":{"path":["entities","recyclebin","restore"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"}],"variable":[]}},"response":[{"id":"75027801-b9e5-4e34-bd32-f7eb7656c4c6","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/restore?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","restore"],"query":[{"key":"recursive","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"8e441842-69d1-41ac-aa5d-87c9950ceffa","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/restore?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","restore"],"query":[{"key":"recursive","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"1790bca7-96dd-4cc9-8112-e77db10d6d8a"},{"name":"Get restore conflicts","id":"c74d0462-e387-41ba-a09d-53a845a8671c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/restore/conflicts?recursive=false","description":"<p>Get all entities that would have a conflict when restoring. Conflicts can be caused by duplicate type, code and revision combinations or a modified predecessor.</p>\n","urlObject":{"path":["entities","recyclebin","restore","conflicts"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"}],"variable":[]}},"response":[{"id":"c2e93038-ceb7-4d13-85d1-ecbd9b7a3bb2","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/restore/conflicts?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","restore","conflicts"],"query":[{"key":"recursive","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"b6655643-b621-4f1e-881a-e09e3602f2c5","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/restore/conflicts?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","restore","conflicts"],"query":[{"key":"recursive","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"c74d0462-e387-41ba-a09d-53a845a8671c"}],"id":"e205897f-d4fe-47f8-ae24-b26e1a6e717e","_postman_id":"e205897f-d4fe-47f8-ae24-b26e1a6e717e","description":""},{"name":"Delete entities from recycle bin","id":"4c09cd00-bd85-432d-8166-7af3046edde6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin?recursive=false","description":"<p>Delete entities and their composition children by IDs from the recycle bin. Aggregation children can be deleted with the \"recursive\" query parameter.</p>\n","urlObject":{"path":["entities","recyclebin"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"}],"variable":[]}},"response":[{"id":"efe6c83b-cd93-4c67-a777-ac87b874290d","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin"],"query":[{"key":"recursive","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"blockedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"entitiesBelongingToNotDeletedHierarchies\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"entitiesWithNotDeletedSuccessors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"5fcf4cea-1c27-450c-a29f-28ab5cda8559","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin"],"query":[{"key":"recursive","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"f35f85a4-48e8-4735-b244-4feb314f19f0","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin"],"query":[{"key":"recursive","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"cde0cb26-c332-4398-b732-ed7cefcbc1de","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin"],"query":[{"key":"recursive","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"24f42154-5f37-4523-b9c3-5b331e5a54aa","name":"A requested entity could not be deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin"],"query":[{"key":"recursive","value":"false"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"4c09cd00-bd85-432d-8166-7af3046edde6"},{"name":"Search entities from recycle bin","id":"24cdeac0-027e-4347-a7ce-f7b0abd753b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Search, find and filter entities with pagination from recycle bin.</p>\n<p>Entities can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n<p>Pagination can be done via the skip and limit parameters.</p>\n","urlObject":{"path":["entities","recyclebin","search"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to return entity paths</p>\n","type":"text/plain"},"key":"getEntityPaths","value":"false"},{"description":{"content":"<p>How many entities to skip</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>How many entities to return</p>\n","type":"text/plain"},"key":"limit","value":"false"},{"description":{"content":"<p>What field to sort by</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>What direction to sort</p>\n","type":"text/plain"},"key":"sortDir","value":"<string>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"eb73f7d3-b6cd-49c5-990c-7a8a0e5c42de","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"proident_b5\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"REVISE_EVERYONE\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"compositionParents\": {\n      \"qui_e9\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"minim40\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"ex_91e\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"officia_f\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"aggregationParents\": {\n      \"nisi__5\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"cupidatatb\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"compositionChildren\": {\n      \"ipsum4_c\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"culpa_b_b\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"aggregationChildren\": {\n      \"officia_5\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"associations\": {\n      \"sed55\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"ea_c\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"utbbf\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"specialData\": {\n      \"deletionTime\": \"<integer>\"\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"Excepteur_6d\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"nostrud_c\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"REVISE_EVERYONE\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"compositionParents\": {\n      \"reprehenderit4\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"sintb4\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"ullamco_f0_\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"ead\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"aggregationParents\": {\n      \"dolore_924\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"compositionChildren\": {\n      \"ad_fc2\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"pariatur1b\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"aggregationChildren\": {\n      \"ut_1cb\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"associations\": {\n      \"laborum_c_\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"fugiat6e\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"specialData\": {\n      \"deletionTime\": \"<integer>\"\n    }\n  }\n]"},{"id":"f1797457-9805-471e-9409-839260f50ae4","name":"No entities found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"0677af7c-fffe-4237-be4e-92a5721b478f","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"44fce0ea-c6d3-48b9-a4bf-5a04d19f556c","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"24cdeac0-027e-4347-a7ce-f7b0abd753b9"},{"name":"Get search result data from recycle bin","id":"cef957f7-6ce7-43c8-83ae-215dc1de4810","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","description":"<p>Get various data related to a normal search result in recycle bin. Uses the same as query parameters and body as the normal search. Mainly differs by the return value and some query parameters.</p>\n<p>Entities can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["entities","recyclebin","searchResultData"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return all unique labels found in the result set</p>\n","type":"text/plain"},"key":"getLabelsInResult","value":"false"},{"description":{"content":"<p>Whether to return all unique types found in the result set</p>\n","type":"text/plain"},"key":"getTypesInResult","value":"false"},{"description":{"content":"<p>Whether to get the amount of matched entities</p>\n","type":"text/plain"},"key":"getSearchCount","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"}],"variable":[]}},"response":[{"id":"910362c6-950b-42dc-b069-95ab196e573c","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"entityCount\": \"<integer>\",\n  \"labelsInResult\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"typesInResult\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"1a51eded-9e1a-4056-aafe-f1cefb1eddae","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"31de8472-08b0-47e4-9966-40b2b4f06dbd","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","recyclebin","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cef957f7-6ce7-43c8-83ae-215dc1de4810"},{"name":"Empty recycle bin","id":"6552028a-32ca-45ea-bf1e-6fa114e114f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/all","description":"<p>Delete all entities from the recycle bin.</p>\n","urlObject":{"path":["entities","recyclebin","all"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"fc246334-5dc0-4003-b7d8-88ea56eeabef","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/all"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1f0bf315-d064-4057-bf74-bdc2fab10d03","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/recyclebin/all"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6552028a-32ca-45ea-bf1e-6fa114e114f8"}],"id":"a3aa0d41-de65-4481-8937-9d72110b0ade","_postman_id":"a3aa0d41-de65-4481-8937-9d72110b0ade","description":""},{"name":"labels","item":[{"name":"{labelName}","item":[{"name":"Find label by name","id":"669afe3d-56f6-425c-af20-c4e0807c0ec0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","urlObject":{"path":["entities","labels",":labelName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"0d430e91-c348-4aad-8bbf-dfb692aad768","description":{"content":"<p>(Required) The label name to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"labelName"}]}},"response":[{"id":"5a1713d3-fe4c-43da-b3b3-af01789ff896","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"<string,null>\",\n  \"description\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}"},{"id":"155b4186-bf14-4943-ac80-bdc26c84c9dc","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"871f4d24-c848-4ef2-81ba-b447bd2a81fb","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"669afe3d-56f6-425c-af20-c4e0807c0ec0"},{"name":"Update label","id":"142cc06d-5552-4fdd-b41c-d344093d58b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string,null>\",\n  \"description\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","description":"<p>Updates label. If the entity is used by entities or autolabeling entries and the name is modified all entities and autolabeling entries using the label are also modified. Quite unperformant.</p>\n","urlObject":{"path":["entities","labels",":labelName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"82f3556b-a2b6-4186-aaee-257416876214","description":{"content":"<p>(Required) The label name to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"labelName"}]}},"response":[{"id":"745df618-ef34-4f8c-bb88-02b9c893299c","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string,null>\",\n  \"description\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"<string,null>\",\n  \"description\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}"},{"id":"3cb59b96-ee2a-4d04-8fc1-5f75cb474a7f","name":"Invalid label name","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string,null>\",\n  \"description\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"c6d198a7-6dd8-4b29-8c3a-4d80afdebfce","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string,null>\",\n  \"description\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3d487a72-0bdc-4a27-8de3-6b72aa9be4ca","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string,null>\",\n  \"description\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"7f097017-e293-40b0-ae4e-87201de86ebd","name":"Duplicate label name","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string,null>\",\n  \"description\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"142cc06d-5552-4fdd-b41c-d344093d58b4"},{"name":"Delete label","id":"cde6b533-7aa1-4c23-b94f-2f584593f4cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName?replacementLabel=<boolean>","description":"<p>Delete label by name. All entities and autolabeling entries using the label are updated to not use the label.</p>\n","urlObject":{"path":["entities","labels",":labelName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>New label to add to all entities that were using the deleted label</p>\n","type":"text/plain"},"key":"replacementLabel","value":"<boolean>"}],"variable":[{"id":"bc9fe703-b885-4e6c-8d6a-d10f80c70ad5","description":{"content":"<p>(Required) The label name to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"labelName"}]}},"response":[{"id":"5ec408b2-1f07-4460-b035-f379368df572","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName?replacementLabel=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"query":[{"key":"replacementLabel","value":"<boolean>"}],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f3b158cb-299f-4b71-a971-22ed973b3c93","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName?replacementLabel=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"query":[{"key":"replacementLabel","value":"<boolean>"}],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"9f9a5aa9-4f71-493b-a7f3-058ec0ae2321","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName?replacementLabel=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName"],"query":[{"key":"replacementLabel","value":"<boolean>"}],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"cde6b533-7aa1-4c23-b94f-2f584593f4cc"},{"name":"Get reference count of label","id":"7d1eacdf-a885-4d65-85a9-e546abda83bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName/referenceCount","description":"<p>Returns amount of items that use this label</p>\n","urlObject":{"path":["entities","labels",":labelName","referenceCount"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"5aa3159a-7a00-4b9c-bd28-c36cc9c75daa","description":{"content":"<p>(Required) The label name to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"labelName"}]}},"response":[{"id":"26a4bcdb-42de-4037-b666-8bfadb0e138a","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName/referenceCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName","referenceCount"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"entityCount\": \"<integer>\",\n  \"autoLabelCount\": \"<integer>\"\n}"},{"id":"faa487b8-900f-42ae-aac0-387915c3bfdf","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName/referenceCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName","referenceCount"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c37bb6d6-7e53-4e8f-a3ce-79ea781cfb69","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels/:labelName/referenceCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels",":labelName","referenceCount"],"variable":[{"key":"labelName","value":"<string>","description":"(Required) The label name to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"7d1eacdf-a885-4d65-85a9-e546abda83bd"}],"id":"d20136d3-b275-4b96-a041-0c61a0fecc3a","_postman_id":"d20136d3-b275-4b96-a041-0c61a0fecc3a","description":""},{"name":"Find all labels","id":"547f02f6-104d-4474-9285-40c004c3cd0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/labels?onlyActive=false","urlObject":{"path":["entities","labels"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return only active labels</p>\n","type":"text/plain"},"key":"onlyActive","value":"false"}],"variable":[]}},"response":[{"id":"addc4696-0456-4b04-b858-42e549e7d942","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels?onlyActive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels"],"query":[{"key":"onlyActive","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]"},{"id":"a67afbd5-1b11-4a83-a48e-8127303f276a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/labels?onlyActive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","labels"],"query":[{"key":"onlyActive","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"547f02f6-104d-4474-9285-40c004c3cd0f"},{"name":"Create labels","id":"6c7ab0a8-fbe0-4bce-b2d5-06cc0149b321","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/labels","urlObject":{"path":["entities","labels"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"46759fcc-f9af-4775-88c2-520054f9ab8c","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/labels"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]"},{"id":"09b2394f-053f-4c7b-80b1-ad6e9604d860","name":"Invalid label name","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/labels"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"116341ed-3d7e-4552-a229-c4a14c6d7d49","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/labels"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"30c9f7ba-b4ca-42cb-adf5-a7f622062764","name":"Duplicate label name","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"name\": \"<string,null>\",\n    \"description\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/labels"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"6c7ab0a8-fbe0-4bce-b2d5-06cc0149b321"}],"id":"55111083-6a9b-4ccd-bb21-fcf219493e86","_postman_id":"55111083-6a9b-4ccd-bb21-fcf219493e86","description":""},{"name":"autolabeling","item":[{"name":"{autolabelEntryId}","item":[{"name":"Update autolabeling entry","id":"0e99127e-d220-49c1-bccd-4a0f0c78ce7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"<string>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"rules\": [\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  ],\n  \"id\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling/:autolabelEntryId","urlObject":{"path":["entities","autolabeling",":autolabelEntryId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"ca14188e-4c2c-43a6-8867-5cb4b1392357","description":{"content":"<p>(Required) The autolabel entry to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"autolabelEntryId"}]}},"response":[{"id":"e82aee1b-8eff-4fda-9f60-7e3af28226f7","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"<string>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"rules\": [\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  ],\n  \"id\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling/:autolabelEntryId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","autolabeling",":autolabelEntryId"],"variable":[{"key":"autolabelEntryId","value":"<string>","description":"(Required) The autolabel entry to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"description\": \"<string>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"rules\": [\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  ],\n  \"id\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}"},{"id":"0b948989-956e-4c21-abee-4aa63578d49e","name":"Invalid rules or labels","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"<string>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"rules\": [\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  ],\n  \"id\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling/:autolabelEntryId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","autolabeling",":autolabelEntryId"],"variable":[{"key":"autolabelEntryId","value":"<string>","description":"(Required) The autolabel entry to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"a1db5003-9ba7-47ea-a2f6-ebb27cec2c33","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"<string>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"rules\": [\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  ],\n  \"id\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling/:autolabelEntryId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","autolabeling",":autolabelEntryId"],"variable":[{"key":"autolabelEntryId","value":"<string>","description":"(Required) The autolabel entry to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2ff0a833-930d-4614-888f-dad9c9379fc7","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"<string>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"rules\": [\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  ],\n  \"id\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling/:autolabelEntryId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","autolabeling",":autolabelEntryId"],"variable":[{"key":"autolabelEntryId","value":"<string>","description":"(Required) The autolabel entry to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"0e99127e-d220-49c1-bccd-4a0f0c78ce7f"},{"name":"Delete autolabeling entry","id":"da15071b-4fca-4aee-919c-e590c1d22881","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling/:autolabelEntryId","urlObject":{"path":["entities","autolabeling",":autolabelEntryId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"b587681f-b98b-4f45-9918-59c0eef278a6","description":{"content":"<p>(Required) The autolabel entry to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"autolabelEntryId"}]}},"response":[{"id":"cc6a5e50-5603-4394-93a3-10511d2396b7","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling/:autolabelEntryId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","autolabeling",":autolabelEntryId"],"variable":[{"key":"autolabelEntryId","value":"<string>","description":"(Required) The autolabel entry to use"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1dbb68bd-cac3-4f2b-ba83-ffbd4867812b","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling/:autolabelEntryId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","autolabeling",":autolabelEntryId"],"variable":[{"key":"autolabelEntryId","value":"<string>","description":"(Required) The autolabel entry to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"da15071b-4fca-4aee-919c-e590c1d22881"}],"id":"489c344c-9b26-461d-af7a-8d200d2067ef","_postman_id":"489c344c-9b26-461d-af7a-8d200d2067ef","description":""},{"name":"Find all autolabeling entries","id":"12b2f155-fa09-44bd-a35d-8f244a3e7da9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling","urlObject":{"path":["entities","autolabeling"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"f20fde59-755c-40ea-abd3-fb91fd5d874b","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"id\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"id\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]"},{"id":"25348434-ae85-4430-8920-abf512cc3119","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"12b2f155-fa09-44bd-a35d-8f244a3e7da9"},{"name":"Create autolabeling entries","id":"d1f5f61d-b7f3-4a19-8a48-9e60ca648062","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  },\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling","urlObject":{"path":["entities","autolabeling"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"cb0da5d2-00ba-4ce1-8d6c-dcb7dfd65907","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  },\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"id\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  },\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ],\n    \"id\": \"<string>\",\n    \"isActive\": \"<boolean>\",\n    \"modificationCount\": \"<integer>\"\n  }\n]"},{"id":"19255c91-9ac3-494a-8c6c-b0a5d08b1b5a","name":"Invalid rules or labels","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  },\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"0500ea8b-c325-40b6-ba8c-8e4b0d640857","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  },\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e9e12e93-38d3-4a12-9340-8633fe1eae89","name":"Duplicate entry id","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  },\n  {\n    \"description\": \"<string>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"rules\": [\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    ]\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/autolabeling"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"d1f5f61d-b7f3-4a19-8a48-9e60ca648062"}],"id":"56cc69ee-8ec4-4ed7-88c0-95e638237981","_postman_id":"56cc69ee-8ec4-4ed7-88c0-95e638237981","description":""},{"name":"access","item":[{"name":"{entityId}","item":[{"name":"Get access object","id":"ba8810b1-985f-4ff1-a1c6-2664393e6e89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId","urlObject":{"path":["entities","access",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"684af0fa-02d3-491a-9221-7542eda4e154","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"249c8c94-cad0-46d3-a84d-9bec502cfa8b","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","access",":entityId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"modifiableAccesses\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"inheritedAccesses\": {\n    \"amet_a\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"dolore1\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n}"},{"id":"be46537b-e646-4c49-bffa-049072078882","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","access",":entityId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"6206861f-af51-4567-9d70-60fe8df3d98e","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","access",":entityId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"ba8810b1-985f-4ff1-a1c6-2664393e6e89"},{"name":"Update access object","id":"d73b46e4-d7bd-4379-b19d-7d03ae1fde6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"modifiableAccesses\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId?recursive=false","description":"<p>Update access object by entity ID. The entity's composition children and parents, and its predecessors inherit the accesses. The same changes the targeted access object received can be applied to the aggregation children with the \"recursive\" query parameter.</p>\n","urlObject":{"path":["entities","access",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"}],"variable":[{"id":"93187cda-02bc-4a83-836c-311dbe97e798","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"48c4b61b-dbf8-44aa-afc0-ca50e2cb556d","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"modifiableAccesses\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","access",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"description\": \"<string>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"rules\": [\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    },\n    {\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  ],\n  \"id\": \"<string>\",\n  \"isActive\": \"<boolean>\",\n  \"modificationCount\": \"<integer>\"\n}"},{"id":"3dc785cc-60a5-4d57-9c62-8881c4f997ad","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"modifiableAccesses\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","access",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"5b7a6ccc-0547-4b3d-906d-f6bafbb4440a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"modifiableAccesses\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","access",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"ecd894eb-afe1-4f90-89b5-17da4b5884c1","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"modifiableAccesses\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","access",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"9a6ec203-2626-407d-8362-b215ba40fb12","name":"Can not change accesses of a predecessor","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"modifiableAccesses\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/access/:entityId?recursive=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","access",":entityId"],"query":[{"key":"recursive","value":"false"}],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"d73b46e4-d7bd-4379-b19d-7d03ae1fde6c"}],"id":"48111653-f8eb-4ca5-9b59-6fd53fd38b5e","_postman_id":"48111653-f8eb-4ca5-9b59-6fd53fd38b5e","description":""},{"name":"accessCheck","item":[{"name":"Check access to any entity","id":"c1505bc4-ffe8-48cf-8601-f3f60f211301","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck","description":"<p>Check access to any entity. It is enough for just one of the entities to grant access to return success.</p>\n","urlObject":{"path":["entities","access","accessCheck"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"f784a757-a13f-4e97-9abf-bb308a06db7e","name":"Access granted","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d9357be2-9255-4a77-82f0-d678e6519302","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"b9df1936-5c4f-4adb-a276-c81a2a97e030","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"cfa3ae01-4189-4fda-a1b4-0bb6e4276d50","name":"Access not granted","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"c1505bc4-ffe8-48cf-8601-f3f60f211301"},{"name":"Check access for entity groups","id":"9b25f9f2-b7ff-49da-87ee-3fbc0b93a9b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sint_e4\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck/multi","description":"<p>Check access to multiple groups of entities. In each group it is enough for just one of the entities to grant access to return success.</p>\n","urlObject":{"path":["entities","access","accessCheck","multi"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"044ac45d-6d5f-4791-ace9-71ba97eb4ee6","name":"Access granted to all","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"dolore_db\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fugiat_c90\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck/multi"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"85b8b6fc-072e-40a6-8cbd-f2249492f1b6","name":"Access not granted to all","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"dolore_db\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fugiat_c90\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck/multi"},"status":"Multi-Status (WebDAV) (RFC 4918)","code":207,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"data\": \"<string>\"\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"data\": \"<string>\"\n  }\n]"},{"id":"2c8f49d3-a9fe-49ab-801a-845d9a25d30c","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"dolore_db\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fugiat_c90\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck/multi"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"06756018-6fcf-476e-ad0e-071f65bcecb4","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"dolore_db\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fugiat_c90\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/access/accessCheck/multi"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9b25f9f2-b7ff-49da-87ee-3fbc0b93a9b0"}],"id":"53d586a9-f6fd-4de9-91a2-c9eb3f8ed2eb","_postman_id":"53d586a9-f6fd-4de9-91a2-c9eb3f8ed2eb","description":""}],"id":"1971b9d4-fadb-4e57-9863-24d0de90d48d","_postman_id":"1971b9d4-fadb-4e57-9863-24d0de90d48d","description":""},{"name":"shares","item":[{"name":"{entityId}","item":[{"name":"{shareId}","item":[{"name":"Update share for an entity","id":"b67d4a76-096f-44b5-baf6-19751a4eeef4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"expirationTime\": \"<integer,null>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId/:shareId","urlObject":{"path":["entities","shares",":entityId",":shareId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"27038c9f-35e7-4ab4-a223-af4db1a02e24","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"},{"id":"129a1b5e-ed59-4b6d-bc20-e3cbe48a0ec9","description":{"content":"<p>(Required) The share id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"shareId"}]}},"response":[{"id":"986f7fb2-8f98-4867-9dd4-ae2c644ba889","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"expirationTime\": \"<integer,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId/:shareId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId",":shareId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"shareId","value":"<string>","description":"(Required) The share id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"creationTime\": \"<integer>\",\n  \"expirationTime\": \"<integer,null>\"\n}"},{"id":"63cb2d2f-3c66-494a-92cc-1a24988ae569","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"expirationTime\": \"<integer,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId/:shareId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId",":shareId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"shareId","value":"<string>","description":"(Required) The share id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"b67d4a76-096f-44b5-baf6-19751a4eeef4"},{"name":"Delete share for an entity","id":"648748b5-53f2-4d44-89ee-fd0907ac41d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId/:shareId","urlObject":{"path":["entities","shares",":entityId",":shareId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"763f7468-ab11-484c-a3e8-83a3395f7121","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"},{"id":"d5c4d3ec-06fd-4d83-ac83-6e3d13cffecd","description":{"content":"<p>(Required) The share id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"shareId"}]}},"response":[{"id":"97f1f618-13fa-44ab-9b1a-8ed9a4dc3c2a","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId/:shareId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId",":shareId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"shareId","value":"<string>","description":"(Required) The share id to use"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"5ef6e569-8b9b-403d-ac28-7e837a823709","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId/:shareId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId",":shareId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"shareId","value":"<string>","description":"(Required) The share id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"648748b5-53f2-4d44-89ee-fd0907ac41d3"}],"id":"af0d6701-c2aa-4953-b99a-756e627e4126","_postman_id":"af0d6701-c2aa-4953-b99a-756e627e4126","description":""},{"name":"Find all shares for an entity","id":"4a7dd2a3-05a2-4291-a25b-5ccef7d59ea1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId","urlObject":{"path":["entities","shares",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"504da9a6-a203-4fa5-86ec-86165685234b","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"10d64a6c-dedf-4e5c-8798-40339b5d7209","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"creationTime\": \"<integer>\",\n    \"expirationTime\": \"<integer,null>\"\n  },\n  {\n    \"id\": \"<string>\",\n    \"creationTime\": \"<integer>\",\n    \"expirationTime\": \"<integer,null>\"\n  }\n]"},{"id":"fa4cae07-4806-4f73-9886-8273015be66a","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"4a7dd2a3-05a2-4291-a25b-5ccef7d59ea1"},{"name":"Create share for an entity","id":"33fea847-8546-48d2-a9c7-2ed7af7f3a70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"expirationTime\": \"<integer,null>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId","urlObject":{"path":["entities","shares",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"43218830-ed0a-4fbd-adb8-99eb9cb8d36f","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"14cee612-e74c-4ecf-8de3-f38428b86300","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"expirationTime\": \"<integer,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"creationTime\": \"<integer>\",\n  \"expirationTime\": \"<integer,null>\"\n}"},{"id":"28a15dfd-2d5d-43ac-9960-979f8893b792","name":"Expiration date is set to the past","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"expirationTime\": \"<integer,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"85b20023-15fd-4908-b40b-ed80b42601db","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"expirationTime\": \"<integer,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:entityId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":entityId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"33fea847-8546-48d2-a9c7-2ed7af7f3a70"}],"id":"380bde66-fdaf-4ae3-9de6-c8a78ef1e1fa","_postman_id":"380bde66-fdaf-4ae3-9de6-c8a78ef1e1fa","description":""},{"name":"Get entity via share","id":"4fdddc51-e151-4a56-97ad-dfe1e78d79b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/shares/:tenant/:entityId/:shareId","description":"<p>Get entity via share from the specified tenant. Does not require authentication.</p>\n","urlObject":{"path":["entities","shares",":tenant",":entityId",":shareId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"fff4d795-c557-4f29-b091-6f734a830dca","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"},{"id":"d2c2ce47-8155-40eb-bb82-16cea1276990","description":{"content":"<p>(Required) The share id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"shareId"},{"id":"960d09c7-e6ee-490e-b6cc-05827919af13","description":{"content":"<p>(Required) The tenant to fetch the entity from</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"tenant"}]}},"response":[{"id":"91ce12a2-dd96-4309-8fd9-b6d0a43d1f91","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:tenant/:entityId/:shareId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":tenant",":entityId",":shareId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"shareId","value":"<string>","description":"(Required) The share id to use"},{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the entity from"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"creatorId\": \"<string>\",\n  \"modifierId\": \"<string>\",\n  \"creatorName\": \"<string>\",\n  \"modifierName\": \"<string>\",\n  \"description\": \"<string,null>\",\n  \"creationTime\": \"<integer>\",\n  \"modificationTime\": \"<integer>\",\n  \"metadata\": {\n    \"adipisicing__98\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"in_31\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"veniam_21\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"blockedOperations\": {\n    \"OVERWRITE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"OVERWRITE_OTHERS\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"REVISE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    }\n  },\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"predecessorId\": \"<string,null>\",\n  \"successorId\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"fileName\": \"<string,null>\",\n  \"fileNameExtension\": \"<string,null>\",\n  \"fileMimeType\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"paths\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"compositionParents\": {\n    \"cupidatat_8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollitb2\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"esse05\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"laboris3b\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"cupidatat_02_\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"labore__8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"enim_6\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"dolore52\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"Ut_f__\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"mollit_f1\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"eu9e\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}"},{"id":"56ae0927-244b-4846-8829-a09085df7213","name":"Tenant does not exist","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:tenant/:entityId/:shareId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":tenant",":entityId",":shareId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"shareId","value":"<string>","description":"(Required) The share id to use"},{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the entity from"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c95e291c-07fc-4358-bed1-774db0f96042","name":"The share has expired","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:tenant/:entityId/:shareId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":tenant",":entityId",":shareId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"shareId","value":"<string>","description":"(Required) The share id to use"},{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the entity from"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f796df76-ee5a-4f57-ae4d-017d925e4a39","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/shares/:tenant/:entityId/:shareId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","shares",":tenant",":entityId",":shareId"],"variable":[{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"shareId","value":"<string>","description":"(Required) The share id to use"},{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the entity from"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"4fdddc51-e151-4a56-97ad-dfe1e78d79b4"}],"id":"3207b273-ee5a-4e7a-83ca-3325c40b6977","_postman_id":"3207b273-ee5a-4e7a-83ca-3325c40b6977","description":""},{"name":"Check readiness of the service","id":"06b1298b-4cd6-4dd6-9ac6-be2d2fbde5d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/entities","urlObject":{"path":["entities"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"cf322198-6ed1-4ba6-bf42-7708f6157563","name":"Service alive and well","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/entities"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"06b1298b-4cd6-4dd6-9ac6-be2d2fbde5d1"},{"name":"Create new entities","id":"1dda9340-647a-4a5e-9c3c-15f119809100","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"entity\": \"<object>\",\n    \"attachFile\": \"<boolean>\",\n    \"attachPreviewFile\": \"<string>\"\n  },\n  {\n    \"entity\": \"<object>\",\n    \"attachFile\": \"<boolean>\",\n    \"attachPreviewFile\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","description":"<p>Creates new entities and their files. Relations to other entities may also be added.</p>\n","urlObject":{"path":["entities"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to overwrite parents. For entities with lots of parents it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateParents","value":"<boolean>"},{"description":{"content":"<p>Whether to overwrite children. For entities with lots of children it may be useful to set this to false and not send the children fields.</p>\n","type":"text/plain"},"key":"updateChildren","value":"true"},{"description":{"content":"<p>Whether to overwrite associations. For entities with lots of associations it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateAssociations","value":"true"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"a4a674a1-6722-4678-a11d-dad9dc3368d5","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"78d2d43f-d9be-4479-9978-d04e6fbb4fd9","name":"Malformatted data or invalid name, type, relations, labels or combination of attachFile and attachPreviewFile","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"1e374464-adf0-4856-916b-df82ef1e4a3b","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"027e13b3-9bdc-4e69-a9bd-a959466a741f","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"1103939c-9165-4056-b3ed-c7710bda2a3c","name":"Duplicate ID or type and code, or blocked related entities","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"3bc4e917-09b0-4a50-8cf1-5e781f5304ce","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"1dda9340-647a-4a5e-9c3c-15f119809100"},{"name":"Update entities","id":"79242aad-443b-42b7-837d-7879f4a12133","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"nisi__1\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"elit_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aliquipe51\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"enim27e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"in_5c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"cupidatat_a1a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"reprehenderit0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"cillum_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"et_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"aliquip065\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum9f4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"eu_1\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"cillum3c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"commodoe56\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"amet4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"ipsum_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"amet_5a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"Lorem_53c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quic2e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estee6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","description":"<p>Update entities' modifiable data. All fields of provided entities are overwritten. Relations to other entities may also be added or removed.</p>\n","urlObject":{"path":["entities"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to overwrite parents. For entities with lots of parents it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateParents","value":"<boolean>"},{"description":{"content":"<p>Whether to overwrite children. For entities with lots of children it may be useful to set this to false and not send the children fields.</p>\n","type":"text/plain"},"key":"updateChildren","value":"true"},{"description":{"content":"<p>Whether to overwrite associations. For entities with lots of associations it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateAssociations","value":"true"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"903f6d99-a369-4964-aacc-e0e3071911a3","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"eiusmode\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"estf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"in0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"sit_e6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"adipisicing06\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"doc3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"sunt_a2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud_f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"irure_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliquip71b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"id66\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"laboris_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"id_30\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"enim2c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"et7d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"et_ff\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit4_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sint_95\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolorb2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit__0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"sint0ca\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"magna27\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"elit_c8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"magna3e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"adc3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"magna_8_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"7a78aded-1eac-4d23-beed-a7f858db2581","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"45e8c07d-1f1c-45aa-8505-dbf595462dec","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"5628e27f-44f6-4aa1-a1de-b429d7a3cc89","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"493aa133-58d1-42a4-ad36-993530f42a92","name":"Wrong modificationCount or the given entity or an added or removed composition parent, child or aggregation parent was blocked","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"79242aad-443b-42b7-837d-7879f4a12133"},{"name":"Delete entities","id":"f591de9d-6f83-43e0-9b9f-5bfa0aea32a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities?recursive=false&deletePermanently=true","description":"<p>Delete entities and their composition children by IDs. Aggregation children can be deleted with the \"recursive\" query parameter. By default the deleted entities are only moved to the recycle bin.</p>\n","urlObject":{"path":["entities"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Whether to delete the entities permanently instead of moving them to the recycle bin</p>\n","type":"text/plain"},"key":"deletePermanently","value":"true"}],"variable":[]}},"response":[{"id":"0da0c91f-d7d9-4f8f-87b3-38ebf535fe40","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?recursive=false&deletePermanently=true","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"recursive","value":"false"},{"key":"deletePermanently","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"blockedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"entitiesBelongingToNotDeletedHierarchies\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"entitiesWithNotDeletedSuccessors\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"fe804980-b46c-4b73-aec9-fb498a264b61","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?recursive=false&deletePermanently=true","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"recursive","value":"false"},{"key":"deletePermanently","value":"true"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b0bf94e0-7523-40e7-a3ce-a666af18400d","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?recursive=false&deletePermanently=true","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"recursive","value":"false"},{"key":"deletePermanently","value":"true"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"7a9c113c-f44b-4d30-b7e6-2542ac3ad2bf","name":"A requested entity could not be deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities?recursive=false&deletePermanently=true","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities"],"query":[{"key":"recursive","value":"false"},{"key":"deletePermanently","value":"true"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"f591de9d-6f83-43e0-9b9f-5bfa0aea32a9"},{"name":"Find all entity types","id":"aabb499f-d9a6-4bb8-945d-ee795dabc650","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entities/types?existing=false","description":"<p>Find all available or in use entity types.</p>\n","urlObject":{"path":["entities","types"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to only retrieve the entity types that have been used</p>\n","type":"text/plain"},"key":"existing","value":"false"}],"variable":[]}},"response":[{"id":"32a0733d-ff04-4bb8-9d1e-c319468504fa","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/types?existing=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","types"],"query":[{"key":"existing","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"<string>\",\n  \"<string>\"\n]"},{"id":"2858d121-5c4c-4b32-bec7-d077d232feef","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/types?existing=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","types"],"query":[{"key":"existing","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"67b168ed-32ac-4a0e-98c5-8922cc3da65f","name":"No entity types found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/types?existing=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","types"],"query":[{"key":"existing","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"aabb499f-d9a6-4bb8-945d-ee795dabc650"},{"name":"Check whether entities exist","id":"f7312775-5df0-4d4b-86d3-58e02f5724c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/exists?checkRecycleBin=false","description":"<p>Check whether entities exist by given entity IDs.</p>\n","urlObject":{"path":["entities","exists"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Check existence also from recycle bin</p>\n","type":"text/plain"},"key":"checkRecycleBin","value":"false"}],"variable":[]}},"response":[{"id":"2b7803dc-d57e-4697-a6e5-52d84c009088","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/exists?checkRecycleBin=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","exists"],"query":[{"key":"checkRecycleBin","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"minim_c\": \"<boolean>\"\n}"},{"id":"47988156-42fc-4100-8eff-1ed00eaf08df","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/exists?checkRecycleBin=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","exists"],"query":[{"key":"checkRecycleBin","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"455b415f-0443-44c8-abef-d27b92e9d4d2","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/exists?checkRecycleBin=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","exists"],"query":[{"key":"checkRecycleBin","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f7312775-5df0-4d4b-86d3-58e02f5724c7"},{"name":"Revise entities","id":"1d639c53-48f4-41b9-82e5-7c2accd780c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"entitiesToRevise\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"revisionDescription\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/revise?recursiveLock=false&ignoreThumbnails=false","description":"<p>Revise the selected entities and their composition children</p>\n","urlObject":{"path":["entities","revise"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Also lock all aggregation children</p>\n","type":"text/plain"},"key":"recursiveLock","value":"false"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"94299284-7fb8-46f5-b7ca-a9a684c9504d","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"5e55f913-820c-4ec2-bcd1-b5a4cd6dd3a2","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"4e25d206-e6cd-4a1d-a7a9-341b00f0ee60","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7644aafb-59d3-4235-828d-877b4f4ca7c6","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"ace0880a-3ee6-4028-ba4a-1be30e0ac505","name":"An entity has already been revised or an entity is blocked","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"fbffad2d-360c-43d4-9f74-2753d8975bde","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"1d639c53-48f4-41b9-82e5-7c2accd780c4"},{"name":"Search entities","id":"12fdfab8-f44c-40e8-a0d5-f6a60103cb32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Search, find and filter entities with pagination.</p>\n<p>Entities can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n<p>Pagination can be done via the skip and limit parameters.</p>\n","urlObject":{"path":["entities","search"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to return entity paths</p>\n","type":"text/plain"},"key":"getEntityPaths","value":"false"},{"description":{"content":"<p>How many entities to skip</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>How many entities to return</p>\n","type":"text/plain"},"key":"limit","value":"false"},{"description":{"content":"<p>What field to sort by</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>What direction to sort</p>\n","type":"text/plain"},"key":"sortDir","value":"<string>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"44050207-a0f7-4b38-89ed-58debcbc3a5b","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"9cd8f954-53c1-4c4f-8fb7-2ed4424701b4","name":"No entities found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"88ea7a37-837d-4ba9-9a65-07f5f86c63af","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"9dfc391d-6771-4b57-a055-e260e184f04a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"12fdfab8-f44c-40e8-a0d5-f6a60103cb32"},{"name":"Get search result data","id":"b56e2751-97a0-4b82-bd6b-f29687828d85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","description":"<p>Get various data related to a normal search result. Uses the same as query parameters and body as the normal search. Mainly differs by the return value and some query parameters.</p>\n<p>Entities can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["entities","searchResultData"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return all unique labels found in the result set</p>\n","type":"text/plain"},"key":"getLabelsInResult","value":"false"},{"description":{"content":"<p>Whether to return all unique types found in the result set</p>\n","type":"text/plain"},"key":"getTypesInResult","value":"false"},{"description":{"content":"<p>Whether to get the amount of matched entities</p>\n","type":"text/plain"},"key":"getSearchCount","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"}],"variable":[]}},"response":[{"id":"b13e19e7-356a-4a79-9054-270bfbfb5b81","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"entityCount\": \"<integer>\",\n  \"labelsInResult\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"typesInResult\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"681de88d-0a5c-48d8-8515-d8a91e1befe3","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"954b0ee6-aacf-4999-810d-d139d1e4250f","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b56e2751-97a0-4b82-bd6b-f29687828d85"},{"name":"Attach files to entities","id":"30a60a2e-7392-406e-ac43-eaff2833b171","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"entityId\": \"<string>\",\n    \"attachPayload\": \"<boolean>\",\n    \"attachPreview\": \"<string>\"\n  },\n  {\n    \"entityId\": \"<string>\",\n    \"attachPayload\": \"<boolean>\",\n    \"attachPreview\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/attachFiles?ignoreThumbnails=false","description":"<p>Attach files to entities. Old files are detached as necessary.</p>\n","urlObject":{"path":["entities","attachFiles"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"67efdaa3-809d-430d-b250-6d89975184c7","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/attachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","attachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"entity\": {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"<string,null>\",\n        \"modificationCount\": \"<integer>\",\n        \"creatorId\": \"<string>\",\n        \"modifierId\": \"<string>\",\n        \"creatorName\": \"<string>\",\n        \"modifierName\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"creationTime\": \"<integer>\",\n        \"modificationTime\": \"<integer>\",\n        \"metadata\": {\n          \"consequat_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"occaecat_3b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"additionalFields\": \"<object>\",\n        \"cadInformation\": \"<object>\",\n        \"blockedOperations\": {\n          \"OVERWRITE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"OVERWRITE_OTHERS\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"REVISE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"code\": \"<string>\",\n        \"revision\": \"<string>\",\n        \"revisionDescription\": \"<string,null>\",\n        \"predecessorId\": \"<string,null>\",\n        \"successorId\": \"<string,null>\",\n        \"fileId\": \"<string,null>\",\n        \"fileName\": \"<string,null>\",\n        \"fileNameExtension\": \"<string,null>\",\n        \"fileMimeType\": \"<string,null>\",\n        \"thumbnail\": \"<string,null>\",\n        \"previewFileId\": \"<string,null>\",\n        \"labels\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"clientSystemFile\": \"<boolean>\",\n        \"cadId\": \"<string,null>\",\n        \"paths\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"compositionParents\": {\n          \"in8\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptated1e\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sint68\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationParents\": {\n          \"proident82a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"compositionChildren\": {\n          \"voluptate_74b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_77\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationChildren\": {\n          \"sunt_a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"non039\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"associations\": {\n          \"dofc\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nisi_f_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_036\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"attachedFileId\": \"<string,null>\",\n      \"attachedPreviewFileId\": \"<string,null>\",\n      \"detachedFileId\": \"<string,null>\",\n      \"detachedPreviewFileId\": \"<string,null>\"\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"entity\": {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"<string,null>\",\n        \"modificationCount\": \"<integer>\",\n        \"creatorId\": \"<string>\",\n        \"modifierId\": \"<string>\",\n        \"creatorName\": \"<string>\",\n        \"modifierName\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"creationTime\": \"<integer>\",\n        \"modificationTime\": \"<integer>\",\n        \"metadata\": {\n          \"ut_4f7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_78_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"additionalFields\": \"<object>\",\n        \"cadInformation\": \"<object>\",\n        \"blockedOperations\": {\n          \"OVERWRITE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"OVERWRITE_OTHERS\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"REVISE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"code\": \"<string>\",\n        \"revision\": \"<string>\",\n        \"revisionDescription\": \"<string,null>\",\n        \"predecessorId\": \"<string,null>\",\n        \"successorId\": \"<string,null>\",\n        \"fileId\": \"<string,null>\",\n        \"fileName\": \"<string,null>\",\n        \"fileNameExtension\": \"<string,null>\",\n        \"fileMimeType\": \"<string,null>\",\n        \"thumbnail\": \"<string,null>\",\n        \"previewFileId\": \"<string,null>\",\n        \"labels\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"clientSystemFile\": \"<boolean>\",\n        \"cadId\": \"<string,null>\",\n        \"paths\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"compositionParents\": {\n          \"tempor3a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationParents\": {\n          \"pariatur_32\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"esse20\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"compositionChildren\": {\n          \"dolore190\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sint_8\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationChildren\": {\n          \"ad_99b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptate5\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"deserunt_005\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"associations\": {\n          \"pariatur_5\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"temporea\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"amet_844\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"attachedFileId\": \"<string,null>\",\n      \"attachedPreviewFileId\": \"<string,null>\",\n      \"detachedFileId\": \"<string,null>\",\n      \"detachedPreviewFileId\": \"<string,null>\"\n    }\n  }\n]"},{"id":"fd87e31b-7388-4a99-982d-198aaf9c45ad","name":"Invalid combination of attachPayload and attachPreview","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/attachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","attachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"6aa9cea2-33f6-4d1d-920b-f1e438ef8c55","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/attachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","attachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"9fcb35c9-7b19-4fa1-b3c7-c7b943a3f794","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/attachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","attachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"30a60a2e-7392-406e-ac43-eaff2833b171"},{"name":"Detach files from entities","id":"0900d8ef-c1aa-416d-8226-a0c07738b338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"entityId\": \"<string>\",\n    \"detachPayload\": \"<boolean>\",\n    \"detachPreview\": \"<boolean>\"\n  },\n  {\n    \"entityId\": \"<string>\",\n    \"detachPayload\": \"<boolean>\",\n    \"detachPreview\": \"<boolean>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/detachFiles?ignoreThumbnails=false","urlObject":{"path":["entities","detachFiles"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"86ccdf4a-80ca-4399-ac10-9a44f8999900","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/detachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","detachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"entity\": {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"<string,null>\",\n        \"modificationCount\": \"<integer>\",\n        \"creatorId\": \"<string>\",\n        \"modifierId\": \"<string>\",\n        \"creatorName\": \"<string>\",\n        \"modifierName\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"creationTime\": \"<integer>\",\n        \"modificationTime\": \"<integer>\",\n        \"metadata\": {\n          \"reprehenderit_56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"quis_95_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"additionalFields\": \"<object>\",\n        \"cadInformation\": \"<object>\",\n        \"blockedOperations\": {\n          \"OVERWRITE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"OVERWRITE_OTHERS\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"REVISE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"code\": \"<string>\",\n        \"revision\": \"<string>\",\n        \"revisionDescription\": \"<string,null>\",\n        \"predecessorId\": \"<string,null>\",\n        \"successorId\": \"<string,null>\",\n        \"fileId\": \"<string,null>\",\n        \"fileName\": \"<string,null>\",\n        \"fileNameExtension\": \"<string,null>\",\n        \"fileMimeType\": \"<string,null>\",\n        \"thumbnail\": \"<string,null>\",\n        \"previewFileId\": \"<string,null>\",\n        \"labels\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"clientSystemFile\": \"<boolean>\",\n        \"cadId\": \"<string,null>\",\n        \"paths\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"compositionParents\": {\n          \"labore_71\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationParents\": {\n          \"quis94d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_5_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_1bf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim_2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"compositionChildren\": {\n          \"aliqua7a_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"minim_95f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationChildren\": {\n          \"magnab\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"associations\": {\n          \"nond\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"attachedFileId\": \"<string,null>\",\n      \"attachedPreviewFileId\": \"<string,null>\",\n      \"detachedFileId\": \"<string,null>\",\n      \"detachedPreviewFileId\": \"<string,null>\"\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"entity\": {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"<string,null>\",\n        \"modificationCount\": \"<integer>\",\n        \"creatorId\": \"<string>\",\n        \"modifierId\": \"<string>\",\n        \"creatorName\": \"<string>\",\n        \"modifierName\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"creationTime\": \"<integer>\",\n        \"modificationTime\": \"<integer>\",\n        \"metadata\": {\n          \"id__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"additionalFields\": \"<object>\",\n        \"cadInformation\": \"<object>\",\n        \"blockedOperations\": {\n          \"OVERWRITE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"OVERWRITE_OTHERS\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"REVISE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"code\": \"<string>\",\n        \"revision\": \"<string>\",\n        \"revisionDescription\": \"<string,null>\",\n        \"predecessorId\": \"<string,null>\",\n        \"successorId\": \"<string,null>\",\n        \"fileId\": \"<string,null>\",\n        \"fileName\": \"<string,null>\",\n        \"fileNameExtension\": \"<string,null>\",\n        \"fileMimeType\": \"<string,null>\",\n        \"thumbnail\": \"<string,null>\",\n        \"previewFileId\": \"<string,null>\",\n        \"labels\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"clientSystemFile\": \"<boolean>\",\n        \"cadId\": \"<string,null>\",\n        \"paths\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"compositionParents\": {\n          \"irure33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationParents\": {\n          \"occaecat8\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proident_8c_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"compositionChildren\": {\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in644\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Duis_80c\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationChildren\": {\n          \"magna_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed86\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"associations\": {\n          \"reprehenderit_d2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aute_8c\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"attachedFileId\": \"<string,null>\",\n      \"attachedPreviewFileId\": \"<string,null>\",\n      \"detachedFileId\": \"<string,null>\",\n      \"detachedPreviewFileId\": \"<string,null>\"\n    }\n  }\n]"},{"id":"9c7372fb-1f13-486a-a498-dc866c5f6677","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/detachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","detachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"c34a8a89-1694-4f75-9d84-db765882806a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/detachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","detachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"96b93e06-8a02-4ac3-9343-5ee1393d2f19","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/detachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","detachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"0900d8ef-c1aa-416d-8226-a0c07738b338"},{"name":"Block entities","id":"f9ac6d5d-3ca3-428a-9414-27609b0c0625","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","description":"<p>Block entities and their composition children. Aggregation children can be blocked via a query parameter.</p>\n","urlObject":{"path":["entities","block"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>(Required) What blocks to add</p>\n","type":"text/plain"},"key":"operation","value":"<string>"},{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"57774b21-3aaf-49d8-b68c-179b466130d6","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"863b8ab4-5511-463b-bbb1-e0afd6283ae6","name":"Invalid operation or tried to add reserve and overwrite blocks at the same time","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"b0bbd89d-22f6-456a-822f-664ca75dacb9","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"708eb4a5-2a93-4e52-87c9-515e58450bbf","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"0a60ed93-68e6-440f-aaad-b3d126cc57a0","name":"An entity was already blocked","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"f9ac6d5d-3ca3-428a-9414-27609b0c0625"},{"name":"Unblock entities","id":"eb0e2587-06fa-4eac-9527-02e0cdbb1c8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","description":"<p>Unblock entities and their composition children. Aggregation children can be unblocked via a query parameter.</p>\n","urlObject":{"path":["entities","unblock"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>(Required) What blocks to add</p>\n","type":"text/plain"},"key":"operation","value":"<string>"},{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"34d4cb6f-c12e-4c29-89e4-77fcae25c380","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"d0b37e10-0116-48a5-8eaa-e25d6b7baf4e","name":"Invalid operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"2445cdff-e292-4487-92c7-bc55657537ae","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"04bfccd5-d21e-4c06-b9f9-bb17370aa6c9","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"65b08d8b-0a2c-4978-8010-e00ae3710ec7","name":"An entity was not the newest revision","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"eb0e2587-06fa-4eac-9527-02e0cdbb1c8c"},{"name":"Add relations to entities","id":"512c6d15-2ffe-48d1-96e5-07b6fc0005e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"modificationCount\": \"<integer>\",\n    \"compositionParentsToOverwrite\": {\n      \"fugiat5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"est94\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillumb13\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildrenToOverwrite\": {\n      \"esse93f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParentsToOverwrite\": {\n      \"exercitation73\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nisibc\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_606\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildrenToOverwrite\": {\n      \"exercitation_e51\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"et6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associationsToOverwrite\": {\n      \"consequat_20a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionParentsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionChildrenToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aggregationParentsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aggregationChildrenToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"associationsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"id\": \"<string>\",\n    \"modificationCount\": \"<integer>\",\n    \"compositionParentsToOverwrite\": {\n      \"quis_2db\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildrenToOverwrite\": {\n      \"consequat7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sed_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParentsToOverwrite\": {\n      \"laborum_1\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildrenToOverwrite\": {\n      \"veniam_b1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"exercitation_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniamb6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associationsToOverwrite\": {\n      \"laboris4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam0e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmodbf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionParentsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionChildrenToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aggregationParentsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aggregationChildrenToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"associationsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/entities/relations?ignoreThumbnails=false","description":"<p>Update entities' relations. Allows modifying an entity's relations to specific entities, but the relation lists can only be overwritten or removed. Adding a single relation to the list is not possible without overwriting the entire list.</p>\n","urlObject":{"path":["entities","relations"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[]}},"response":[{"id":"a8ed206b-a96b-4fd7-92ca-e6a28d24b59d","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"2a2f5de7-75fb-4ad0-ab6c-e3add21e5616","name":"Invalid relations","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"58aed4d9-da5b-47e6-bbd1-7888ab629314","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"df599238-9564-41e8-892b-8e1332a26b1c","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"76026094-e79b-4778-8f21-30a5c5496fb9","name":"Wrong modificationCount or the given entity or an added or removed composition parent, child or aggregation parent was blocked","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"512c6d15-2ffe-48d1-96e5-07b6fc0005e2"}],"id":"5b93d708-48a3-492b-8ee1-5b4b3635d024","_postman_id":"5b93d708-48a3-492b-8ee1-5b4b3635d024","description":""},{"name":"branches","item":[{"name":"{branchId}","item":[{"name":"entities","item":[{"name":"{entityId}","item":[{"name":"Find entity by id","id":"8111878c-9db5-4bb1-9033-b29465733c3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?ignoreThumbnails=false","urlObject":{"path":["branches",":branchId","entities",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"2ab18130-b8d8-4a95-91df-bc4432dc4271","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"b6fb630a-5c4d-4469-b498-c5902bb2df8f","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"f8b854d8-7ea8-4afb-86a0-35db8fdb213c","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"creatorId\": \"<string>\",\n  \"modifierId\": \"<string>\",\n  \"creatorName\": \"<string>\",\n  \"modifierName\": \"<string>\",\n  \"description\": \"<string,null>\",\n  \"creationTime\": \"<integer>\",\n  \"modificationTime\": \"<integer>\",\n  \"metadata\": {\n    \"adipisicing__98\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"in_31\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"veniam_21\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"blockedOperations\": {\n    \"OVERWRITE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"OVERWRITE_OTHERS\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"REVISE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    }\n  },\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"predecessorId\": \"<string,null>\",\n  \"successorId\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"fileName\": \"<string,null>\",\n  \"fileNameExtension\": \"<string,null>\",\n  \"fileMimeType\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"paths\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"compositionParents\": {\n    \"cupidatat_8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollitb2\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"esse05\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"laboris3b\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"cupidatat_02_\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"labore__8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"enim_6\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"dolore52\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"Ut_f__\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"mollit_f1\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"eu9e\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}"},{"id":"4c8635f3-f6cf-4e10-873e-5c21c6690e4d","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"97441102-5aa8-4fef-bef0-efe03199b024","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"8111878c-9db5-4bb1-9033-b29465733c3e"},{"name":"Update entity","id":"7d22fbdb-4c02-42ff-8de4-36064d6b85b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"labore_093\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"veniam__2d\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in__9a\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"laboris2f8\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"commodoa4\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"laborisb\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"enim_4e\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"magna3\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"culpae\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"cillumbf\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","description":"<p>Update entity's modifiable data. All fields of provided entities are overwritten. Relations to other entities may also be added or removed.</p>\n","urlObject":{"path":["branches",":branchId","entities",":entityId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to overwrite parents. For entities with lots of parents it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateParents","value":"<boolean>"},{"description":{"content":"<p>Whether to overwrite children. For entities with lots of children it may be useful to set this to false and not send the children fields.</p>\n","type":"text/plain"},"key":"updateChildren","value":"true"},{"description":{"content":"<p>Whether to overwrite associations. For entities with lots of associations it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateAssociations","value":"true"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"18852186-3ff6-4437-931e-1af735ac3fae","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"9c0d7f6e-adb0-4498-b941-fcc6de4d03c0","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"b345317c-592e-4d09-8f05-50810f6fa3a5","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"1ba24360-186c-4880-b8e4-dbf7ffc252f4","name":"Invalid name, type, code, revision, relations or labels","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"f790e914-f537-4e45-915a-0b872aeaf51d","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"13354d05-e9c7-4c05-b6d2-bb1cfb4e1543","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"776cec83-c886-4e89-ac07-a9f370e27e60","name":"Wrong modificationCount or the given entity or an added or removed composition parent, child or aggregation parent was blocked","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"description\": \"<string,null>\",\n  \"metadata\": {\n    \"ullamco_2b3\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"laboref\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"ut_f_\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"compositionParents\": {\n    \"in943\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollit685\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"fugiate7\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"aute_00\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"veniam894\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis5\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"dolore_0\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"consectetur_65\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"veniamfea\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"Duisd\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"tempor401\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"quis24\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"7d22fbdb-4c02-42ff-8de4-36064d6b85b0"},{"name":"Find all revisions","id":"ed019952-6b66-4b1a-94e3-a0fc598ba375","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/revisions?ignoreThumbnails=false","description":"<p>Find all the revisions for the given entity.</p>\n","urlObject":{"path":["branches",":branchId","entities",":entityId","revisions"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"fad6d203-dfb6-45bc-a35a-bc113b93d38a","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"2f0569cf-b974-4207-a6ff-c16c295e8796","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"4e3159a7-eaf9-4abe-8fec-b4c36ef0ffca","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/revisions?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","revisions"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"741c1ca4-1fd3-4bb3-87ce-cb3bf84b83ae","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/revisions?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","revisions"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"ed019952-6b66-4b1a-94e3-a0fc598ba375"},{"name":"Get children count","id":"3c2986eb-ec8f-4a28-9c96-f341a8cf24fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/childrenCount","description":"<p>Returns various kinds of children counts for the given entity.</p>\n","urlObject":{"path":["branches",":branchId","entities",":entityId","childrenCount"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"01eefc9b-0636-4340-9c03-a41758943202","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"5e9a5307-897d-4c29-80cb-6d8c07f7a60a","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"03f3c8d3-a1e3-4100-a3c8-d2a19722fd12","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","childrenCount"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"childrenCount\": \"<integer>\",\n  \"childrenWithoutOtherParentsCount\": \"<integer>\",\n  \"directCompositeChildrenCount\": \"<integer>\",\n  \"indirectCompositeChildrenRootsByTypesCount\": {\n    \"Excepteur_e\": \"<integer>\"\n  }\n}"},{"id":"4d35d4c8-6cd6-4db2-9f96-b07dc208a6ac","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","childrenCount"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a8475130-66ab-461d-93c1-5bf4b3e8e86d","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/childrenCount","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","childrenCount"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"3c2986eb-ec8f-4a28-9c96-f341a8cf24fe"},{"name":"Copy entity by id","id":"f9f1d0f1-88cc-49fe-bf70-81a95ca2a553","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Duplicates the selected entity. The composition children are duplicated also. Aggregation children can be duplicated with the \"recursive\" query parameter.</p>\n","urlObject":{"path":["branches",":branchId","entities",":entityId","copy"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>What name to give to the copy of the selected entity. Name defaults to old name with \"-Copy\" suffix.</p>\n","type":"text/plain"},"key":"setName","value":"<string>"},{"description":{"content":"<p>What code to give to the copy of the selected entity. Code is generated by default.</p>\n","type":"text/plain"},"key":"setCode","value":"<string>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"78ef25a2-bb85-4f77-8b23-791949eff74e","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"6ac4ba4c-26b2-48da-913c-e0b8bef238c4","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"329766ef-43eb-43fd-beb0-f8b8f1f9d37a","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","copy"],"query":[{"key":"recursive","value":"false"},{"key":"setName","value":"<string>"},{"key":"setCode","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"minim_e97\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"amete77\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_3f9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": null,\n    \"compositionParents\": {\n      \"in_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Ut_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor_5ee\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aliqua_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"officia_ee9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"qui33\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"Excepteur_4ab\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"non9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"voluptate_bb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"nisi50\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea__\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minim4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"eiusmod_5\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"nostrud_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"qui_ef1\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": null,\n    \"compositionParents\": {\n      \"cupidatat52c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"in_7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"nonb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aliquip_9ea\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"sed_2a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"est_34\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aliquip68e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"fugiat_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"exercitation30a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"proidentf9f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laborum_280\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"Duis6bf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolorece\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"incididunt_c\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"dolor_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"adipisicing__db\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"Loremd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"in9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore07\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"deserunt5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sunt_330\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"nostrud7d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod36\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sunt_34\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"non_e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"incididunt_5c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"Ut_c3e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ex_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"voluptate38\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"consequat_2\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"eu93\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"autec\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"velit6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"nisi0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cupidatat_ab7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"Lorem_84\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"amet33\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"in895\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"occaecat_190\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"commodo_20\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"utf27\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_694\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"proident0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nulla59\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ut_646\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aute_fe4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"enim4a_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"nulla_5a_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"amet_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"culpab\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_f73\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"Duis17c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"occaecat58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n}"},{"id":"03d99f4a-1842-499b-bfdf-e804abf13cda","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","copy"],"query":[{"key":"recursive","value":"false"},{"key":"setName","value":"<string>"},{"key":"setCode","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"33aff56e-9aa4-402f-8bd3-f83f2a6cf9f1","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","copy"],"query":[{"key":"recursive","value":"false"},{"key":"setName","value":"<string>"},{"key":"setCode","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"7fa847db-f50e-497d-9f44-114a38ee2c62","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/copy?recursive=false&setName=<string>&setCode=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","copy"],"query":[{"key":"recursive","value":"false"},{"key":"setName","value":"<string>"},{"key":"setCode","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"f9f1d0f1-88cc-49fe-bf70-81a95ca2a553"},{"name":"Get entity hierarchy down","id":"8c215894-aa7d-4eae-9a3f-084c0f88841a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Gets the children of the given entity using nested entities. Only direct children are returned by default. Grandchildren and beyond can be fetched with the \"recursive\" query parameter. Note that the nested parent fields are not populated.</p>\n<p>Children can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["branches",":branchId","entities",":entityId","hierarchyDown"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to get composition and aggregations recursively</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"260cb556-59c2-45c5-b4d3-d3d6aaa960ff","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"82b77777-09f0-4c14-bd84-57e97702a138","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"24a646c6-1c78-4d59-b9cc-6f3a3b120791","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"entity\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"consectetur9d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam__0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"tempor_ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"mollit_e2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum0c7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ullamco6f5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"labore_c65\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"incididunt_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"nulla_6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"aliquaa6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore092\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nostrud56\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionParents\": {\n    \"id0\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"aliquipa10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliquip7be\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"exe7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nulla6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptate_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_d_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"dolor_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat93\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"fugiat_a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"sint_ea2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c84\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aliquipd\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"laboris_7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"non09a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"reprehenderit88\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"culpa_1e0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"esse_47\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationParents\": {\n    \"ad_64\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"Lorem_144\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nisi_d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"veniam_fe\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_ce\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"etac7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sinte\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"velit_04b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"minim1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"laborum5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"sed_f1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco_25\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"Excepteure01\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_53\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sint_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_cd4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"ipsumc1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_0d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionChildren\": {\n    \"consequat_b5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"nulla_a56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"quis_9_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_709\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat_0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliqua_e2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"minima1e\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing_f3_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"enim_f3\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"proidenta\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"elit_38\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ad2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"officia_a2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem1a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"magna_618\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Excepteur58\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"Excepteur1\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"ut10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_f5d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"est95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"id147\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consectetur_039\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sed792\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"irure_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"laboris_556\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"sedf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"dolor_7c5\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_842\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"exercitation_67\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proidentc\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"dolor_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"dolor_2e6\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"consequat__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_2f2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"ada\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"voluptate_e_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationChildren\": {\n    \"voluptate_c4\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"fugiat2_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_198\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ea_79\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sint_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"commodofac\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"deserunt_810\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptateaf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"amet_52\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n}"},{"id":"1d1592db-e177-4101-b089-a2e932b2bcf7","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"ff794c4e-7353-4f9a-9a6b-e8ae27726ec9","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"810f2e57-b301-4e9c-9419-f6e437ced2eb","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"8c215894-aa7d-4eae-9a3f-084c0f88841a"},{"name":"Get entity hierarchy up","id":"470fae19-54f9-4f7d-bb78-0d4f60b0b93a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Gets the parents of the given entity using nested entities. Only direct parents are returned by default. Grandparents and beyond can be fetched with the \"recursive\" query parameter. Note that the nested children fields are not populated.</p>\n<p>Children can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["branches",":branchId","entities",":entityId","hierarchyUp"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to get composition and aggregations recursively</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"17601732-904b-47a8-9fbc-b39311ea2b36","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"a3e1fc0c-0f66-4db2-942f-5472d639faf4","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"29ebf99c-9ccb-4188-a00c-febc69d87cd1","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyUp"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"entity\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"consectetur9d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam__0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"tempor_ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"mollit_e2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum0c7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ullamco6f5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"labore_c65\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"incididunt_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"nulla_6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"aliquaa6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore092\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nostrud56\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionParents\": {\n    \"id0\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"aliquipa10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliquip7be\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"exe7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nulla6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptate_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_d_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"dolor_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat93\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"fugiat_a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"sint_ea2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c84\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aliquipd\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"laboris_7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"non09a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"reprehenderit88\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"culpa_1e0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"esse_47\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationParents\": {\n    \"ad_64\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"Lorem_144\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nisi_d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"veniam_fe\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_ce\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"etac7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sinte\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"velit_04b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"minim1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"laborum5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"sed_f1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco_25\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"Excepteure01\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_53\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sint_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_cd4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"ipsumc1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_0d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionChildren\": {\n    \"consequat_b5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"nulla_a56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"quis_9_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_709\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat_0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliqua_e2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"minima1e\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing_f3_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"enim_f3\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"proidenta\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"elit_38\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ad2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"officia_a2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem1a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"magna_618\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Excepteur58\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"Excepteur1\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"ut10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_f5d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"est95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"id147\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consectetur_039\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sed792\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"irure_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"laboris_556\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"sedf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"dolor_7c5\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_842\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"exercitation_67\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proidentc\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"dolor_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"dolor_2e6\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"consequat__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_2f2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"ada\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"voluptate_e_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationChildren\": {\n    \"voluptate_c4\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"fugiat2_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_198\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ea_79\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sint_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"commodofac\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"deserunt_810\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptateaf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"amet_52\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n}"},{"id":"a751b3a2-f2e1-45fe-a721-7f1dda008d3b","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyUp"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"6c5653b8-af7e-442b-ad58-ba2df8a93c49","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyUp"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"bded3c3b-8361-4deb-96a5-41571a790929","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUp?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyUp"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"470fae19-54f9-4f7d-bb78-0d4f60b0b93a"},{"name":"Get entity hierarchy up and down","id":"fcc06031-45fc-4902-9fe8-512c204c72fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Gets the parents and children of the given entity using nested entities. Only direct parents and children are returned by default. Grandparents and grandchildren and beyond can be fetched with the \"recursive\" query parameter. Note that the nested children field is populated only for children and the nested parents for parents.</p>\n<p>With circular relations only one of the nested fields is populated randomly. The field may differ for each entity. In such cases the returned JSON should be manually altered to add references to both nested fields for each entity if the nested fields are to be directly used.</p>\n<p>Children can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["branches",":branchId","entities",":entityId","hierarchyUpDown"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to get composition and aggregations recursively</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"15b6b4d2-a0ea-4837-b542-c815a173739e","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"7b2c418c-f4b9-4531-a0bf-a837b652a30a","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"}]}},"response":[{"id":"80efef92-a45e-4f10-879f-1d05c17b6c49","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyUpDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"entity\": {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"consectetur9d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam__0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"tempor_ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"mollit_e2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum0c7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ullamco6f5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"labore_c65\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"incididunt_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"nulla_6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"aliquaa6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore092\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nostrud56\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionParents\": {\n    \"id0\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"aliquipa10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliquip7be\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"exe7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nulla6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptate_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_d_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"dolor_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat93\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"fugiat_a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"sint_ea2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c84\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aliquipd\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"laboris_7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"non09a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"reprehenderit88\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"culpa_1e0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"esse_47\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationParents\": {\n    \"ad_64\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"Lorem_144\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"nisi_d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"veniam_fe\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_ce\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"etac7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sinte\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"velit_04b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"minim1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"laborum5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"sed_f1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco_25\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"Excepteure01\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_53\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sint_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"cupidatat_cd4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"ipsumc1\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_0d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedCompositionChildren\": {\n    \"consequat_b5\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"nulla_a56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"labore_3\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"quis_9_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ex_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_709\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consequat_0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aliqua_e2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"minima1e\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"adipisicing_f3_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"enim_f3\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"proidenta\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"elit_38\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ad2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"officia_a2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem1a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"magna_618\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Excepteur58\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"Excepteur1\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"ut10\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"officia_f5d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"est95\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"id147\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"consectetur_039\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sed792\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_c59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"irure_f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"laboris_556\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"sedf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut59\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in0\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"dolor_7c5\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in_842\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"exercitation_67\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proidentc\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"dolor_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"dolor_2e6\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"consequat__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_2f2\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Lorem6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"ada\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"ut_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"voluptate_e_4\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  \"nestedAggregationChildren\": {\n    \"voluptate_c4\": {\n      \"nestedEntity\": {\n        \"id\": \"<string>\",\n        \"entity\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"nestedCompositionParents\": {\n          \"fugiat2_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_198\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ea_79\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationParents\": {\n          \"sint_b\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"ullamco7\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedCompositionChildren\": {\n          \"commodofac\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"deserunt_810\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"voluptateaf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"qui_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"nestedAggregationChildren\": {\n          \"amet_52\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"relations\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n}"},{"id":"97422a3d-1934-4725-873c-b63889550c9d","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyUpDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"d35386e5-cab4-44c7-8c2b-f321e19d7ec3","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyUpDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"4323c963-f956-4d0a-ab0c-c1187d2f67e4","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/hierarchyUpDown?recursive=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","hierarchyUpDown"],"query":[{"key":"recursive","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"fcc06031-45fc-4902-9fe8-512c204c72fe"},{"name":"Move entity by id","id":"21ae3f87-d29f-4bc6-815d-d47b5555275a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/move/:parentId?ignoreThumbnails=false","description":"<p>Changes an entity's aggregation parent into another</p>\n","urlObject":{"path":["branches",":branchId","entities",":entityId","move",":parentId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"1a21141a-cd43-4aea-bea7-8df52b80171e","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"},{"id":"8872a063-2545-43f0-ad1e-2247bd47e984","description":{"content":"<p>(Required) The entity id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"},{"id":"75fc9afc-19f2-4092-bd42-46fe4251cdd0","description":{"content":"<p>(Required) The new aggregation parent</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"parentId"}]}},"response":[{"id":"a77cea5b-d210-4a1d-8d05-0cd09fe638b9","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"type\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"modificationCount\": \"<integer>\",\n  \"creatorId\": \"<string>\",\n  \"modifierId\": \"<string>\",\n  \"creatorName\": \"<string>\",\n  \"modifierName\": \"<string>\",\n  \"description\": \"<string,null>\",\n  \"creationTime\": \"<integer>\",\n  \"modificationTime\": \"<integer>\",\n  \"metadata\": {\n    \"adipisicing__98\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"in_31\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ],\n    \"veniam_21\": [\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      },\n      {\n        \"key\": \"<string>\",\n        \"value\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"type\": \"<string,null>\",\n        \"unit\": \"<string,null>\",\n        \"readOnly\": \"<boolean>\",\n        \"hidden\": \"<boolean>\",\n        \"source\": \"<string,null>\",\n        \"namespace\": \"<string,null>\"\n      }\n    ]\n  },\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"blockedOperations\": {\n    \"OVERWRITE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"OVERWRITE_OTHERS\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    },\n    \"REVISE_EVERYONE\": {\n      \"id\": \"<string>\",\n      \"timestamp\": \"<integer>\"\n    }\n  },\n  \"name\": \"<string>\",\n  \"code\": \"<string>\",\n  \"revision\": \"<string>\",\n  \"revisionDescription\": \"<string,null>\",\n  \"predecessorId\": \"<string,null>\",\n  \"successorId\": \"<string,null>\",\n  \"fileId\": \"<string,null>\",\n  \"fileName\": \"<string,null>\",\n  \"fileNameExtension\": \"<string,null>\",\n  \"fileMimeType\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"previewFileId\": \"<string,null>\",\n  \"labels\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"clientSystemFile\": \"<boolean>\",\n  \"cadId\": \"<string,null>\",\n  \"paths\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"compositionParents\": {\n    \"cupidatat_8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"mollitb2\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"esse05\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationParents\": {\n    \"laboris3b\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"cupidatat_02_\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"compositionChildren\": {\n    \"labore__8\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"enim_6\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"dolore52\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"aggregationChildren\": {\n    \"Ut_f__\": [\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"followLatestRevisionChild\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  },\n  \"associations\": {\n    \"mollit_f1\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"eu9e\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ]\n  }\n}"},{"id":"07b1e3ab-8a9c-4303-847f-374cc64ba8d1","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7d1dac39-8920-43c1-a39d-152756591f1e","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"1061d85e-3594-416d-ada8-bd5d252a2b0f","name":"Entity has a composition parent, too many aggregation parents or the aggregation parent is already related to the entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"052eed84-0a97-4595-9c40-7a5a9f6e058c","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/:entityId/move/:parentId?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities",":entityId","move",":parentId"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"},{"key":"entityId","value":"<string>","description":"(Required) The entity id to use"},{"key":"parentId","value":"<string>","description":"(Required) The new aggregation parent"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"21ae3f87-d29f-4bc6-815d-d47b5555275a"}],"id":"8fad7444-99ee-483c-bbab-a5ce80abaeff","_postman_id":"8fad7444-99ee-483c-bbab-a5ce80abaeff","description":""},{"name":"Create new entities","id":"2b4bba8f-c8af-4810-a4a8-a077e77b44a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"entity\": \"<object>\",\n    \"attachFile\": \"<boolean>\",\n    \"attachPreviewFile\": \"<string>\"\n  },\n  {\n    \"entity\": \"<object>\",\n    \"attachFile\": \"<boolean>\",\n    \"attachPreviewFile\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","description":"<p>Creates new entities and their files. Relations to other entities may also be added.</p>\n","urlObject":{"path":["branches",":branchId","entities"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to overwrite parents. For entities with lots of parents it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateParents","value":"<boolean>"},{"description":{"content":"<p>Whether to overwrite children. For entities with lots of children it may be useful to set this to false and not send the children fields.</p>\n","type":"text/plain"},"key":"updateChildren","value":"true"},{"description":{"content":"<p>Whether to overwrite associations. For entities with lots of associations it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateAssociations","value":"true"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"f4f78057-b34c-405e-9bb2-c9824c3b646f","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"304b729b-b795-40bf-9819-52d09794fd75","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"ac4b6cbf-562c-4c49-9f4e-ccfc6c8d734f","name":"Invalid name, type, relations, labels or combination of attachFile and attachPreviewFile","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"56bd3a89-dc96-402c-a4b7-802f8138bdda","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b3f8a68b-0c32-4ed1-b8b3-c3c887ff6673","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"a120c713-407d-40f8-8525-6ded23e9f0ec","name":"Duplicate ID or type and code, or blocked related entities","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"a6653d19-f7b0-405d-ae38-23b87bdec89c","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"2b4bba8f-c8af-4810-a4a8-a077e77b44a4"},{"name":"Update entities","id":"0ee0248e-e52b-46fa-8251-13be4030695c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"nisi__1\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"elit_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"aliquipe51\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"enim27e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"in_5c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"cupidatat_a1a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"reprehenderit0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"cillum_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"et_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"aliquip065\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum9f4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"eu_1\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"cillum3c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"commodoe56\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"amet4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"esse5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"ipsum_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"amet_5a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"Lorem_53c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quic2e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estee6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","description":"<p>Update entities' modifiable data. All fields of provided entities are overwritten. Relations to other entities may also be added or removed.</p>\n","urlObject":{"path":["branches",":branchId","entities"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to overwrite parents. For entities with lots of parents it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateParents","value":"<boolean>"},{"description":{"content":"<p>Whether to overwrite children. For entities with lots of children it may be useful to set this to false and not send the children fields.</p>\n","type":"text/plain"},"key":"updateChildren","value":"true"},{"description":{"content":"<p>Whether to overwrite associations. For entities with lots of associations it may be useful to set this to false and not send the parent fields.</p>\n","type":"text/plain"},"key":"updateAssociations","value":"true"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"5dda63e3-2c5c-416f-90c8-ec4d8019879b","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"57aaac3f-b6bd-4f15-bfe9-7ab50a57c49d","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"2357eaef-5503-4be0-b67e-9ecf649c25f3","name":"Invalid name, type, code, revision, relations or labels","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"04a594c0-1705-45ad-8f45-45af027ea9fe","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1681cab3-f4ce-4bcd-a3d9-953ff740ae32","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"a4d97c56-462d-442a-af7d-a9b35590b19e","name":"Wrong modificationCount or the given entity or an added or removed composition parent, child or aggregation parent was blocked","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"eiusmod_a90\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"adipisicing96\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_5f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"irure6\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"ipsum414\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"velit_049\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ea62\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"anim_a2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"magna9de\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"pariatur5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"officia3ac\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"ut8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"description\": \"<string,null>\",\n    \"metadata\": {\n      \"exercitation3d7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"culpa_7b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"pariatur_2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"compositionParents\": {\n      \"mollitf86\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_a7\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"occaecat_696\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"quis_fdf\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"ex_b4_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"enim4b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"do_1f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consectetur_fd9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"consectetur_5_\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"consequat_7cd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities?updateParents=<boolean>&updateChildren=true&updateAssociations=true&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities"],"query":[{"key":"updateParents","value":"<boolean>"},{"key":"updateChildren","value":"true"},{"key":"updateAssociations","value":"true"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"0ee0248e-e52b-46fa-8251-13be4030695c"},{"name":"Check whether entities exist","id":"4f4827eb-bd7e-42fe-b543-5bec4e672fe3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/exists","description":"<p>Check whether entities exist by given entity IDs.</p>\n","urlObject":{"path":["branches",":branchId","entities","exists"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"e50731db-3c7e-4960-b998-c372cacb24cc","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"732a9da2-3863-4047-921c-f9be57708ef1","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/exists","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","exists"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"minim_c\": \"<boolean>\"\n}"},{"id":"1a3952bb-c40f-4e0e-a8a7-f28d25c99afd","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/exists","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","exists"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"4f4827eb-bd7e-42fe-b543-5bec4e672fe3"},{"name":"Search entities","id":"5b9e40c2-1514-4e7c-9d7b-99547ff2a817","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","description":"<p>Search, find and filter entities with pagination.</p>\n<p>Entities can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n<p>Pagination can be done via the skip and limit parameters.</p>\n","urlObject":{"path":["branches",":branchId","entities","search"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to return entity paths</p>\n","type":"text/plain"},"key":"getEntityPaths","value":"false"},{"description":{"content":"<p>How many entities to skip</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>How many entities to return</p>\n","type":"text/plain"},"key":"limit","value":"false"},{"description":{"content":"<p>What field to sort by</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>What direction to sort</p>\n","type":"text/plain"},"key":"sortDir","value":"<string>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"9d87f52e-7846-415f-aeee-1b0cad30d31b","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"fc911edd-1189-4713-b944-974ab222d10b","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"aliqua8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"id8\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"sint_11\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"exd\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"laboris_cb\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"minim_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolore5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"estbb2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"nullae_a\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"laborum1df\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"dolor4d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  },\n  {\n    \"id\": \"<string>\",\n    \"type\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"modificationCount\": \"<integer>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string,null>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"metadata\": {\n      \"ex5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"minimfa\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sint_9\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"blockedOperations\": {\n      \"OVERWRITE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"OVERWRITE_OTHERS\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"REVISE_EVERYONE\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"timestamp\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"name\": \"<string>\",\n    \"code\": \"<string>\",\n    \"revision\": \"<string>\",\n    \"revisionDescription\": \"<string,null>\",\n    \"predecessorId\": \"<string,null>\",\n    \"successorId\": \"<string,null>\",\n    \"fileId\": \"<string,null>\",\n    \"fileName\": \"<string,null>\",\n    \"fileNameExtension\": \"<string,null>\",\n    \"fileMimeType\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"previewFileId\": \"<string,null>\",\n    \"labels\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"clientSystemFile\": \"<boolean>\",\n    \"cadId\": \"<string,null>\",\n    \"paths\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionParents\": {\n      \"ex82c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParents\": {\n      \"Duis_88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eiusmod_58e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildren\": {\n      \"eu_f88\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildren\": {\n      \"ex38b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"proident_c0\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"mollit_5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associations\": {\n      \"minim_8c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    }\n  }\n]"},{"id":"5991133f-89f6-4986-8043-a0a60b6b826e","name":"No entities found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"faa5fa85-53b4-4d73-a4ce-46c53773f865","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"58575126-2175-447d-8687-cd3d375e28a4","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3690d316-93b6-4ecc-9049-228d7a1b6ee1","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/search?searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&getEntityPaths=false&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>&clientSystemFile=<string>&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","search"],"query":[{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"getEntityPaths","value":"false"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"},{"key":"clientSystemFile","value":"<string>"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"5b9e40c2-1514-4e7c-9d7b-99547ff2a817"},{"name":"Get search result data","id":"bd5496c8-8490-42fd-b40a-1cf37b00d3fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","description":"<p>Get various data related to a normal search result. Uses the same as query parameters and body as the normal search. Mainly differs by the return value and some query parameters.</p>\n<p>Entities can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of entities' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found entities. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of entities have special behavior when used as query parameters.</p>\n<p>Entity metadata values can be matched in the query parameters to the body in the following format <code>metadata.&lt;MetadataGroup&gt;.&lt;MetadataKey&gt;</code>. The value is then compared to the values assigned to the key.</p>\n","urlObject":{"path":["branches",":branchId","entities","searchResultData"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return all unique labels found in the result set</p>\n","type":"text/plain"},"key":"getLabelsInResult","value":"false"},{"description":{"content":"<p>Whether to return all unique types found in the result set</p>\n","type":"text/plain"},"key":"getTypesInResult","value":"false"},{"description":{"content":"<p>Whether to get the amount of matched entities</p>\n","type":"text/plain"},"key":"getSearchCount","value":"false"},{"description":{"content":"<p>Search strings to use. Can be regex.</p>\n","type":"text/plain"},"key":"searchString","value":"<string>"},{"description":{"content":"<p>Individual sentences and words to find</p>\n","type":"text/plain"},"key":"searchWordsAndPhrases","value":"<string>"},{"description":{"content":"<p>Required (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"childOf","value":"<string>"},{"description":{"content":"<p>Required composition (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"compositionChildOf","value":"<string>"},{"description":{"content":"<p>Required aggregation (grand)parent of the entities. All childOf parameters are combined with OR.</p>\n","type":"text/plain"},"key":"aggregationChildOf","value":"<string>"},{"description":{"content":"<p>How deep the hierarchy is followed with childOf parameters. With depth of 1 only the direct children are returned. Infinite depth is used if not specified.</p>\n","type":"text/plain"},"key":"hierarchyDepth","value":"<integer>"},{"description":{"content":"<p>Required labels of the entities. Entities can have others too.  to match only unlabeled entities.</p>\n","type":"text/plain"},"key":"labelList","value":"<string>"},{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Whether to also return client system files</p>\n","type":"text/plain"},"key":"clientSystemFile","value":"<string>"}],"variable":[{"id":"36d2892f-f767-4176-abb6-611b3f515023","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"294da7a0-138c-4733-a22c-31435a831d2e","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"entityCount\": \"<integer>\",\n  \"labelsInResult\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"typesInResult\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"28873a0a-8734-459c-ac8e-d13f24595392","name":"Invalid sort order, date or metadata format","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"6cf270f7-d723-486c-9033-4ac8d7720b4f","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"04d7f33d-54d0-4b81-977a-864b7719b1fc","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/searchResultData?getLabelsInResult=false&getTypesInResult=false&getSearchCount=false&searchString=<string>&searchWordsAndPhrases=<string>&childOf=<string>&compositionChildOf=<string>&aggregationChildOf=<string>&hierarchyDepth=<integer>&labelList=<string>&creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&clientSystemFile=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","searchResultData"],"query":[{"key":"getLabelsInResult","value":"false"},{"key":"getTypesInResult","value":"false"},{"key":"getSearchCount","value":"false"},{"key":"searchString","value":"<string>"},{"key":"searchWordsAndPhrases","value":"<string>"},{"key":"childOf","value":"<string>"},{"key":"compositionChildOf","value":"<string>"},{"key":"aggregationChildOf","value":"<string>"},{"key":"hierarchyDepth","value":"<integer>"},{"key":"labelList","value":"<string>"},{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"clientSystemFile","value":"<string>"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"bd5496c8-8490-42fd-b40a-1cf37b00d3fb"},{"name":"Revise entities","id":"45a1f9bf-53d0-4a07-9b3a-3606fc9433f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"entitiesToRevise\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"revisionDescription\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/revise?recursiveLock=false&ignoreThumbnails=false","description":"<p>Revise the selected entities and their composition children</p>\n","urlObject":{"path":["branches",":branchId","entities","revise"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Also lock all aggregation children</p>\n","type":"text/plain"},"key":"recursiveLock","value":"false"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"c6a015f2-bc06-4370-9c76-317873eef82f","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"b37eb819-ed0b-4393-98c0-aa7d18eb92f8","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"53773642-f377-477e-bf5c-44550cb7690e","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"87ea4855-c3a0-41d2-b0a0-434349100b2e","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1335333d-4e34-4909-afb1-604f052c90cd","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"5f6826d9-4937-4080-a3e9-16a7955cef27","name":"An entity has already been revised or an entity is blocked","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"aec4c566-3de7-42c1-8975-12bc2356c65a","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/revise?recursiveLock=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","revise"],"query":[{"key":"recursiveLock","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"45a1f9bf-53d0-4a07-9b3a-3606fc9433f0"},{"name":"Attach files to entities","id":"c4eea621-5b1c-403f-89f9-ebeb7faee7c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"entityId\": \"<string>\",\n    \"attachPayload\": \"<boolean>\",\n    \"attachPreview\": \"<string>\"\n  },\n  {\n    \"entityId\": \"<string>\",\n    \"attachPayload\": \"<boolean>\",\n    \"attachPreview\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/attachFiles?ignoreThumbnails=false","description":"<p>Attach files to entities. Old files are detached if necessary.</p>\n","urlObject":{"path":["branches",":branchId","entities","attachFiles"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"2e4e0bac-6229-44e3-87f6-f699129b8b3e","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"257e68b2-ffaa-446d-a008-8ad5c400d2a1","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/attachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","attachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"entity\": {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"<string,null>\",\n        \"modificationCount\": \"<integer>\",\n        \"creatorId\": \"<string>\",\n        \"modifierId\": \"<string>\",\n        \"creatorName\": \"<string>\",\n        \"modifierName\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"creationTime\": \"<integer>\",\n        \"modificationTime\": \"<integer>\",\n        \"metadata\": {\n          \"reprehenderit_56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"quis_95_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"additionalFields\": \"<object>\",\n        \"cadInformation\": \"<object>\",\n        \"blockedOperations\": {\n          \"OVERWRITE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"OVERWRITE_OTHERS\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"REVISE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"code\": \"<string>\",\n        \"revision\": \"<string>\",\n        \"revisionDescription\": \"<string,null>\",\n        \"predecessorId\": \"<string,null>\",\n        \"successorId\": \"<string,null>\",\n        \"fileId\": \"<string,null>\",\n        \"fileName\": \"<string,null>\",\n        \"fileNameExtension\": \"<string,null>\",\n        \"fileMimeType\": \"<string,null>\",\n        \"thumbnail\": \"<string,null>\",\n        \"previewFileId\": \"<string,null>\",\n        \"labels\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"clientSystemFile\": \"<boolean>\",\n        \"cadId\": \"<string,null>\",\n        \"paths\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"compositionParents\": {\n          \"labore_71\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationParents\": {\n          \"quis94d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_5_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_1bf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim_2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"compositionChildren\": {\n          \"aliqua7a_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"minim_95f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationChildren\": {\n          \"magnab\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"associations\": {\n          \"nond\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"attachedFileId\": \"<string,null>\",\n      \"attachedPreviewFileId\": \"<string,null>\",\n      \"detachedFileId\": \"<string,null>\",\n      \"detachedPreviewFileId\": \"<string,null>\"\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"entity\": {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"<string,null>\",\n        \"modificationCount\": \"<integer>\",\n        \"creatorId\": \"<string>\",\n        \"modifierId\": \"<string>\",\n        \"creatorName\": \"<string>\",\n        \"modifierName\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"creationTime\": \"<integer>\",\n        \"modificationTime\": \"<integer>\",\n        \"metadata\": {\n          \"id__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"additionalFields\": \"<object>\",\n        \"cadInformation\": \"<object>\",\n        \"blockedOperations\": {\n          \"OVERWRITE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"OVERWRITE_OTHERS\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"REVISE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"code\": \"<string>\",\n        \"revision\": \"<string>\",\n        \"revisionDescription\": \"<string,null>\",\n        \"predecessorId\": \"<string,null>\",\n        \"successorId\": \"<string,null>\",\n        \"fileId\": \"<string,null>\",\n        \"fileName\": \"<string,null>\",\n        \"fileNameExtension\": \"<string,null>\",\n        \"fileMimeType\": \"<string,null>\",\n        \"thumbnail\": \"<string,null>\",\n        \"previewFileId\": \"<string,null>\",\n        \"labels\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"clientSystemFile\": \"<boolean>\",\n        \"cadId\": \"<string,null>\",\n        \"paths\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"compositionParents\": {\n          \"irure33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationParents\": {\n          \"occaecat8\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proident_8c_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"compositionChildren\": {\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in644\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Duis_80c\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationChildren\": {\n          \"magna_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed86\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"associations\": {\n          \"reprehenderit_d2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aute_8c\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"attachedFileId\": \"<string,null>\",\n      \"attachedPreviewFileId\": \"<string,null>\",\n      \"detachedFileId\": \"<string,null>\",\n      \"detachedPreviewFileId\": \"<string,null>\"\n    }\n  }\n]"},{"id":"802ae6f5-5e96-4994-97a3-2994442ae867","name":"Invalid combination of attachPayload and attachPreview","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/attachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","attachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"60f4d662-4a11-4a41-87fd-0fb92f8d2856","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/attachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","attachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2bf40d64-39c3-4601-a29b-71dd98fa71a9","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/attachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","attachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"c4eea621-5b1c-403f-89f9-ebeb7faee7c5"},{"name":"Detach files from entities","id":"5b8014b3-df25-4dfd-b9b3-86a8798950d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"entityId\": \"<string>\",\n    \"detachPayload\": \"<boolean>\",\n    \"detachPreview\": \"<boolean>\"\n  },\n  {\n    \"entityId\": \"<string>\",\n    \"detachPayload\": \"<boolean>\",\n    \"detachPreview\": \"<boolean>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/detachFiles?ignoreThumbnails=false","urlObject":{"path":["branches",":branchId","entities","detachFiles"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"aaba4184-9ec9-485d-9083-8d930652bcff","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"f3636319-2561-42bd-9b27-a073e3372c11","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/detachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","detachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"entity\": {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"<string,null>\",\n        \"modificationCount\": \"<integer>\",\n        \"creatorId\": \"<string>\",\n        \"modifierId\": \"<string>\",\n        \"creatorName\": \"<string>\",\n        \"modifierName\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"creationTime\": \"<integer>\",\n        \"modificationTime\": \"<integer>\",\n        \"metadata\": {\n          \"reprehenderit_56\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"quis_95_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"additionalFields\": \"<object>\",\n        \"cadInformation\": \"<object>\",\n        \"blockedOperations\": {\n          \"OVERWRITE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"OVERWRITE_OTHERS\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"REVISE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"code\": \"<string>\",\n        \"revision\": \"<string>\",\n        \"revisionDescription\": \"<string,null>\",\n        \"predecessorId\": \"<string,null>\",\n        \"successorId\": \"<string,null>\",\n        \"fileId\": \"<string,null>\",\n        \"fileName\": \"<string,null>\",\n        \"fileNameExtension\": \"<string,null>\",\n        \"fileMimeType\": \"<string,null>\",\n        \"thumbnail\": \"<string,null>\",\n        \"previewFileId\": \"<string,null>\",\n        \"labels\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"clientSystemFile\": \"<boolean>\",\n        \"cadId\": \"<string,null>\",\n        \"paths\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"compositionParents\": {\n          \"labore_71\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationParents\": {\n          \"quis94d\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"tempor_5_9\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"commodo_1bf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"anim_2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"compositionChildren\": {\n          \"aliqua7a_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"minim_95f\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationChildren\": {\n          \"magnab\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"associations\": {\n          \"nond\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"attachedFileId\": \"<string,null>\",\n      \"attachedPreviewFileId\": \"<string,null>\",\n      \"detachedFileId\": \"<string,null>\",\n      \"detachedPreviewFileId\": \"<string,null>\"\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"entity\": {\n        \"id\": \"<string>\",\n        \"type\": \"<string>\",\n        \"status\": \"<string,null>\",\n        \"modificationCount\": \"<integer>\",\n        \"creatorId\": \"<string>\",\n        \"modifierId\": \"<string>\",\n        \"creatorName\": \"<string>\",\n        \"modifierName\": \"<string>\",\n        \"description\": \"<string,null>\",\n        \"creationTime\": \"<integer>\",\n        \"modificationTime\": \"<integer>\",\n        \"metadata\": {\n          \"id__\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"additionalFields\": \"<object>\",\n        \"cadInformation\": \"<object>\",\n        \"blockedOperations\": {\n          \"OVERWRITE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"OVERWRITE_OTHERS\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"REVISE_EVERYONE\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"name\": \"<string>\",\n        \"code\": \"<string>\",\n        \"revision\": \"<string>\",\n        \"revisionDescription\": \"<string,null>\",\n        \"predecessorId\": \"<string,null>\",\n        \"successorId\": \"<string,null>\",\n        \"fileId\": \"<string,null>\",\n        \"fileName\": \"<string,null>\",\n        \"fileNameExtension\": \"<string,null>\",\n        \"fileMimeType\": \"<string,null>\",\n        \"thumbnail\": \"<string,null>\",\n        \"previewFileId\": \"<string,null>\",\n        \"labels\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"clientSystemFile\": \"<boolean>\",\n        \"cadId\": \"<string,null>\",\n        \"paths\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"compositionParents\": {\n          \"irure33\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationParents\": {\n          \"occaecat8\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"proident_8c_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"compositionChildren\": {\n          \"utf\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Ut_\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"in644\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"Duis_80c\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"aggregationChildren\": {\n          \"magna_6\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed86\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        },\n        \"associations\": {\n          \"reprehenderit_d2a\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"sed_fb\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          \"aute_8c\": {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        }\n      },\n      \"attachedFileId\": \"<string,null>\",\n      \"attachedPreviewFileId\": \"<string,null>\",\n      \"detachedFileId\": \"<string,null>\",\n      \"detachedPreviewFileId\": \"<string,null>\"\n    }\n  }\n]"},{"id":"67953195-02e8-4228-aa73-7eaee44be14e","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/detachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","detachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"1fc4f289-bb0c-483f-8a41-87c5fe61e206","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/detachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","detachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e7952a6a-fea5-4be0-9c27-3696d7e1bba8","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/detachFiles?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","detachFiles"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"5b8014b3-df25-4dfd-b9b3-86a8798950d9"},{"name":"Block entities","id":"a178872a-e018-44ce-a1cc-37cfe40526f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","description":"<p>Block entities and their composition children. Aggregation children can be blocked via a query parameter.</p>\n","urlObject":{"path":["branches",":branchId","entities","block"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>(Required) What blocks to add</p>\n","type":"text/plain"},"key":"operation","value":"<string>"},{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"a90b289d-843f-41bb-a332-2cdf838de227","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"69af2ce8-7644-4a67-bfc1-3e6f450ca4dc","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"3bfb1949-0cba-4a35-95fe-d2e8aa1f84f0","name":"Invalid operation or tried to add reserve and overwrite blocks at the same time","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"a56a3871-4881-425f-9223-49bd2934b14c","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1b995a8f-484b-40b7-8a19-8783e9b24ac8","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"77864253-6bf7-45a0-ac05-6ea6bbf3008a","name":"An entity was already blocked","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/block?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","block"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"a178872a-e018-44ce-a1cc-37cfe40526f0"},{"name":"Unblock entities","id":"df288b50-86f0-40b6-9f3d-66e76adadf54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","description":"<p>Unblock entities and their composition children. Aggregation children can be unblocked via a query parameter.</p>\n","urlObject":{"path":["branches",":branchId","entities","unblock"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>(Required) What blocks to add</p>\n","type":"text/plain"},"key":"operation","value":"<string>"},{"description":{"content":"<p>Whether to also get aggregation children</p>\n","type":"text/plain"},"key":"recursive","value":"false"},{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"47d7e918-f2b2-481f-b29d-b5dc2d89d43f","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"fccbc5d0-effc-4568-8837-95d49e6123b0","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"22301720-ee7b-42a0-b3f3-7816c0457c71","name":"Invalid operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"87b6f571-408a-4dd6-ae63-1033e0d2ec1a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a3569f90-da3b-4487-b698-b9c554062176","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"d7ca541a-5894-4fcd-a8a1-794f232027e6","name":"An entity was not the newest revision","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/unblock?operation=<string>&recursive=false&ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","unblock"],"query":[{"key":"operation","value":"<string>"},{"key":"recursive","value":"false"},{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"df288b50-86f0-40b6-9f3d-66e76adadf54"},{"name":"Add relations to entities","id":"4e729a25-4433-4a28-a9a3-7cd24f5cb017","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"<string>\",\n    \"modificationCount\": \"<integer>\",\n    \"compositionParentsToOverwrite\": {\n      \"irure_a3c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildrenToOverwrite\": {\n      \"sunt_ce\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParentsToOverwrite\": {\n      \"dolore___\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildrenToOverwrite\": {\n      \"ad88f\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"labore_003\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"commodo__00\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"in_b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associationsToOverwrite\": {\n      \"Excepteur01\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_f4\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionParentsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionChildrenToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aggregationParentsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aggregationChildrenToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"associationsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"id\": \"<string>\",\n    \"modificationCount\": \"<integer>\",\n    \"compositionParentsToOverwrite\": {\n      \"eiusmod_5d\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"Excepteur_c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionChildrenToOverwrite\": {\n      \"irure_909\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"veniam_3d5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationParentsToOverwrite\": {\n      \"culpaf8e\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sunt_76\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"eu_c1\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"cillum_c8b\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"aggregationChildrenToOverwrite\": {\n      \"enim_2c\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"sed_3\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ],\n      \"utce5\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"associationsToOverwrite\": {\n      \"eu2\": [\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      ]\n    },\n    \"compositionParentsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"compositionChildrenToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aggregationParentsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"aggregationChildrenToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"associationsToRemove\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/relations?ignoreThumbnails=false","description":"<p>Update entities' relations. Allows modifying an entity's relations to specific entities, but the relation lists can only be overwritten or removed. Adding a single relation to the list is not possible without overwriting the entire list.</p>\n","urlObject":{"path":["branches",":branchId","entities","relations"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Whether to return the thumbnails for the entities</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"false"}],"variable":[{"id":"faf94d74-cb83-48aa-99cc-eafce4f8752d","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"a8d663cd-bce5-4b2b-8c8c-ccbb71951eba","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"cupidatat_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"incididunt_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"laborum_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eue\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"eiusmod1b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodocd6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"irure2c_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Ut_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"incididunt_824\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"velit29c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eiusmod77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"pariatur6b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse1b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua3d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"targetIndex\": \"<integer>\",\n    \"data\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"aliquipe\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"tempore98\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"do_fdc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillume6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proidentc8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_45\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"in_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"non9bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"mollit_bee\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  }\n]"},{"id":"12335a2a-a938-4ec7-9ac9-e9a8a93e2396","name":"Invalid relations","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"ddec6d8f-4683-47d0-be49-8c8bdee326a7","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"bb95ef8b-bee6-4083-a4db-aaa5a862a93e","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"902bd43d-c071-4719-9df9-f0e4186adc6f","name":"Wrong modificationCount or the given entity or an added or removed composition parent, child or aggregation parent was blocked","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/entities/relations?ignoreThumbnails=false","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","entities","relations"],"query":[{"key":"ignoreThumbnails","value":"false"}],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"4e729a25-4433-4a28-a9a3-7cd24f5cb017"}],"id":"f6470020-3071-412c-805d-ed10aeb25cb9","_postman_id":"f6470020-3071-412c-805d-ed10aeb25cb9","description":""},{"name":"Get branch by ID","id":"1e403b95-d389-45bf-8e61-19081db67ab9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId","urlObject":{"path":["branches",":branchId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"4b1af23d-905e-4c2d-9963-0d2d7a1ee36b","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"7ce1534e-940e-4f9c-bff9-5e3508e1e72b","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"creatorId\": \"<string>\",\n  \"modifierId\": \"<string>\",\n  \"creatorName\": \"<string>\",\n  \"modifierName\": \"<string>\",\n  \"description\": \"<string>\",\n  \"creationTime\": \"<integer>\",\n  \"modificationTime\": \"<integer>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"sourceBranchId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"inc5d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ex66f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"aliquipad\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"adipisicing_18\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"minim1d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"adca\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"et_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"in_4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"fugiat_cd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"tempor1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"anim0a_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_e8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"et5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"officiae9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"in08\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit22\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit8_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"consecteturc51\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sed113\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"incididunta\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"aliquip_c5_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"sed02\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"non_5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"Loremf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodo444\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"magnaf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"veniam174\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"enim19\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"laborum_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": null,\n      \"compositionParents\": {\n        \"culpa_b6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"officia4d1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolor_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"voluptate_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"commodo34\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ex_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"sint_b8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"anim_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"bea4b608-bd43-417e-a282-fe6b0aeb0cc5","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"423ef8a6-ff22-4eb1-8879-437b3b24805f","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"1e403b95-d389-45bf-8e61-19081db67ab9"},{"name":"Delete branch by ID","id":"bb8392f1-6350-4589-bc4c-9f02ea814f06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId","description":"<p>Deletes the branch and all its entities. Branches made of this branch become unmergeable.</p>\n","urlObject":{"path":["branches",":branchId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"ccc8fbb5-3dc6-45db-a2be-8144d107ab51","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"4d273d53-8bb7-49c3-9800-1cc5199a8f41","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3d4aded7-deef-499a-bc27-ff2ed9606f93","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"48abe71c-8893-4679-a0a6-66f75748d5d7","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"bb8392f1-6350-4589-bc4c-9f02ea814f06"},{"name":"Merge a branch","id":"2a5f0996-ac79-4fc3-a7e3-231213f22eab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/merge","description":"<p>Merge a branch. The branch is always merged to the place where the branch was created from (another branch or the default database). If the source branch does not exist the branch is not mergeable. The branch is also not mergeable if even a single entity's modificationCount does not match the value it was when the branch was created.</p>\n","urlObject":{"path":["branches",":branchId","merge"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"b7cf7a20-ab69-45ea-ae69-8a79fdd1bc4d","description":{"content":"<p>(Required) The branch id to use</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"branchId"}]}},"response":[{"id":"f15a65cc-a885-460d-9d75-f46f05b39ec6","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/merge","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","merge"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b95c83bb-4236-4132-bfa2-20b058bfc588","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/merge","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","merge"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"e66910ee-c61a-40dc-840d-5088e94cbadf","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/merge","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","merge"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"9501756c-b0b8-48b7-8e9e-619cdadb0217","name":"Branch already merged, deleted or not mergeable","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/:branchId/merge","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches",":branchId","merge"],"variable":[{"key":"branchId","value":"<string>","description":"(Required) The branch id to use"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"2a5f0996-ac79-4fc3-a7e3-231213f22eab"}],"id":"4da7364e-e5c8-4218-a607-0ccdc984f571","_postman_id":"4da7364e-e5c8-4218-a607-0ccdc984f571","description":""},{"name":"Check readiness of the service","id":"1eb1eedc-902f-47e8-ac61-74c45994e30d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/branches","urlObject":{"path":["branches"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"dbc05774-ef8a-4fb1-997b-ad20c9ec96f6","name":"Service alive and well","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/branches"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1eb1eedc-902f-47e8-ac61-74c45994e30d"},{"name":"Create a branch","id":"e32c6885-2f7c-47de-aa28-02e723ff77f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"uta5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"veniam_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"sint234\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"nostrud3c9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolorec\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"proident_14\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliquip301\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"eiusmod_cc0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"pariaturd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nisi8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nisib6e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"in5f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"eiusmod_f8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Duis_f74\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"cillume\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"est_0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"sit_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"reprehenderit_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"mollit_db\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"enime_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"Ut70\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"reprehenderit__\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ea_74\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"qui_1fc\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"qui6a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"velite78\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"magnac\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"Lorem_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"id459\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"etf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"dolore_fdf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"voluptate02\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"in0b7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"cillum94_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ullamcob\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"sint85b\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"animc8_\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"sit_1e_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"sint__\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"ipsum_af\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"magna_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"culpad0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nullad\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"magnae69\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"dob11\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"elit_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"consectetur_bb\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches","description":"<p>Create a branch. Existing entities can only be added to a branch during the creation of the branch. All entities related to the added entities via relations are also added to the branch. Predecessors and successors not automatically added.</p>\n<p>The API also provides fields to create, overwrite and delete entities during the creation of the branch, but they are not necessary to use in any situation. Those operations can be done as normal after the branch has been created.</p>\n","urlObject":{"path":["branches"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"bfed1791-d760-4d47-9b79-5aac3a3310b8","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"ut_4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodo25\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sint_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nisi8_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proident_bd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"est72d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ea_d5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"velitaf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nostrud871\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliquipd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"sed_c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"id_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"tempor31c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sit_79e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore_726\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud91\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"mollit_99a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eu_ff4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolor_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"pariatured1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"in_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"non5c5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"irure_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"id1\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"do_5f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"est_e62\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Lorem_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"proident_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"cupidatat4d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ipsum_f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"anim_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nisi_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"et_10\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"eu87\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ad781\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"utd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"officia9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"deseruntb1c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"animfd8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolore321\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"aliquip44\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ad__d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"exercitation_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"occaecat1_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Duis_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"do_1b\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"dolor_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua__5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"veniam4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"irure_927\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore102\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"aliqua_1e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"Ut0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit_77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"irure_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"eiusmod_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"status\": \"<string,null>\",\n  \"creatorId\": \"<string>\",\n  \"modifierId\": \"<string>\",\n  \"creatorName\": \"<string>\",\n  \"modifierName\": \"<string>\",\n  \"description\": \"<string>\",\n  \"creationTime\": \"<integer>\",\n  \"modificationTime\": \"<integer>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"sourceBranchId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"inc5d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ex66f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"aliquipad\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"adipisicing_18\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"minim1d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"adca\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"et_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"in_4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"fugiat_cd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"tempor1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"anim0a_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_e8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"et5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"officiae9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"in08\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit22\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit8_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"compositionParents\": {\n        \"consecteturc51\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sed113\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"incididunta\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"aliquip_c5_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"sed02\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"non_5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"Loremf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodo444\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"magnaf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"veniam174\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"enim19\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"creatorId\": \"<string>\",\n      \"modifierId\": \"<string>\",\n      \"creatorName\": \"<string>\",\n      \"modifierName\": \"<string>\",\n      \"description\": \"<string,null>\",\n      \"creationTime\": \"<integer>\",\n      \"modificationTime\": \"<integer>\",\n      \"metadata\": {\n        \"laborum_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"blockedOperations\": {\n        \"OVERWRITE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"OVERWRITE_OTHERS\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"REVISE_EVERYONE\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"predecessorId\": \"<string,null>\",\n      \"successorId\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"fileName\": \"<string,null>\",\n      \"fileNameExtension\": \"<string,null>\",\n      \"fileMimeType\": \"<string,null>\",\n      \"thumbnail\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"paths\": null,\n      \"compositionParents\": {\n        \"culpa_b6\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"officia4d1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolor_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"voluptate_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"commodo34\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ex_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"sint_b8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"anim_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}"},{"id":"5d579597-d3ef-4dfe-83a8-cc0826717e52","name":"Invalid name, type, code, revision, relations, labels or combination of attachFile and attachPreviewFile","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"ut_4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodo25\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sint_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nisi8_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proident_bd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"est72d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ea_d5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"velitaf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nostrud871\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliquipd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"sed_c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"id_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"tempor31c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sit_79e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore_726\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud91\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"mollit_99a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eu_ff4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolor_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"pariatured1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"in_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"non5c5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"irure_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"id1\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"do_5f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"est_e62\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Lorem_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"proident_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"cupidatat4d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ipsum_f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"anim_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nisi_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"et_10\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"eu87\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ad781\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"utd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"officia9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"deseruntb1c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"animfd8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolore321\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"aliquip44\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ad__d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"exercitation_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"occaecat1_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Duis_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"do_1b\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"dolor_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua__5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"veniam4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"irure_927\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore102\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"aliqua_1e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"Ut0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit_77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"irure_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"eiusmod_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"f41a3b7b-b328-4547-a605-02babbc79fab","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"ut_4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodo25\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sint_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nisi8_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proident_bd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"est72d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ea_d5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"velitaf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nostrud871\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliquipd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"sed_c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"id_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"tempor31c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sit_79e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore_726\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud91\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"mollit_99a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eu_ff4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolor_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"pariatured1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"in_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"non5c5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"irure_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"id1\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"do_5f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"est_e62\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Lorem_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"proident_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"cupidatat4d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ipsum_f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"anim_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nisi_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"et_10\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"eu87\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ad781\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"utd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"officia9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"deseruntb1c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"animfd8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolore321\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"aliquip44\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ad__d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"exercitation_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"occaecat1_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Duis_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"do_1b\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"dolor_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua__5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"veniam4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"irure_927\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore102\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"aliqua_1e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"Ut0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit_77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"irure_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"eiusmod_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"13285e06-cc8c-4736-b646-84e1375183d0","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"ut_4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodo25\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sint_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nisi8_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proident_bd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"est72d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ea_d5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"velitaf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nostrud871\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliquipd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"sed_c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"id_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"tempor31c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sit_79e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore_726\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud91\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"mollit_99a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eu_ff4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolor_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"pariatured1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"in_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"non5c5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"irure_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"id1\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"do_5f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"est_e62\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Lorem_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"proident_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"cupidatat4d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ipsum_f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"anim_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nisi_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"et_10\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"eu87\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ad781\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"utd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"officia9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"deseruntb1c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"animfd8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolore321\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"aliquip44\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ad__d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"exercitation_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"occaecat1_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Duis_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"do_1b\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"dolor_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua__5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"veniam4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"irure_927\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore102\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"aliqua_1e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"Ut0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit_77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"irure_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"eiusmod_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"2edc36de-8224-4d2b-8414-aa6d3347017a","name":"Duplicate ID or type and code, blocked related entities, wrong modificationCount or not deletable entity","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"ut_4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodo25\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sint_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nisi8_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proident_bd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"est72d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ea_d5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"velitaf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nostrud871\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliquipd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"sed_c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"id_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"tempor31c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sit_79e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore_726\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud91\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"mollit_99a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eu_ff4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolor_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"pariatured1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"in_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"non5c5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"irure_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"id1\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"do_5f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"est_e62\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Lorem_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"proident_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"cupidatat4d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ipsum_f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"anim_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nisi_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"et_10\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"eu87\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ad781\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"utd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"officia9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"deseruntb1c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"animfd8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolore321\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"aliquip44\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ad__d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"exercitation_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"occaecat1_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Duis_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"do_1b\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"dolor_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua__5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"veniam4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"irure_927\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore102\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"aliqua_1e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"Ut0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit_77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"irure_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"eiusmod_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"},{"id":"1b5ad3c7-cd6e-4419-9dec-6376bd055491","name":"Invalid revision or code format in tenant settings","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"description\": \"<string>\",\n  \"additionalFields\": \"<object>\",\n  \"cadInformation\": \"<object>\",\n  \"cadId\": \"<string,null>\",\n  \"entities\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"createdEntities\": [\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"ut_4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"anim_9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"esse_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"commodo25\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sint_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nisi8_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"proident_bd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"est72d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ea_d5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"velitaf\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nostrud871\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliquipd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"sed_c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"id_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"tempor31c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"sit_79e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore_726\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud91\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"mollit_99a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"eu_ff4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolor_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"pariatured1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"in_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"non5c5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"irure_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  ],\n  \"overwrittenEntities\": {\n    \"id1\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"do_5f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"est_e62\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Lorem_d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"proident_7\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"cupidatat4d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ut_0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ipsum_f\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"anim_e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"nisi_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"et_10\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"eu87\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"ad781\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"utd\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"officia9\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"deseruntb1c\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"animfd8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"dolore321\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"aliquip44\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"ad__d\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"exercitation_\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"occaecat1_a\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"Duis_8\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    },\n    \"do_1b\": {\n      \"id\": \"<string>\",\n      \"type\": \"<string>\",\n      \"status\": \"<string,null>\",\n      \"modificationCount\": \"<integer>\",\n      \"description\": \"<string,null>\",\n      \"metadata\": {\n        \"dolor_3\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"aliqua__5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"additionalFields\": \"<object>\",\n      \"cadInformation\": \"<object>\",\n      \"name\": \"<string>\",\n      \"code\": \"<string>\",\n      \"revision\": \"<string>\",\n      \"revisionDescription\": \"<string,null>\",\n      \"fileId\": \"<string,null>\",\n      \"previewFileId\": \"<string,null>\",\n      \"labels\": [\n        \"<string>\",\n        \"<string>\"\n      ],\n      \"clientSystemFile\": \"<boolean>\",\n      \"cadId\": \"<string,null>\",\n      \"compositionParents\": {\n        \"veniam4\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"nostrud5\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"irure_927\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"labore102\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationParents\": {\n        \"aliqua_1e\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"compositionChildren\": {\n        \"Ut0\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ],\n        \"reprehenderit_77\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"aggregationChildren\": {\n        \"irure_1\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      },\n      \"associations\": {\n        \"eiusmod_2\": [\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          },\n          {\n            \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n          }\n        ]\n      }\n    }\n  },\n  \"deletedEntities\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches"},"status":"Precondition Failed","code":412,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"e32c6885-2f7c-47de-aa28-02e723ff77f6"},{"name":"Search branches","id":"738999af-7bf0-475c-992c-dc425bfb6391","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"whitelistValues\": {\n    \"fugiat83\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"blacklistValues\": {\n    \"sed_12\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  \"idSortOrder\": [\n    \"<string>\",\n    \"<string>\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/search?creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>","description":"<p>Search, find and filter branches with pagination.</p>\n<p>Branches can be filtered via the query parameters and the body. All query parameters and the body is optional. Most of branches' fields can be directly used in the query parameters or the body. Properties in the query parameters must match the found branches. The whitelist in the body can be used to choose multiple allowed values. The blacklist can be used to completely disallow some value.</p>\n<p>Some fields of branches have special behavior when used as query parameters.</p>\n<p>Pagination can be done via the skip and limit parameters.</p>\n","urlObject":{"path":["branches","search"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Earliest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed creation time</p>\n","type":"text/plain"},"key":"creationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>Earliest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeStart","value":"<dateTime>"},{"description":{"content":"<p>Latest allowed modification time</p>\n","type":"text/plain"},"key":"modificationTimeEnd","value":"<dateTime>"},{"description":{"content":"<p>How many entities to skip</p>\n","type":"text/plain"},"key":"skip","value":"<integer>"},{"description":{"content":"<p>How many entities to return</p>\n","type":"text/plain"},"key":"limit","value":"false"},{"description":{"content":"<p>What field to sort by</p>\n","type":"text/plain"},"key":"sortBy","value":"<string>"},{"description":{"content":"<p>What direction to sort</p>\n","type":"text/plain"},"key":"sortDir","value":"<string>"}],"variable":[]}},"response":[{"id":"2d945f71-b88d-4c8e-b956-7c4f85576dae","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/search?creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches","search"],"query":[{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"cadId\": \"<string,null>\",\n    \"sourceBranchId\": \"<string,null>\",\n    \"entities\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"createdEntities\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"status\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationCount\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"description\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"metadata\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"additionalFields\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadInformation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"blockedOperations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"name\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"code\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revision\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revisionDescription\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"predecessorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"successorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileNameExtension\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileMimeType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"thumbnail\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"previewFileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"labels\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"clientSystemFile\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"paths\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"associations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"status\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationCount\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"description\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"metadata\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"additionalFields\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadInformation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"blockedOperations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"name\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"code\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revision\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revisionDescription\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"predecessorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"successorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileNameExtension\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileMimeType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"thumbnail\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"previewFileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"labels\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"clientSystemFile\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"paths\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"associations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"overwrittenEntities\": {\n      \"aliquip_f\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"status\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationCount\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"description\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"metadata\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"additionalFields\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadInformation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"blockedOperations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"name\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"code\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revision\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revisionDescription\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"predecessorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"successorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileNameExtension\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileMimeType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"thumbnail\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"previewFileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"labels\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"clientSystemFile\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"paths\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"associations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"in__\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"status\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationCount\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"description\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"metadata\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"additionalFields\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadInformation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"blockedOperations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"name\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"code\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revision\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revisionDescription\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"predecessorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"successorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileNameExtension\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileMimeType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"thumbnail\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"previewFileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"labels\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"clientSystemFile\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"paths\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"associations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"deletedEntities\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  },\n  {\n    \"id\": \"<string>\",\n    \"status\": \"<string,null>\",\n    \"creatorId\": \"<string>\",\n    \"modifierId\": \"<string>\",\n    \"creatorName\": \"<string>\",\n    \"modifierName\": \"<string>\",\n    \"description\": \"<string>\",\n    \"creationTime\": \"<integer>\",\n    \"modificationTime\": \"<integer>\",\n    \"additionalFields\": \"<object>\",\n    \"cadInformation\": \"<object>\",\n    \"cadId\": \"<string,null>\",\n    \"sourceBranchId\": \"<string,null>\",\n    \"entities\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"createdEntities\": [\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"status\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationCount\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"description\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"metadata\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"additionalFields\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadInformation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"blockedOperations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"name\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"code\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revision\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revisionDescription\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"predecessorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"successorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileNameExtension\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileMimeType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"thumbnail\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"previewFileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"labels\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"clientSystemFile\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"paths\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"associations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"status\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationCount\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"description\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"metadata\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"additionalFields\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadInformation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"blockedOperations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"name\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"code\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revision\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revisionDescription\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"predecessorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"successorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileNameExtension\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileMimeType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"thumbnail\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"previewFileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"labels\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"clientSystemFile\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"paths\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"associations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"overwrittenEntities\": {\n      \"sit1\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"status\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationCount\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"description\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"metadata\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"additionalFields\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadInformation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"blockedOperations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"name\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"code\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revision\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revisionDescription\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"predecessorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"successorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileNameExtension\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileMimeType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"thumbnail\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"previewFileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"labels\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"clientSystemFile\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"paths\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"associations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      \"laboris_8\": {\n        \"id\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"type\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"status\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationCount\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creatorName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modifierName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"description\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"creationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"modificationTime\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"metadata\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"additionalFields\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadInformation\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"blockedOperations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"name\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"code\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revision\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"revisionDescription\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"predecessorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"successorId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileName\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileNameExtension\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"fileMimeType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"thumbnail\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"previewFileId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"labels\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"clientSystemFile\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"cadId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"paths\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationParents\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"compositionChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"aggregationChildren\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"associations\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    },\n    \"deletedEntities\": [\n      \"<string>\",\n      \"<string>\"\n    ]\n  }\n]"},{"id":"33cfdb91-48b7-46a1-a06a-ff8ad3499c5d","name":"No branches found","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/search?creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches","search"],"query":[{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f9b4a5ae-a9fa-436f-bdc5-ba0c3eb77bfe","name":"Invalid sort order","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/branches/search?creationTimeStart=<dateTime>&creationTimeEnd=<dateTime>&modificationTimeStart=<dateTime>&modificationTimeEnd=<dateTime>&skip=<integer>&limit=false&sortBy=<string>&sortDir=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["branches","search"],"query":[{"key":"creationTimeStart","value":"<dateTime>"},{"key":"creationTimeEnd","value":"<dateTime>"},{"key":"modificationTimeStart","value":"<dateTime>"},{"key":"modificationTimeEnd","value":"<dateTime>"},{"key":"skip","value":"<integer>"},{"key":"limit","value":"false"},{"key":"sortBy","value":"<string>"},{"key":"sortDir","value":"<string>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"738999af-7bf0-475c-992c-dc425bfb6391"},{"name":"Delete orphan branches","id":"56f771df-ce88-440b-acc6-88e5a2cea548","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://sync.vertex.fi/api/rest/v1/branches/orphans","description":"<p>Delete orphan branches. Orphan branches are branches that have a source branch ID, but that branch does not exist anymore.</p>\n","urlObject":{"path":["branches","orphans"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"b956f9d7-d904-4410-b7a5-7954836fe353","name":"No content","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/orphans"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"08f76ac6-eec0-4eea-8394-c171be1b002e","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/branches/orphans"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"56f771df-ce88-440b-acc6-88e5a2cea548"},{"name":"Get branch statuses","id":"9a679957-ffb1-4b74-a160-4696420ea561","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/statuses","description":"<p>Get branch statuses. Branch statuses are determined by their existence and relation to other branches.</p>\n<p>updateInProgress: Another branch has been created of this branch and it has not been merged\nupdateFailed: Another branch has been created of this branch, it has not been merged and it is too old\nnotFound: The branch does not exist\nvalid: Default case</p>\n","urlObject":{"path":["branches","statuses"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"4b5ac1a1-4dad-4fd1-9d29-4ce7bc3a41be","name":"Successful operation","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/statuses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"ullamco_7\": \"<string>\"\n}"},{"id":"8e926ffd-f007-4bda-88a9-7280bca53fbe","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/branches/statuses"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"timestamp\": \"<number>\",\n  \"path\": \"<string>\",\n  \"status\": \"<number>\",\n  \"error\": \"<string>\",\n  \"message\": \"<string>\",\n  \"requestId\": \"<string>\",\n  \"trace\": \"<string>\"\n}"}],"_postman_id":"9a679957-ffb1-4b74-a160-4696420ea561"}],"id":"2ebb3545-724b-4fea-9d15-b316624a0611","_postman_id":"2ebb3545-724b-4fea-9d15-b316624a0611","description":""},{"name":"eventservice","item":[{"name":"Check service readiness","id":"3a6fe2be-6c80-40d9-91de-8f8f5e280b33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/eventservice","urlObject":{"path":["eventservice"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"97606df0-35b2-48ef-8a62-233753ed4f9e","name":"No Content, service is ready","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/eventservice"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3a6fe2be-6c80-40d9-91de-8f8f5e280b33"},{"name":"Get service version information","id":"4435957c-aa03-45c1-83e1-768bc1837e1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/eventservice/info/version","urlObject":{"path":["eventservice","info","version"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"0645b029-29f8-4261-8765-30be1261108a","name":"Successfully retrieved version information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/eventservice/info/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"version\": \"<string>\",\n  \"commitHash\": \"<string,null>\",\n  \"buildTime\": \"<string,null>\",\n  \"buildNumber\": \"<string,null>\"\n}"}],"_postman_id":"4435957c-aa03-45c1-83e1-768bc1837e1a"}],"id":"94e78904-654f-431c-8e3f-b4ab9ca445a8","_postman_id":"94e78904-654f-431c-8e3f-b4ab9ca445a8","description":""},{"name":"events","item":[{"name":"poi","item":[{"name":"Get POI events for the current user","id":"d4fad22a-fe73-4bf3-a0b4-d47615fdae75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/events/poi","description":"<p>Retrieves point of interest (POI) events associated with the current user.</p>\n","urlObject":{"path":["events","poi"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"9fe95293-c52f-4921-98d8-bf8518227119","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/events/poi"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"UserId\": \"<string>\",\n  \"Events\": [\n    {\n      \"Id\": \"<string>\",\n      \"IsUnread\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"IsUnread\": \"<boolean>\"\n    }\n  ],\n  \"Version\": \"<long>\"\n}"},{"id":"50895e3f-4421-4b74-898b-020471cc8029","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/events/poi"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"393d2514-c578-4b72-808f-93d72de7301a","name":"POI events not found for the user","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/events/poi"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d4fad22a-fe73-4bf3-a0b4-d47615fdae75"},{"name":"Delete specified POI events","id":"4ae39a3a-0b12-4ebc-bbd8-a4776b1449d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/events/poi","description":"<p>Deletes POI events based on a list of event IDs provided in the request body.</p>\n","urlObject":{"path":["events","poi"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"40f8c208-e173-4d70-86a3-bdb4381022e5","name":"Successful operation","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/events/poi"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"UserId\": \"<string>\",\n  \"Events\": [\n    {\n      \"Id\": \"<string>\",\n      \"IsUnread\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"IsUnread\": \"<boolean>\"\n    }\n  ],\n  \"Version\": \"<long>\"\n}"},{"id":"103520a8-7459-46fd-ab3d-ee056b5705ab","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/events/poi"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"5d37dd78-14e7-4b12-b236-2d67ec33d59b","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/events/poi"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4ae39a3a-0b12-4ebc-bbd8-a4776b1449d8"},{"name":"Mark specified POI events as read","id":"020cf56e-f6e1-4713-b081-b8b2be4a2d97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/events/poi/read","urlObject":{"path":["events","poi","read"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"9530cddf-1db7-4d53-8c35-f71b7dda5e3d","name":"Successful operation","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/events/poi/read"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"UserId\": \"<string>\",\n  \"Events\": [\n    {\n      \"Id\": \"<string>\",\n      \"IsUnread\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"IsUnread\": \"<boolean>\"\n    }\n  ],\n  \"Version\": \"<long>\"\n}"},{"id":"5da27fb8-571d-40e6-b9de-3fd7963ed868","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/events/poi/read"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"020cf56e-f6e1-4713-b081-b8b2be4a2d97"}],"id":"092bb6bd-07bd-4e71-9588-05e0ea8e16e7","_postman_id":"092bb6bd-07bd-4e71-9588-05e0ea8e16e7","description":""},{"name":"Search for events based on criteria","id":"11699b29-9a24-4d88-92cc-4303b60936e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/events?id=<string>&id=<string>&type=<string>&type=<string>&resource=<string>&resource=<string>&authorid=<string>&authorid=<string>&authorname=<string>&authorname=<string>&timestampbegin=<dateTime>&timestampend=<dateTime>&comment=<string>","description":"<p>Retrieves a list of events filtered by the specified search criteria.</p>\n","urlObject":{"path":["events"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Filter by event IDs</p>\n","type":"text/plain"},"key":"id","value":"<string>"},{"description":{"content":"<p>Filter by event IDs</p>\n","type":"text/plain"},"key":"id","value":"<string>"},{"description":{"content":"<p>Filter by event types</p>\n","type":"text/plain"},"key":"type","value":"<string>"},{"description":{"content":"<p>Filter by event types</p>\n","type":"text/plain"},"key":"type","value":"<string>"},{"description":{"content":"<p>Filter by event resources</p>\n","type":"text/plain"},"key":"resource","value":"<string>"},{"description":{"content":"<p>Filter by event resources</p>\n","type":"text/plain"},"key":"resource","value":"<string>"},{"description":{"content":"<p>Filter by author IDs</p>\n","type":"text/plain"},"key":"authorid","value":"<string>"},{"description":{"content":"<p>Filter by author IDs</p>\n","type":"text/plain"},"key":"authorid","value":"<string>"},{"description":{"content":"<p>Filter by author name</p>\n","type":"text/plain"},"key":"authorname","value":"<string>"},{"description":{"content":"<p>Filter by author name</p>\n","type":"text/plain"},"key":"authorname","value":"<string>"},{"description":{"content":"<p>Filter events that started after this timestamp</p>\n","type":"text/plain"},"key":"timestampbegin","value":"<dateTime>"},{"description":{"content":"<p>Filter events that ended before this timestamp</p>\n","type":"text/plain"},"key":"timestampend","value":"<dateTime>"},{"description":{"content":"<p>Filter events by comment</p>\n","type":"text/plain"},"key":"comment","value":"<string>"}],"variable":[]}},"response":[{"id":"92a5e4b9-0b40-4ccf-8b41-b22c50db007b","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/events?id=<string>&id=<string>&type=<string>&type=<string>&resource=<string>&resource=<string>&authorid=<string>&authorid=<string>&authorname=<string>&authorname=<string>&timestampbegin=<dateTime>&timestampend=<dateTime>&comment=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["events"],"query":[{"key":"id","value":"<string>"},{"key":"id","value":"<string>"},{"key":"type","value":"<string>"},{"key":"type","value":"<string>"},{"key":"resource","value":"<string>"},{"key":"resource","value":"<string>"},{"key":"authorid","value":"<string>"},{"key":"authorid","value":"<string>"},{"key":"authorname","value":"<string>"},{"key":"authorname","value":"<string>"},{"key":"timestampbegin","value":"<dateTime>"},{"key":"timestampend","value":"<dateTime>"},{"key":"comment","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"Id\": \"<string,null-objectId>\",\n    \"EventGroupId\": \"<string,null>\",\n    \"Type\": \"<string>\",\n    \"Resource\": {\n      \"Id\": \"<string,null>\",\n      \"CollectionId\": \"<string,null>\",\n      \"CollectionType\": \"<string,null>\",\n      \"Type\": \"<string,null>\",\n      \"Name\": \"<string,null>\"\n    },\n    \"Author\": {\n      \"Id\": \"<string,null>\",\n      \"Name\": \"<string,null>\",\n      \"Image\": \"<string,null>\"\n    },\n    \"Timestamp\": \"<dateTime>\",\n    \"Comment\": \"<string,null>\"\n  },\n  {\n    \"Id\": \"<string,null-objectId>\",\n    \"EventGroupId\": \"<string,null>\",\n    \"Type\": \"<string>\",\n    \"Resource\": {\n      \"Id\": \"<string,null>\",\n      \"CollectionId\": \"<string,null>\",\n      \"CollectionType\": \"<string,null>\",\n      \"Type\": \"<string,null>\",\n      \"Name\": \"<string,null>\"\n    },\n    \"Author\": {\n      \"Id\": \"<string,null>\",\n      \"Name\": \"<string,null>\",\n      \"Image\": \"<string,null>\"\n    },\n    \"Timestamp\": \"<dateTime>\",\n    \"Comment\": \"<string,null>\"\n  }\n]"},{"id":"a298e557-f5f3-4bfc-95fc-16b5689910eb","name":"Bad Request","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/events?id=<string>&id=<string>&type=<string>&type=<string>&resource=<string>&resource=<string>&authorid=<string>&authorid=<string>&authorname=<string>&authorname=<string>&timestampbegin=<dateTime>&timestampend=<dateTime>&comment=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["events"],"query":[{"key":"id","value":"<string>"},{"key":"id","value":"<string>"},{"key":"type","value":"<string>"},{"key":"type","value":"<string>"},{"key":"resource","value":"<string>"},{"key":"resource","value":"<string>"},{"key":"authorid","value":"<string>"},{"key":"authorid","value":"<string>"},{"key":"authorname","value":"<string>"},{"key":"authorname","value":"<string>"},{"key":"timestampbegin","value":"<dateTime>"},{"key":"timestampend","value":"<dateTime>"},{"key":"comment","value":"<string>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3d351cc4-2b43-4e2d-8658-ab788bd3bf1a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/events?id=<string>&id=<string>&type=<string>&type=<string>&resource=<string>&resource=<string>&authorid=<string>&authorid=<string>&authorname=<string>&authorname=<string>&timestampbegin=<dateTime>&timestampend=<dateTime>&comment=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["events"],"query":[{"key":"id","value":"<string>"},{"key":"id","value":"<string>"},{"key":"type","value":"<string>"},{"key":"type","value":"<string>"},{"key":"resource","value":"<string>"},{"key":"resource","value":"<string>"},{"key":"authorid","value":"<string>"},{"key":"authorid","value":"<string>"},{"key":"authorname","value":"<string>"},{"key":"authorname","value":"<string>"},{"key":"timestampbegin","value":"<dateTime>"},{"key":"timestampend","value":"<dateTime>"},{"key":"comment","value":"<string>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"11699b29-9a24-4d88-92cc-4303b60936e2"},{"name":"Get an event by ID","id":"6c8b1781-44f9-4f6a-8337-536aa2d91d5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/events/:id","description":"<p>Retrieves a specific event by its unique identifier.</p>\n","urlObject":{"path":["events",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"f9a23ed0-ae80-4f16-8f0c-a600b4b2c3dd","description":{"content":"<p>(Required) The unique identifier of the event.</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"85d92eb0-c851-4b1a-9ccc-de1c2b4a5f56","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/events/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["events",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The unique identifier of the event."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"Id\": \"<string,null-objectId>\",\n  \"EventGroupId\": \"<string,null>\",\n  \"Type\": \"<string>\",\n  \"Resource\": {\n    \"Id\": \"<string,null>\",\n    \"CollectionId\": \"<string,null>\",\n    \"CollectionType\": \"<string,null>\",\n    \"Type\": \"<string,null>\",\n    \"Name\": \"<string,null>\"\n  },\n  \"Author\": {\n    \"Id\": \"<string,null>\",\n    \"Name\": \"<string,null>\",\n    \"Image\": \"<string,null>\"\n  },\n  \"Timestamp\": \"<dateTime>\",\n  \"Comment\": \"<string,null>\"\n}"},{"id":"95588465-fb29-4b08-afe9-7942ab0c0c7a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/events/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["events",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The unique identifier of the event."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"715fc747-cbcd-4d68-804f-0c9f8612dac8","name":"Event not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/events/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["events",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The unique identifier of the event."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6c8b1781-44f9-4f6a-8337-536aa2d91d5f"}],"id":"d61bdc13-8539-412a-9221-41614eb51167","_postman_id":"d61bdc13-8539-412a-9221-41614eb51167","description":""},{"name":"files","item":[{"name":"{fileId}","item":[{"name":"Get individual file by the id","id":"2214bc2b-036f-482b-b2e7-720ba7ba282c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/files/:fileId","urlObject":{"path":["files",":fileId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"ccc4d10c-e2ad-4546-a93c-3f5c5b19756a","description":{"content":"<p>(Required) The id of the file</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"fileId"}]}},"response":[{"id":"2f2cdec6-47e1-49ed-8d92-bc7744121fe3","name":"The file found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"isEmpty\": \"<boolean>\",\n  \"owner\": \"<string>\",\n  \"name\": \"<string>\",\n  \"size\": \"<long>\",\n  \"type\": \"<string>\",\n  \"content\": \"<uri>\",\n  \"uploadedAt\": \"<dateTime>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  },\n  \"version\": \"<long>\",\n  \"addGeneratedPreviewToFile\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}"},{"id":"f56fcd94-28f3-4568-8909-7606a7192756","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"14a42758-3d22-493c-907d-fb7fb1cd1504","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"2214bc2b-036f-482b-b2e7-720ba7ba282c"},{"name":"Update the metadata","id":"d05d792b-fee8-457c-b576-0601353e92f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"version\": \"<long>\",\n  \"operationOnReferencingObjects\": \"<string>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"thumbnail\": \"<string>\",\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/:fileId","urlObject":{"path":["files",":fileId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"7c3057f4-fde1-4433-8caf-f22bea9dfb41","description":{"content":"<p>(Required) The id of the file</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"fileId"}]}},"response":[{"id":"47f45c50-920b-472a-a3b6-a944b74a6229","name":"Update successful","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"version\": \"<long>\",\n  \"operationOnReferencingObjects\": \"<string>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"thumbnail\": \"<string>\",\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"isEmpty\": \"<boolean>\",\n  \"owner\": \"<string>\",\n  \"name\": \"<string>\",\n  \"size\": \"<long>\",\n  \"type\": \"<string>\",\n  \"content\": \"<uri>\",\n  \"uploadedAt\": \"<dateTime>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  },\n  \"version\": \"<long>\",\n  \"addGeneratedPreviewToFile\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}"},{"id":"ecc4d166-7454-4a0e-9e1b-dc735c182e13","name":"Empty file dto","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"version\": \"<long>\",\n  \"operationOnReferencingObjects\": \"<string>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"thumbnail\": \"<string>\",\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a854445e-449d-4c98-984e-22fc331a7426","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"version\": \"<long>\",\n  \"operationOnReferencingObjects\": \"<string>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"thumbnail\": \"<string>\",\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"c77a01e1-2583-4916-a857-a9565397302e","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"version\": \"<long>\",\n  \"operationOnReferencingObjects\": \"<string>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"thumbnail\": \"<string>\",\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"84b4c621-6b32-489c-be72-abc7f770391a","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"version\": \"<long>\",\n  \"operationOnReferencingObjects\": \"<string>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"thumbnail\": \"<string>\",\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"d05d792b-fee8-457c-b576-0601353e92f9"},{"name":"Download file content","id":"2146d6d4-6039-421c-ac4d-bdfd8e0f6b9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://sync.vertex.fi/api/rest/v1/files/:fileId/content","urlObject":{"path":["files",":fileId","content"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"9f911766-9e31-493e-8422-6e203fc37f90","description":{"content":"<p>(Required) The id of the file</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"fileId"}]}},"response":[{"id":"855f2234-e392-495a-abb3-856ab4f6c1b7","name":"Successful operation","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"*/*"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId/content","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId","content"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"f2f23b96-4038-495d-ace3-1c7228105936","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId/content","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId","content"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"cd385090-8d2b-43db-b9bf-4ed3722f5aee","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/:fileId/content","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files",":fileId","content"],"variable":[{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"2146d6d4-6039-421c-ac4d-bdfd8e0f6b9d"}],"id":"b71444fd-b65c-4025-822b-96e4b10ea963","_postman_id":"b71444fd-b65c-4025-822b-96e4b10ea963","description":""},{"name":"shares/{tenant}/{entityId}/{shareId}/{fileId}","item":[{"name":"Get file metadata via entity share","id":"c047703d-d85e-4de1-b8a8-73b554a4fb60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId","urlObject":{"path":["files","shares",":tenant",":entityId",":shareId",":fileId"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"6b11485e-6a6f-418a-ae5b-b1d11bca71ca","description":{"content":"<p>(Required) The tenant to fetch the file from</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"tenant"},{"id":"efe21f7a-eb16-4e11-ae9e-e74878842bdf","description":{"content":"<p>(Required) The shared entity ID that uses the file</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"},{"id":"ef63f911-df13-4ebe-8538-b01b96b85998","description":{"content":"<p>(Required) The shared entity's share ID</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"shareId"},{"id":"022b72ae-4f02-4f47-a991-ddc69d3491d9","description":{"content":"<p>(Required) The id of the file</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"fileId"}]}},"response":[{"id":"937cd980-36c1-4050-864c-3f18563c69ac","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","shares",":tenant",":entityId",":shareId",":fileId"],"variable":[{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the file from"},{"key":"entityId","value":"<string>","description":"(Required) The shared entity ID that uses the file"},{"key":"shareId","value":"<string>","description":"(Required) The shared entity's share ID"},{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"isEmpty\": \"<boolean>\",\n  \"owner\": \"<string>\",\n  \"name\": \"<string>\",\n  \"size\": \"<long>\",\n  \"type\": \"<string>\",\n  \"content\": \"<uri>\",\n  \"uploadedAt\": \"<dateTime>\",\n  \"referencingObjects\": [\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    },\n    {\n      \"collectionType\": \"<string>\",\n      \"objectId\": \"<string>\",\n      \"collectionId\": \"<string>\"\n    }\n  ],\n  \"visualizerData\": {\n    \"visualizerId\": \"<string>\",\n    \"visualizerStatus\": {\n      \"description\": \"The status of the visualizer as defined by the OpenCloudStatus enum.\",\n      \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n    }\n  },\n  \"version\": \"<long>\",\n  \"addGeneratedPreviewToFile\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}"},{"id":"f787fb41-0288-4a6e-9a6d-d954567d6e79","name":"Tenant does not exist","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","shares",":tenant",":entityId",":shareId",":fileId"],"variable":[{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the file from"},{"key":"entityId","value":"<string>","description":"(Required) The shared entity ID that uses the file"},{"key":"shareId","value":"<string>","description":"(Required) The shared entity's share ID"},{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"6f6190cf-2b25-4533-9482-03f9cb88d77f","name":"The entity does not provide access to the file or the share has expired","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","shares",":tenant",":entityId",":shareId",":fileId"],"variable":[{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the file from"},{"key":"entityId","value":"<string>","description":"(Required) The shared entity ID that uses the file"},{"key":"shareId","value":"<string>","description":"(Required) The shared entity's share ID"},{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"297f2e21-7923-42f1-aa8d-10ec0f2d8e66","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","shares",":tenant",":entityId",":shareId",":fileId"],"variable":[{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the file from"},{"key":"entityId","value":"<string>","description":"(Required) The shared entity ID that uses the file"},{"key":"shareId","value":"<string>","description":"(Required) The shared entity's share ID"},{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"c047703d-d85e-4de1-b8a8-73b554a4fb60"},{"name":"Download file content via entity share","id":"cd390473-9e4a-4524-a271-a5f2d1f2e274","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId/content","urlObject":{"path":["files","shares",":tenant",":entityId",":shareId",":fileId","content"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"2a22e642-f431-4078-8b8b-93e89d63de79","description":{"content":"<p>(Required) The tenant to fetch the file from</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"tenant"},{"id":"73c94a36-bcfe-4eef-a03a-1c7d26668184","description":{"content":"<p>(Required) The shared entity ID that uses the file</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"entityId"},{"id":"7890b468-b593-458d-9a3a-24a12aed8327","description":{"content":"<p>(Required) The shared entity's share ID</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"shareId"},{"id":"b7d5cc94-2a6e-47c2-aa45-3e6b734abcc6","description":{"content":"<p>(Required) The id of the file</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"fileId"}]}},"response":[{"id":"16eaac82-75c1-41f4-8dc2-58d560cc0e15","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId/content","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","shares",":tenant",":entityId",":shareId",":fileId","content"],"variable":[{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the file from"},{"key":"entityId","value":"<string>","description":"(Required) The shared entity ID that uses the file"},{"key":"shareId","value":"<string>","description":"(Required) The shared entity's share ID"},{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"*/*"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"551637ba-b39d-4678-9d73-2010602886bc","name":"Tenant does not exist","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId/content","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","shares",":tenant",":entityId",":shareId",":fileId","content"],"variable":[{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the file from"},{"key":"entityId","value":"<string>","description":"(Required) The shared entity ID that uses the file"},{"key":"shareId","value":"<string>","description":"(Required) The shared entity's share ID"},{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"501e9552-3c9b-44f6-8488-f1677849c8d4","name":"The entity does not provide access to the file or the share has expired","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId/content","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","shares",":tenant",":entityId",":shareId",":fileId","content"],"variable":[{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the file from"},{"key":"entityId","value":"<string>","description":"(Required) The shared entity ID that uses the file"},{"key":"shareId","value":"<string>","description":"(Required) The shared entity's share ID"},{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"220a55f7-99ca-4493-80a1-0f821c7a493f","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/shares/:tenant/:entityId/:shareId/:fileId/content","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","shares",":tenant",":entityId",":shareId",":fileId","content"],"variable":[{"key":"tenant","value":"<string>","description":"(Required) The tenant to fetch the file from"},{"key":"entityId","value":"<string>","description":"(Required) The shared entity ID that uses the file"},{"key":"shareId","value":"<string>","description":"(Required) The shared entity's share ID"},{"key":"fileId","value":"<string>","description":"(Required) The id of the file"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"cd390473-9e4a-4524-a271-a5f2d1f2e274"}],"id":"efb11d16-ae7c-4366-b2fd-d8cff68b6bfb","_postman_id":"efb11d16-ae7c-4366-b2fd-d8cff68b6bfb","description":""},{"name":"Checks the status of the files endpoints","id":"bc9e1c94-b95a-472e-af68-2403c1d219e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/files","description":"<p>Checks the status of the files endpoints</p>\n","urlObject":{"path":["files"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"a5c2f4d1-f3f9-417f-b450-515e492a6cc8","name":"No Content","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/files"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bc9e1c94-b95a-472e-af68-2403c1d219e7"},{"name":"Download a ZIP file containing specified files","id":"5ea28471-07a9-41f5-8575-07b1a01ef5bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/zip"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/zip","description":"<p>This endpoint accepts a list of file identifiers in the request body and returns a ZIP file containing the specified files as a response.</p>\n","urlObject":{"path":["files","zip"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"2eb76a47-f038-408f-bfbc-1fe86e042b0b","name":"A ZIP file containing the specified files","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/zip"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/zip"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"disabled":false,"description":"Indicates that the server response should be treated as a file attachment","key":"Content-Disposition","value":"<string>"},{"key":"Content-Type","value":"application/zip"}],"cookie":[],"responseTime":null,"body":"<binary>"},{"id":"d96e52f0-1358-4c40-ab93-9b7a34ec3b54","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/zip"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"dc20bb45-3a93-498f-b1d5-d99c635e7069","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/zip"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"cccf0343-799e-4862-b1fe-0c016fdc182a","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/zip"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"5ea28471-07a9-41f5-8575-07b1a01ef5bd"},{"name":"Get list of orphan files","id":"a7c30be3-9944-459a-aafd-1ec24b2ad6d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/files/orphans","description":"<p>Get list of orphan files</p>\n","urlObject":{"path":["files","orphans"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"e727fbd4-9da5-48ce-8a35-7018b4fee529","name":"Operation successful","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/files/orphans"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"isEmpty\": \"<boolean>\",\n    \"owner\": \"<string>\",\n    \"name\": \"<string>\",\n    \"size\": \"<long>\",\n    \"type\": \"<string>\",\n    \"content\": \"<uri>\",\n    \"uploadedAt\": \"<dateTime>\",\n    \"referencingObjects\": [\n      {\n        \"collectionType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"objectId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"collectionId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"collectionType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"objectId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"collectionId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"visualizerData\": {\n      \"visualizerId\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"visualizerStatus\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"version\": \"<long>\",\n    \"addGeneratedPreviewToFile\": \"<string>\",\n    \"thumbnail\": \"<string>\"\n  },\n  {\n    \"id\": \"<string>\",\n    \"isEmpty\": \"<boolean>\",\n    \"owner\": \"<string>\",\n    \"name\": \"<string>\",\n    \"size\": \"<long>\",\n    \"type\": \"<string>\",\n    \"content\": \"<uri>\",\n    \"uploadedAt\": \"<dateTime>\",\n    \"referencingObjects\": [\n      {\n        \"collectionType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"objectId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"collectionId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"collectionType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"objectId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"collectionId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"visualizerData\": {\n      \"visualizerId\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"visualizerStatus\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"version\": \"<long>\",\n    \"addGeneratedPreviewToFile\": \"<string>\",\n    \"thumbnail\": \"<string>\"\n  }\n]"}],"_postman_id":"a7c30be3-9944-459a-aafd-1ec24b2ad6d9"},{"name":"Retrieve multiple metadata","id":"7c8409e7-7d66-4500-85dd-77209fccdd55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/search","urlObject":{"path":["files","search"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"ac7cdace-2c53-4c05-9866-b42487c00f36","name":"Successful operation","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"isEmpty\": \"<boolean>\",\n    \"owner\": \"<string>\",\n    \"name\": \"<string>\",\n    \"size\": \"<long>\",\n    \"type\": \"<string>\",\n    \"content\": \"<uri>\",\n    \"uploadedAt\": \"<dateTime>\",\n    \"referencingObjects\": [\n      {\n        \"collectionType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"objectId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"collectionId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"collectionType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"objectId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"collectionId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"visualizerData\": {\n      \"visualizerId\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"visualizerStatus\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"version\": \"<long>\",\n    \"addGeneratedPreviewToFile\": \"<string>\",\n    \"thumbnail\": \"<string>\"\n  },\n  {\n    \"id\": \"<string>\",\n    \"isEmpty\": \"<boolean>\",\n    \"owner\": \"<string>\",\n    \"name\": \"<string>\",\n    \"size\": \"<long>\",\n    \"type\": \"<string>\",\n    \"content\": \"<uri>\",\n    \"uploadedAt\": \"<dateTime>\",\n    \"referencingObjects\": [\n      {\n        \"collectionType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"objectId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"collectionId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      },\n      {\n        \"collectionType\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"objectId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        },\n        \"collectionId\": {\n          \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n        }\n      }\n    ],\n    \"visualizerData\": {\n      \"visualizerId\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      },\n      \"visualizerStatus\": {\n        \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n      }\n    },\n    \"version\": \"<long>\",\n    \"addGeneratedPreviewToFile\": \"<string>\",\n    \"thumbnail\": \"<string>\"\n  }\n]"},{"id":"65f2bc47-5213-4719-bc0e-ece89be9320c","name":"Empty result","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/search"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c268ad48-d6c1-4869-a643-cf5b2ae964de","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/files/search"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"7c8409e7-7d66-4500-85dd-77209fccdd55"},{"name":"Upload content","id":"ccd802b4-300d-4785-9ad7-ad41cc1db223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"irure_54","value":"<binary>","type":"text"},{"key":"ut_962","value":"<binary>","type":"text"}]},"url":"https://sync.vertex.fi/api/rest/v1/files/content?createThumbnail=<boolean>","urlObject":{"path":["files","content"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Flag to indicate whether a thumbnail should be created for the uploaded file (default value is true).</p>\n","type":"text/plain"},"key":"createThumbnail","value":"<boolean>"}],"variable":[]}},"response":[{"id":"cac93584-d463-4148-92c7-230ca7ff411a","name":"File uploaded","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"eiusmodf","value":"<binary>","type":"text"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/content?createThumbnail=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","content"],"query":[{"key":"createThumbnail","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\",\n  \"targetId\": \"<string>\",\n  \"data\": \"<object>\",\n  \"targetIndex\": \"<integer,null-int64>\"\n}"},{"id":"404431eb-0049-449a-91eb-f394a13ce4e1","name":"Bad request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"eiusmodf","value":"<binary>","type":"text"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/content?createThumbnail=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","content"],"query":[{"key":"createThumbnail","value":"<boolean>"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\",\n  \"targetId\": \"<string>\",\n  \"data\": \"<object>\",\n  \"targetIndex\": \"<integer,null-int64>\"\n}"},{"id":"b30ff717-f8c1-41ed-af57-2eafaf39e969","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"formdata","formdata":[{"key":"eiusmodf","value":"<binary>","type":"text"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/content?createThumbnail=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","content"],"query":[{"key":"createThumbnail","value":"<boolean>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"442c10fb-6766-4f4d-b508-efbb566922fd","name":"File storage quota used","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"eiusmodf","value":"<binary>","type":"text"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/content?createThumbnail=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","content"],"query":[{"key":"createThumbnail","value":"<boolean>"}]}},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\",\n  \"targetId\": \"<string>\",\n  \"data\": \"<object>\",\n  \"targetIndex\": \"<integer,null-int64>\"\n}"},{"id":"872d9b4a-dfa9-4402-b14c-433ef3022366","name":"File not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"eiusmodf","value":"<binary>","type":"text"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/content?createThumbnail=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","content"],"query":[{"key":"createThumbnail","value":"<boolean>"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\",\n  \"targetId\": \"<string>\",\n  \"data\": \"<object>\",\n  \"targetIndex\": \"<integer,null-int64>\"\n}"},{"id":"9a329399-8f84-4755-a1e8-d874bb77c486","name":"File already exists","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"eiusmodf","value":"<binary>","type":"text"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/files/content?createThumbnail=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["files","content"],"query":[{"key":"createThumbnail","value":"<boolean>"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\",\n  \"targetId\": \"<string>\",\n  \"data\": \"<object>\",\n  \"targetIndex\": \"<integer,null-int64>\"\n}"}],"_postman_id":"ccd802b4-300d-4785-9ad7-ad41cc1db223"}],"id":"39dd2e8f-290a-4de7-b6eb-5598180de291","_postman_id":"39dd2e8f-290a-4de7-b6eb-5598180de291","description":""},{"name":"tenants","item":[{"name":"{name}","item":[{"name":"Check if a tenant exists by name","id":"406f3562-6a65-4611-a4f5-967aa47c00c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenants/:name","urlObject":{"path":["tenants",":name"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"abe1446f-0b9f-4ea1-822b-de534d913bca","description":{"content":"<p>(Required) The name of the tenant</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"name"}]}},"response":[{"id":"ce5ffce5-d9e8-477a-805e-28ed52c4bc83","name":"Tenant exists","originalRequest":{"method":"HEAD","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"58b78274-c8f7-4790-a10e-32a15d7776ff","name":"Tenant not found","originalRequest":{"method":"HEAD","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"406f3562-6a65-4611-a4f5-967aa47c00c8"},{"name":"Find the tenant by the name","id":"6eeb8dcf-d3c7-419e-8f50-4985d3f25d3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenants/:name","description":"<p>Returns tenant by the tenant name</p>\n","urlObject":{"path":["tenants",":name"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"1661f672-a63f-4365-83ed-22a5250df108","description":{"content":"<p>(Required) The name of the tenant</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"name"}]}},"response":[{"id":"e5d5cd2b-dba7-49df-9a3a-ddd9ba36deb1","name":"Found the tenant","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}"},{"id":"01f442f4-ade9-4e82-a66b-c792447511a2","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"db54eea7-df84-4f8c-b4ce-0c4e1f576fe0","name":"Operation forbidden","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"b1d985fb-dbf1-4d4a-9780-65c7ebb82399","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"6eeb8dcf-d3c7-419e-8f50-4985d3f25d3c"},{"name":"Update tenant data","id":"39518cbe-ea17-4321-8ff6-6c9e45a7d83b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/tenants/:name","urlObject":{"path":["tenants",":name"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"2f91d0de-41b2-484f-8c3a-76dcd28ec601","description":{"content":"<p>(Required) The name of the tenant</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"name"}]}},"response":[{"id":"6b870fae-fe0f-42ce-8434-1dd36325afc9","name":"Tenant data updated successfully","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}"},{"id":"779cd2cf-8c8a-4c25-acf9-a9f9a7093744","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"acec2445-bb39-4de2-b3b1-3818f85e1b4d","name":"Operation forbidden","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"b30b94d6-3d45-4d6b-b771-caee37459568","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"1d6e53a9-e975-4fb9-82be-cc76a294f073","name":"Tenant names are not matching","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/:name","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants",":name"],"variable":[{"key":"name","value":"<string>","description":"(Required) The name of the tenant"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"39518cbe-ea17-4321-8ff6-6c9e45a7d83b"}],"id":"e0048659-94d7-4ded-b596-3c77d077cacb","_postman_id":"e0048659-94d7-4ded-b596-3c77d077cacb","description":""},{"name":"Check if the Tenants service is ready","id":"49f1ab07-c4a1-40e4-9e56-c4ed1b36005e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/tenants","urlObject":{"path":["tenants"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"3802b5d1-d10a-4c3f-9da5-6d648c811518","name":"Service is ready, no content returned","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/tenants"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a8d8d010-78ab-4d5c-9113-407ea9ce8134","name":"Unexpected error","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/tenants"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"49f1ab07-c4a1-40e4-9e56-c4ed1b36005e"},{"name":"Finds all tenants and their details","id":"cc43142e-07b0-41f4-8a2e-813831a42db9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenants?ignoreSystemTenants=<boolean>","description":"<p>Returns all tenant data as a JSON array, with an option to ignore system tenants.</p>\n","urlObject":{"path":["tenants"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>Flag to indicate whether system tenants should be ignored. Defaults to true if not specified.</p>\n","type":"text/plain"},"key":"ignoreSystemTenants","value":"<boolean>"}],"variable":[]}},"response":[{"id":"c6c749f6-057c-4d70-a286-569cff69af29","name":"A JSON array of all tenants.","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants?ignoreSystemTenants=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants"],"query":[{"key":"ignoreSystemTenants","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"<string>\",\n    \"displayName\": \"<string>\",\n    \"adminEmail\": \"<string>\",\n    \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n  },\n  {\n    \"name\": \"<string>\",\n    \"displayName\": \"<string>\",\n    \"adminEmail\": \"<string>\",\n    \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n  }\n]"},{"id":"49826872-ac7b-42a3-a165-f02ced2ee22c","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants?ignoreSystemTenants=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants"],"query":[{"key":"ignoreSystemTenants","value":"<boolean>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cc43142e-07b0-41f4-8a2e-813831a42db9"},{"name":"Retrieves the current (currently logged in) tenant based on the authentication token","id":"a91ea326-73a3-4822-b7dc-3882ac5759fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenants/current","urlObject":{"path":["tenants","current"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"fc36e44c-3ec0-4c22-92f5-30ebc04191e8","name":"Successfully retrieves the tenant","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenants/current"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"<string>\",\n  \"displayName\": \"<string>\",\n  \"adminEmail\": \"<string>\",\n  \"firstTimeSetupLastCompletedVersion\": \"<string>\"\n}"},{"id":"57838b61-da9b-4087-bbf1-62aee0eae51a","name":"Operation forbidden","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenants/current"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"4adecf6c-58f0-455a-a0da-7888771795bc","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenants/current"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"a91ea326-73a3-4822-b7dc-3882ac5759fb"},{"name":"Get the tenants by the subject","id":"fa536b45-b4b9-4c66-8249-aaf3d6d96cb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenants/subject/:subject","description":"<p>Retrieves the names of tenants with the MyVertex subject id</p>\n","urlObject":{"path":["tenants","subject",":subject"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"16b7bab2-3bbb-42e0-a59d-e8917e3801e7","description":{"content":"<p>(Required) The subject of the tenant</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"subject"}]}},"response":[{"id":"96ef6f39-8091-4ee0-91a6-e4d03a1c51db","name":"List of the names of tenants with the MyVertex subject id","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/tenants/subject/:subject","host":["https://sync.vertex.fi/api/rest/v1"],"path":["tenants","subject",":subject"],"variable":[{"key":"subject","value":"<string>","description":"(Required) The subject of the tenant"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"<string>\",\n  \"<string>\"\n]"}],"_postman_id":"fa536b45-b4b9-4c66-8249-aaf3d6d96cb8"}],"id":"b852e594-fadb-4cda-91aa-47f328220153","_postman_id":"b852e594-fadb-4cda-91aa-47f328220153","description":""},{"name":"licenses","item":[{"name":"Retrieves the licenses information from MyVertex","id":"deca6ae3-88d1-47ca-95a0-eb8c3d012496","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/licenses","description":"<p>Returns all the licenses for the tenant</p>\n","urlObject":{"path":["licenses"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"ed2f2067-5817-4930-ba1b-9a6b347b05da","name":"Retrieved the licenses information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/licenses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"vertexId\": \"<string,null>\",\n    \"userId\": \"<string,null>\",\n    \"licenseValid\": \"<boolean>\",\n    \"endDate\": \"<string,null>\"\n  },\n  {\n    \"id\": \"<string>\",\n    \"vertexId\": \"<string,null>\",\n    \"userId\": \"<string,null>\",\n    \"licenseValid\": \"<boolean>\",\n    \"endDate\": \"<string,null>\"\n  }\n]"}],"_postman_id":"deca6ae3-88d1-47ca-95a0-eb8c3d012496"},{"name":"Unassigns a license","id":"1f022545-f16d-4d27-bda7-166b541affd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"<string>\",\n  \"vertexId\": \"<string>\",\n  \"licenseId\": \"<string>\",\n  \"applicationId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/licenses/unassign","description":"<p>Unassign certain license</p>\n","urlObject":{"path":["licenses","unassign"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"d0d35943-c756-4adf-bcfb-e68afb7b22b5","name":"Successfully unassigned a license","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"<string>\",\n  \"vertexId\": \"<string>\",\n  \"licenseId\": \"<string>\",\n  \"applicationId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/licenses/unassign"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"vertexId\": \"<string,null>\",\n  \"userId\": \"<string,null>\",\n  \"licenseValid\": \"<boolean>\",\n  \"endDate\": \"<string,null>\"\n}"},{"id":"8357ea4f-949c-4d1f-aff6-1a4abe5b09f8","name":"Not found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"<string>\",\n  \"vertexId\": \"<string>\",\n  \"licenseId\": \"<string>\",\n  \"applicationId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/licenses/unassign"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"1f022545-f16d-4d27-bda7-166b541affd4"},{"name":"Assigns a license","id":"e1dc38f9-6aee-4edb-b77d-8a6605de17bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"<string>\",\n  \"vertexId\": \"<string>\",\n  \"licenseId\": \"<string>\",\n  \"applicationId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/licenses/assign","description":"<p>Assigns a license to the user</p>\n","urlObject":{"path":["licenses","assign"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"1998e1e2-3044-41be-8a5d-45caf71a0dfd","name":"Successfully assigned a license","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"<string>\",\n  \"vertexId\": \"<string>\",\n  \"licenseId\": \"<string>\",\n  \"applicationId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/licenses/assign"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"vertexId\": \"<string,null>\",\n  \"userId\": \"<string,null>\",\n  \"licenseValid\": \"<boolean>\",\n  \"endDate\": \"<string,null>\"\n}"},{"id":"9a9c2df0-fa12-49b4-ac5e-de88aac2ae74","name":"User or license not found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\": \"<string>\",\n  \"vertexId\": \"<string>\",\n  \"licenseId\": \"<string>\",\n  \"applicationId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/licenses/assign"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"e1dc38f9-6aee-4edb-b77d-8a6605de17bb"}],"id":"5d0a540e-264c-4e30-b042-80731817bcbf","_postman_id":"5d0a540e-264c-4e30-b042-80731817bcbf","description":""},{"name":"users","item":[{"name":"{id}","item":[{"name":"lists","item":[{"name":"time-based/{stringListName}","item":[{"name":"Retrieve a time-based user string list","id":"9e78d18b-b2e2-402c-9c6f-a9c2dfc6252c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","description":"<p>Returns the string list {stringListName} of the user with id {id}</p>\n","urlObject":{"path":["users",":id","lists","time-based",":stringListName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"a3d020cb-3198-472d-a3e8-81c576aac3fe","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"},{"id":"ff683366-c628-4c37-9ca9-6c55832a2227","description":{"content":"<p>(Required) The string list name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"stringListName"}]}},"response":[{"id":"42038157-eec5-40b3-8e9f-b3a2e2c3d5dc","name":"Returns the string list","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": {\n    \"user\": \"<string>\",\n    \"name\": \"<string>\"\n  },\n  \"strings\": [\n    {\n      \"string\": \"<string>\",\n      \"timestamp\": \"<dateTime>\"\n    },\n    {\n      \"string\": \"<string>\",\n      \"timestamp\": \"<dateTime>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}"},{"id":"bc74296f-a17c-4ff5-98c7-88b95fc3fb04","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9e78d18b-b2e2-402c-9c6f-a9c2dfc6252c"},{"name":"Create time-based user string list","id":"b18dd445-95f6-429c-9398-0c24cf964c45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","description":"<p>Creates a time-based user string list</p>\n","urlObject":{"path":["users",":id","lists","time-based",":stringListName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"ef3d9ba9-46f9-4924-8a10-5e1bac66f9ad","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"},{"id":"435aa0db-3f71-4bc9-bdcc-afb1f206935f","description":{"content":"<p>(Required) The string list name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"stringListName"}]}},"response":[{"id":"7a600d60-2e70-4046-b747-022fe15e0e58","name":"Returns the created time-based user list","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": {\n    \"user\": \"<string>\",\n    \"name\": \"<string>\"\n  },\n  \"strings\": [\n    {\n      \"string\": \"<string>\",\n      \"timestamp\": \"<dateTime>\"\n    },\n    {\n      \"string\": \"<string>\",\n      \"timestamp\": \"<dateTime>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}"},{"id":"a8fa9d53-4bcb-447d-9c69-c4537cf3662a","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"38c011ff-b5a6-4903-b303-c33fb6da1adc","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b18dd445-95f6-429c-9398-0c24cf964c45"},{"name":"Update the time-based user string list","id":"53254796-c460-40bd-ab97-68b0d912cc7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","description":"<p>Updates the time-based user string list</p>\n","urlObject":{"path":["users",":id","lists","time-based",":stringListName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"7a1b6708-beb6-44a3-bb69-ec8d2fd71b56","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"},{"id":"d4e2ec15-622e-4583-b23b-bc31044e7733","description":{"content":"<p>(Required) The string list name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"stringListName"}]}},"response":[{"id":"e0f161a9-6ccf-4f2a-abf2-d01cb65bb827","name":"Returns the updated time-based user list","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": {\n    \"user\": \"<string>\",\n    \"name\": \"<string>\"\n  },\n  \"strings\": [\n    {\n      \"string\": \"<string>\",\n      \"timestamp\": \"<dateTime>\"\n    },\n    {\n      \"string\": \"<string>\",\n      \"timestamp\": \"<dateTime>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}"},{"id":"a2a86b61-03b0-40db-b091-f39fad147acd","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"de341194-2e84-466a-9e59-967290ec97ca","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a82835ca-0b7f-4b13-abb4-33392ce5de69","name":"Optimistic locking error","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"53254796-c460-40bd-ab97-68b0d912cc7d"},{"name":"Delete the time-based user string list","id":"21b91325-4024-4c9a-9732-0aadeb645ea5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","description":"<p>Delete the user string list</p>\n","urlObject":{"path":["users",":id","lists","time-based",":stringListName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"0b8e987f-4f73-4115-a5d9-b7ac7283c91b","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"},{"id":"329530a8-222f-402f-ae2c-ce45fea72003","description":{"content":"<p>(Required) The string list name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"stringListName"}]}},"response":[{"id":"fc8a62c1-ec56-4793-9ff6-7ba1e9691640","name":"Successfully deleted user string list","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"5b3a0f41-87fe-4324-b1f9-f82d4db56c37","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"eb7372b5-1624-442d-a3c0-05fb301737fd","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/time-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","time-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"21b91325-4024-4c9a-9732-0aadeb645ea5"}],"id":"645b6efe-2e37-44a6-a875-7f804ca39d25","_postman_id":"645b6efe-2e37-44a6-a875-7f804ca39d25","description":""},{"name":"content-based/{stringListName}","item":[{"name":"Retrieve content-based user string list","id":"6d06c3ba-b119-466e-9330-602d9105ad56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","description":"<p>Returns the content-based user string list</p>\n","urlObject":{"path":["users",":id","lists","content-based",":stringListName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"6335631f-d760-4140-aada-2344b6c516c9","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"},{"id":"840d325c-d8fd-4fde-9235-65829858e991","description":{"content":"<p>(Required) The string list name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"stringListName"}]}},"response":[{"id":"7d095ec9-d695-4b0c-a8ef-55df045926bb","name":"Returns the  content-based string list","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": {\n    \"user\": \"<string>\",\n    \"name\": \"<string>\"\n  },\n  \"strings\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"version\": \"<long>\"\n}"},{"id":"10938415-9f90-4225-bcf7-d232f87f6e5c","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6d06c3ba-b119-466e-9330-602d9105ad56"},{"name":"Create the content-based user string list","id":"c43d267a-5828-451b-a006-00dc3c8dfad8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","description":"<p>Creates the content-based user string list</p>\n","urlObject":{"path":["users",":id","lists","content-based",":stringListName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"986de515-3501-4738-bbf8-3276ce372cf5","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"},{"id":"224fb479-4bea-484b-9539-c4d7e7634c14","description":{"content":"<p>(Required) The string list name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"stringListName"}]}},"response":[{"id":"b5c69c48-73f9-40f1-a2ce-c8b741524aab","name":"Returns the created content-based user list","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": {\n    \"user\": \"<string>\",\n    \"name\": \"<string>\"\n  },\n  \"strings\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"version\": \"<long>\"\n}"},{"id":"4d29d889-92d2-40d7-a2ef-37e582c99fce","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"4ab51821-647e-4a76-a9a9-b40cec7e788c","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  \"<string>\",\n  \"<string>\"\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c43d267a-5828-451b-a006-00dc3c8dfad8"},{"name":"Update the content-based user string list","id":"28b5f9af-00da-40cf-832b-7b45f6ba7ff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","description":"<p>Updates the content-based user string list</p>\n","urlObject":{"path":["users",":id","lists","content-based",":stringListName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"8c12cd8b-9ff8-4547-b57e-8d97019604e1","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"},{"id":"10165c4a-4b0d-4046-bf98-d97e14e05585","description":{"content":"<p>(Required) The string list name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"stringListName"}]}},"response":[{"id":"c02269ce-2a9e-4070-9403-b3c0d1eccba4","name":"Returns the updated content-based user list","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": {\n    \"user\": \"<string>\",\n    \"name\": \"<string>\"\n  },\n  \"strings\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"version\": \"<long>\"\n}"},{"id":"3b65525f-f10e-45df-811b-f657d058cf69","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"511676dc-0705-4829-a0ca-434731cba98a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"415780e8-967a-44df-ae23-3b4447e74358","name":"Optimistic locking error","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"updates\": [\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    },\n    {\n      \"operation\": \"<string>\",\n      \"string\": \"<string>\",\n      \"index\": \"<integer>\"\n    }\n  ],\n  \"version\": \"<long>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"28b5f9af-00da-40cf-832b-7b45f6ba7ff4"},{"name":"Delete the content-based user string list","id":"d249321b-d380-49a6-90ce-800deb17df1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","description":"<p>Delete the user string list</p>\n","urlObject":{"path":["users",":id","lists","content-based",":stringListName"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"f40096ec-4263-4688-9a9a-23ec90827412","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"},{"id":"dc0a0e90-6504-4bb1-9511-6a7a14aad93e","description":{"content":"<p>(Required) The string list name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"stringListName"}]}},"response":[{"id":"ae644b24-4017-45bc-ac5e-b9739b955ce8","name":"Successfully deleted user string list","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e8c51c4d-1bcc-44f3-8659-bdb4e767b60e","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d2712765-e4a5-4b21-be6a-117ade658958","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/lists/content-based/:stringListName","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","lists","content-based",":stringListName"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"},{"key":"stringListName","value":"<string>","description":"(Required) The string list name"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"d249321b-d380-49a6-90ce-800deb17df1e"}],"id":"e750cb82-6904-47aa-9215-3e2c32371862","_postman_id":"e750cb82-6904-47aa-9215-3e2c32371862","description":""}],"id":"f7346e39-1089-42cd-9ad4-708ff896cd11","_postman_id":"f7346e39-1089-42cd-9ad4-708ff896cd11","description":""},{"name":"picture","item":[{"name":"Create user picture file id","id":"2e05c6b6-5f09-44db-9d3e-98e25f087c64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","description":"<p>Creates the user picture file id that can be used in the file service</p>\n","urlObject":{"path":["users",":id","picture"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"8c877939-22a5-4ce0-a6e2-6d1cb0fa6a02","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"88057846-619b-4597-93ee-b04307b2d1c6","name":"The picture file id created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}"},{"id":"100621fd-7f5c-4a9e-95d1-abc76dcf2733","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"0b7cc894-f2e6-438e-a2ad-8cfb667aa572","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"a6724ff4-9823-4d70-b5ba-39d2b04fe0d1","name":"Unexpected response from upstream service","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"2e05c6b6-5f09-44db-9d3e-98e25f087c64"},{"name":"Delete the picture file id from the user","id":"5b9a428b-2945-4401-9072-cda73e75b784","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","description":"<p>Deletes the link to the user picture from the user object</p>\n","urlObject":{"path":["users",":id","picture"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"3b63b9d7-09e3-44cb-9fbe-029356b69ff7","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a64908e0-1005-441e-92eb-709d00408e77","name":"The picture file id deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}"},{"id":"e81899eb-9228-48fc-a162-345eac30111c","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"94b22829-9deb-491a-982b-4b6c1394ecbf","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"5b9a428b-2945-4401-9072-cda73e75b784"}],"id":"6d89386f-7bea-4a4a-975d-f35d7bf92f74","_postman_id":"6d89386f-7bea-4a4a-975d-f35d7bf92f74","description":""},{"name":"User exists check","id":"84dd223d-41bb-480a-91ab-433a2b5620ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"HEAD","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id","description":"<p>Check if the user exists</p>\n","urlObject":{"path":["users",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"6b0a49d1-35ab-4945-9df4-aa9cb8697bce","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"68cc30a9-e075-4e00-849e-1642df0dd06f","name":"User exists","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"fbdb8f28-299c-442b-ac4a-a77d3bdbe20a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"49503c06-2a1a-4614-8620-3d296ca0f71a","name":"Not found","originalRequest":{"method":"HEAD","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"84dd223d-41bb-480a-91ab-433a2b5620ff"},{"name":"Get user information","id":"51179070-2bad-4e90-80e0-c01ff2dd78cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id","description":"<p>Retrieve user information by id</p>\n","urlObject":{"path":["users",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"0c80e555-f700-489b-9659-84ccf993cf86","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"aba2555f-7ced-4b51-8c29-14e7d3875447","name":"User found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}"},{"id":"e95de500-6d84-469c-8358-37e4d5d061c4","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d28dfc99-d030-47cf-8100-1fb514643fb0","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"51179070-2bad-4e90-80e0-c01ff2dd78cd"},{"name":"Update the user information","id":"9c7cd1a5-65fc-403c-9264-2b03bfe0e035","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/:id","description":"<p>Updates the user information</p>\n","urlObject":{"path":["users",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"8b518ae3-2591-4331-8b1b-4027d2d669c5","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"f75165bf-1de3-46d0-8ad3-ff88f9e85de1","name":"User updated","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}"},{"id":"6e13ee17-5db5-4c6b-8665-0d0db216a7dc","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"8af28c5e-9bd8-4637-a5c0-529394b1b74a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"4c7fc4fe-8ef7-4fb9-9b63-9dc14467e5de","name":"Insufficient permissions","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"b3dd7a4f-9877-4f2c-b5db-1208db305a38","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"ed6d6ad4-28ab-4bc1-95a3-e613bcbb1582","name":"User already exists with the updated email address","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"email\": \"<email>\",\n  \"activeState\": \"<string>\",\n  \"firstName\": \"<string>\",\n  \"lastName\": \"<string>\",\n  \"roleId\": \"<string>\",\n  \"phoneNumber\": \"<string,null>\",\n  \"title\": \"<string,null>\",\n  \"groups\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string,null>\",\n  \"thumbnail\": \"<string,null>\",\n  \"lastLoginTimes\": [\n    \"<dateTime>\",\n    \"<dateTime>\"\n  ],\n  \"setupUserCompletedVersion\": \"<string,null>\",\n  \"tourUserCompletedVersion\": \"<string,null>\",\n  \"tourAdminCompletedVersion\": \"<string,null>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"9c7cd1a5-65fc-403c-9264-2b03bfe0e035"},{"name":"Change the user email","id":"6969290e-542c-4eb0-b54a-6dcc1e62cbbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/:id/changeemail","description":"<p>Initiates a user email change. User is sent email with a link to change email address.</p>\n","urlObject":{"path":["users",":id","changeemail"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"f9d71df2-4407-4d87-a74a-cc441b82b2cf","description":{"content":"<p>(Required) The id of the user</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"f76c8126-294d-4801-821a-a5981df16094","name":"Changed the email","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/changeemail","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","changeemail"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"85a52f6b-4d0d-4c12-9cfb-3d2018ae1111","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users/:id/changeemail","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users",":id","changeemail"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the user"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"6969290e-542c-4eb0-b54a-6dcc1e62cbbf"}],"id":"8acc6b70-69a0-4570-ad5e-c7120b585a04","_postman_id":"8acc6b70-69a0-4570-ad5e-c7120b585a04","description":""},{"name":"Check the user service status","id":"ff3d2405-f671-4625-9421-7a1b0ce09e86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/users","urlObject":{"path":["users"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"e30c5d6a-fe9a-4340-b8ff-0a1f309f9939","name":"User service working","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ff3d2405-f671-4625-9421-7a1b0ce09e86"},{"name":"Invite users to the tenant","id":"db4dd16e-4576-4fb7-8f08-0be9aae049ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  },\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users","description":"<p>Invites the specified users to the tenant</p>\n","urlObject":{"path":["users"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"03f34e09-e6c1-423a-8ff7-311c55c79e80","name":"Invited all users successfully","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  },\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"data\": \"<object>\",\n    \"targetIndex\": \"<integer,null-int64>\"\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"data\": \"<object>\",\n    \"targetIndex\": \"<integer,null-int64>\"\n  }\n]"},{"id":"919537aa-4948-4841-af0e-008c6a0a71c6","name":"Invited some of the users successfully, some of the invites resulted in an error","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  },\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Multi-Status (WebDAV) (RFC 4918)","code":207,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"data\": \"<object>\",\n    \"targetIndex\": \"<integer,null-int64>\"\n  },\n  {\n    \"status\": \"<integer>\",\n    \"message\": \"<string>\",\n    \"targetId\": \"<string>\",\n    \"data\": \"<object>\",\n    \"targetIndex\": \"<integer,null-int64>\"\n  }\n]"},{"id":"8119e1e5-17c6-462e-bc78-f723cc324e55","name":"Bad request","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  },\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"1d7314b0-4c8c-4677-a875-ee4bd30245c2","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  },\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"523ceb0d-2f57-4d9e-840d-06b81a312a57","name":"Not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  },\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"05c4ba68-233f-45ae-8cc6-665a333e8316","name":"Role not assignable","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  },\n  {\n    \"email\": \"<email>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string>\",\n    \"message\": \"<string>\",\n    \"title\": \"<string>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"redirectUri\": \"<string>\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"db4dd16e-4576-4fb7-8f08-0be9aae049ce"},{"name":"Retrieves all the users","id":"23445780-f0dc-49ea-9c8b-8ee2eb138983","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users?ignoreThumbnails=<boolean>","description":"<p>Retrieves all the users</p>\n","urlObject":{"path":["users"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"description":{"content":"<p>(Required) Are thumbnails part of the response body</p>\n","type":"text/plain"},"key":"ignoreThumbnails","value":"<boolean>"}],"variable":[]}},"response":[{"id":"17a6d2c9-03d3-4401-af20-a9d4ff23f05c","name":"Retrieved the users information","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users?ignoreThumbnails=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users"],"query":[{"key":"ignoreThumbnails","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"email\": \"<email>\",\n    \"activeState\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string,null>\",\n    \"title\": \"<string,null>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"pictureFileId\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"lastLoginTimes\": [\n      \"<dateTime>\",\n      \"<dateTime>\"\n    ],\n    \"setupUserCompletedVersion\": \"<string,null>\",\n    \"tourUserCompletedVersion\": \"<string,null>\",\n    \"tourAdminCompletedVersion\": \"<string,null>\"\n  },\n  {\n    \"id\": \"<string>\",\n    \"email\": \"<email>\",\n    \"activeState\": \"<string>\",\n    \"firstName\": \"<string>\",\n    \"lastName\": \"<string>\",\n    \"roleId\": \"<string>\",\n    \"phoneNumber\": \"<string,null>\",\n    \"title\": \"<string,null>\",\n    \"groups\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"pictureFileId\": \"<string,null>\",\n    \"thumbnail\": \"<string,null>\",\n    \"lastLoginTimes\": [\n      \"<dateTime>\",\n      \"<dateTime>\"\n    ],\n    \"setupUserCompletedVersion\": \"<string,null>\",\n    \"tourUserCompletedVersion\": \"<string,null>\",\n    \"tourAdminCompletedVersion\": \"<string,null>\"\n  }\n]"},{"id":"bcd6d87b-ef56-405a-9ce2-2b344a89d65a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/users?ignoreThumbnails=<boolean>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["users"],"query":[{"key":"ignoreThumbnails","value":"<boolean>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"23445780-f0dc-49ea-9c8b-8ee2eb138983"},{"name":"Processes file update calls from file service","id":"04834057-49b7-404a-9e87-4f69351f26ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users","description":"<p>Processes a file update call from file service to a file that the user object references (profile picture)</p>\n","urlObject":{"path":["users"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"89cb3909-1ee5-4ee8-9f61-4457845191ff","name":"No Content - The operation was successful","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"14889e3b-8b15-4f81-bd61-1ac4ba212490","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"4a15a8d0-3ea0-40a7-9020-2690106c9498","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"013575f2-b9dd-4ea1-b958-c54fd819e854","name":"Insufficient permissions","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"04834057-49b7-404a-9e87-4f69351f26ff"},{"name":"Get MyVertex users","id":"dd2461c7-ceec-4781-b14b-f91f2cc34ac9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/myvertex","description":"<p>Retrieves MyVertex users for the same organization</p>\n","urlObject":{"path":["users","myvertex"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"872c0ec2-0905-4302-95d4-232296386f04","name":"Retrieved MyVertex users","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/users/myvertex"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"syncId\": \"<string,null>\",\n    \"vertexIdSubject\": \"<string,null>\",\n    \"firstName\": \"<string,null>\",\n    \"lastName\": \"<string,null>\",\n    \"email\": \"<string>\",\n    \"customerId\": \"<string,null>\"\n  },\n  {\n    \"syncId\": \"<string,null>\",\n    \"vertexIdSubject\": \"<string,null>\",\n    \"firstName\": \"<string,null>\",\n    \"lastName\": \"<string,null>\",\n    \"email\": \"<string>\",\n    \"customerId\": \"<string,null>\"\n  }\n]"},{"id":"4f048f38-04d0-4546-8223-4aa61679d957","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/users/myvertex"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dd2461c7-ceec-4781-b14b-f91f2cc34ac9"},{"name":"Reinvite the user","id":"0040ce75-7e41-4874-9996-eabf002cc261","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"<object>","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/reinvite","description":"<p>Reinvites the user</p>\n","urlObject":{"path":["users","reinvite"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"607ac7ad-dfdf-46c8-b176-00e996602763","name":"Reinvited the user","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"<object>","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/reinvite"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"64c5a6e4-df62-46b3-b767-f19d5468335a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"<object>","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/reinvite"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0040ce75-7e41-4874-9996-eabf002cc261"},{"name":"Reset password","id":"62004717-d878-468e-a556-a26b1a2d0b78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<email>\",\n  \"tenant\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/resetpassword","description":"<p>Reset the password of the account</p>\n","urlObject":{"path":["users","resetpassword"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"93f17332-6405-40e0-ba7f-a7b84920ce60","name":"The password reset email sent","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"email\": \"<email>\",\n  \"tenant\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/resetpassword"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"78f57e5c-f27d-476e-8da6-1985e227d203","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<email>\",\n  \"tenant\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/resetpassword"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"e7a6740f-f1e8-44f0-a3ba-765d2a9218bd","name":"The user not found","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<email>\",\n  \"tenant\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/users/resetpassword"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"62004717-d878-468e-a556-a26b1a2d0b78"}],"id":"996bbcff-da75-49ac-87a9-eaa0f14a6116","_postman_id":"996bbcff-da75-49ac-87a9-eaa0f14a6116","description":""},{"name":"groups","item":[{"name":"{id}","item":[{"name":"picture","item":[{"name":"Create group picture file id","id":"372d4466-a053-4177-9c87-0d6e858dc2ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/groups/:id/picture","description":"<p>Creates the group picture file id that can be used in the file service. Deletes the old picture if any.</p>\n","urlObject":{"path":["groups",":id","picture"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"ff9dc051-bb23-4b05-830f-971aa513245b","description":{"content":"<p>(Required) The id of the group</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"7983f14f-bdd3-4655-baed-29a858f4632a","name":"Group picture id successfully created or recreated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}"},{"id":"55db1de6-4e9c-40ba-a863-76c242f9918a","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"4f734a47-3a5b-479c-98a9-817c9e3ec3c2","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"372d4466-a053-4177-9c87-0d6e858dc2ed"},{"name":"Delete a group's picture","id":"c7b151ea-2b77-4e13-a653-a990c24e2a32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/groups/:id/picture","urlObject":{"path":["groups",":id","picture"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"c53acc08-0bbc-4e3d-a326-116e7cf38faa","description":{"content":"<p>(Required) The id of the group</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ae459762-2335-423d-8f14-308d8030da82","name":"Group picture successfully deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}"},{"id":"70a584a7-a723-4685-a91a-30a94f71b960","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"bcd93134-3204-4fae-aefb-839933e8fac1","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id/picture","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id","picture"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"c7b151ea-2b77-4e13-a653-a990c24e2a32"}],"id":"d8a10f1b-8cdd-446f-a2c7-0ba03a6a0fd1","_postman_id":"d8a10f1b-8cdd-446f-a2c7-0ba03a6a0fd1","description":""},{"name":"Find group by ID","id":"bbdb3324-5bd4-436e-843c-bb71f5801189","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/groups/:id","urlObject":{"path":["groups",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"643b8eb5-346c-4502-bd28-160f2bf2cdb3","description":{"content":"<p>(Required) The id of the group</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"963ceea5-f889-444f-9b3e-fd50f863482f","name":"Success","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}"},{"id":"f439c2a8-50c4-4ccb-9a43-6c7553036ec1","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f1e7dbfe-2193-4e1c-82bc-aae7f2f7b82b","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"bbdb3324-5bd4-436e-843c-bb71f5801189"},{"name":"Update group by ID","id":"38c64374-2d54-4168-9460-6a327d50a077","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups/:id","urlObject":{"path":["groups",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"b024d0dc-ebf8-49fc-886c-489aec2a81a7","description":{"content":"<p>(Required) The id of the group</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"395dd345-40cd-47cf-a0ac-c229e11a7836","name":"Group successfully updated","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}"},{"id":"343e314c-80b6-40c2-a250-18663ce2b4c8","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"89bf7fc7-ad28-4cef-b7d2-240692ddca54","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"32f7d826-90ab-40fc-919b-c8483f0d074b","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"38c64374-2d54-4168-9460-6a327d50a077"},{"name":"Delete group by ID","id":"513699a4-00c6-466f-a9cc-ede158b4bb33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/groups/:id","urlObject":{"path":["groups",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"b1dc9cba-d49b-412d-80df-9d2b73b04ecc","description":{"content":"<p>(Required) The id of the group</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"206f5796-e5ca-43ed-a6b6-a0b76f9ba71e","name":"Group successfully deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"bbe4adcb-f647-41ed-9515-0bc55a4dc613","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"58583354-3e87-462a-9658-a4b1803e436b","name":"Not allowed to delete","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"13456fb1-6dd7-4821-a466-40ebf7995a09","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/groups/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the group"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"513699a4-00c6-466f-a9cc-ede158b4bb33"}],"id":"90c47a8f-dcc5-41dd-9400-252fb903a158","_postman_id":"90c47a8f-dcc5-41dd-9400-252fb903a158","description":""},{"name":"Service ready status","id":"c63f1954-a1f0-46ec-b737-78754e03ab8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/groups","description":"<p>Check if the service ready</p>\n","urlObject":{"path":["groups"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"37989de1-6671-4d32-80f6-1ea0915ff934","name":"Service ready","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c63f1954-a1f0-46ec-b737-78754e03ab8c"},{"name":"Create a group","id":"f9b977a6-a678-436e-8083-3bedd632140a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"<object>","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups","description":"<p>Create a new group</p>\n","urlObject":{"path":["groups"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"1bac65d1-16e7-4e5e-8907-94b78a4b34bc","name":"The group created","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"<object>","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"disabled":false,"description":"URL of the newly created group","key":"Location","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"members\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"pictureFileId\": \"<string>\",\n  \"thumbnail\": \"<string>\",\n  \"entityAccessId\": \"<string>\",\n  \"controlRestricted\": \"<boolean>\"\n}"},{"id":"290c51f2-7eca-487c-a64d-aad71344f1f5","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"<object>","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"eb4a7a1f-7917-4a9e-93e6-5fad48b2eafb","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"<object>","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"29b771b5-38fd-4c10-91c6-c7067d6319c0","name":"Group already exists","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"<object>","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"f9b977a6-a678-436e-8083-3bedd632140a"},{"name":"Find all groups","id":"835e7eb1-bea4-4597-81d6-bbe7aab3ebd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/groups","description":"<p>Find all the groups</p>\n","urlObject":{"path":["groups"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"58638c53-7d9e-4aef-805c-086243899224","name":"A list of all groups","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"description\": \"<string>\",\n    \"members\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"pictureFileId\": \"<string>\",\n    \"thumbnail\": \"<string>\",\n    \"entityAccessId\": \"<string>\",\n    \"controlRestricted\": \"<boolean>\"\n  },\n  {\n    \"id\": \"<string>\",\n    \"name\": \"<string>\",\n    \"description\": \"<string>\",\n    \"members\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"pictureFileId\": \"<string>\",\n    \"thumbnail\": \"<string>\",\n    \"entityAccessId\": \"<string>\",\n    \"controlRestricted\": \"<boolean>\"\n  }\n]"},{"id":"b3e64848-4ad1-4e0a-8bbe-fe239b5e58e6","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"835e7eb1-bea4-4597-81d6-bbe7aab3ebd6"},{"name":"Processes file update calls from file service","id":"c4bfc479-8176-49e8-b9bd-81185acce1a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups","description":"<p>Processes a file update call from file service to a file that the group object references (group picture)</p>\n","urlObject":{"path":["groups"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"fc7d1bd5-6755-4f4f-98ad-dc2586a0cc1e","name":"No Content - The operation was successful","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"007dbcbe-4d5e-4202-bb56-f966436e556f","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"e9c63a86-9a8b-45f6-903f-62e5ea31ce4e","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2ed11f1d-6426-445a-8d9e-0782c4eb36a8","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fileId\": \"<string>\",\n  \"fileName\": \"<string>\",\n  \"mimeType\": \"<string>\",\n  \"referencingObjectIds\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fileNameExtension\": \"<string>\",\n  \"thumbnail\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/groups"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"c4bfc479-8176-49e8-b9bd-81185acce1a6"}],"id":"83852fe7-7201-4e18-8725-7771261f6a75","_postman_id":"83852fe7-7201-4e18-8725-7771261f6a75","description":""},{"name":"roles","item":[{"name":"{id}","item":[{"name":"Find role by ID","id":"2271bb95-0fb2-42e8-8f08-235bf972d360","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/roles/:id","urlObject":{"path":["roles",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"563002f1-2a5e-42b7-a658-429de1e2f33b","description":{"content":"<p>(Required) The id of the role</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ec8bdd07-0da9-49e6-af1e-7eae10f92bbf","name":"Role found and returned successfully","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\"\n}"},{"id":"a582c00f-aa92-41b9-ba11-bfae872f980d","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"623fffe4-249a-4158-a9b5-f9e821112709","name":"Not Found - Some required objects not found","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"2271bb95-0fb2-42e8-8f08-235bf972d360"},{"name":"Update role by ID","id":"815e6c6e-2ecf-4483-9f38-874f4179beb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/roles/:id","urlObject":{"path":["roles",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"b6464bc3-dcc7-42c6-a0dc-753a276ba62a","description":{"content":"<p>(Required) The id of the role</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"1e26dc92-e9d3-4bb1-b31c-a0dca3f8e40d","name":"Role updated successfully","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\"\n}"},{"id":"feed5172-5f9a-4029-aae8-cba7c5751780","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"d905d297-48a8-4455-b44d-f5aadbf23acf","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3361f8bc-7c6c-4fe2-9998-757fe65496b5","name":"Not Found - Some required objects not found","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"}],"_postman_id":"815e6c6e-2ecf-4483-9f38-874f4179beb8"},{"name":"Delete role by ID","id":"9e581ad9-53ba-4016-9efb-239c3e2197e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/roles/:id","urlObject":{"path":["roles",":id"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"f7243325-51c8-42d3-94d3-388114436369","description":{"content":"<p>(Required) The id of the role</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"2b7a62bf-e903-49b6-a990-2c1a7253b211","name":"Role deleted successfully","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1bdb3ff1-ed96-4109-abce-b76d7ca5cbcf","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"31f7f3d2-0569-4738-9d9b-3f22f3f39143","name":"Role can not be deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"ab24d6bd-c94f-4cbb-9bd9-57b92d80d874","name":"Not Found - Some required objects not found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"48e62701-cb20-41ae-a8c9-837fdb5264bb","name":"Role assigned to the users","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/roles/:id","host":["https://sync.vertex.fi/api/rest/v1"],"path":["roles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) The id of the role"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"9e581ad9-53ba-4016-9efb-239c3e2197e0"}],"id":"b94ed4fe-99ff-4082-9ce9-efa16f3b5395","_postman_id":"b94ed4fe-99ff-4082-9ce9-efa16f3b5395","description":""},{"name":"Find all roles","id":"74d92354-f8fe-4773-b24a-ecadeebe9537","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/roles","urlObject":{"path":["roles"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"317eeaa1-4ced-45ee-bc22-67d56d13b549","name":"A list of all roles","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"id\": \"<string>\",\n    \"isGuestRole\": \"<boolean>\",\n    \"name\": \"<string>\",\n    \"permissionRoleId\": \"<string>\"\n  },\n  {\n    \"id\": \"<string>\",\n    \"isGuestRole\": \"<boolean>\",\n    \"name\": \"<string>\",\n    \"permissionRoleId\": \"<string>\"\n  }\n]"},{"id":"a5ae9fd3-21c7-4e1b-b004-0473e28d2ec9","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/roles"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"74d92354-f8fe-4773-b24a-ecadeebe9537"},{"name":"Create a new role","id":"dabb8ac9-c8de-47cf-9913-9f6bface7367","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/roles","urlObject":{"path":["roles"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"b85a9462-b6bb-4cc5-99f5-94b2ad2804ce","name":"Role created successfully","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/roles"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"disabled":false,"description":"URL of the created role","key":"Location","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\",\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\"\n}"},{"id":"c8b8b44a-a62b-406f-aed0-567a33d419b2","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/roles"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"ffde4d28-68f4-4f8f-a3c8-473e9346b237","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/roles"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"83045d24-87f6-4d50-ae73-d9d41f8e7862","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/roles"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"3b6f9d32-bb70-440d-8be7-42ba80fcdcec","name":"Not Found - Some required objects not found","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/roles"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"failedAssertion\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"reason\": \"<string>\"\n}"},{"id":"da79b216-ceaf-415c-ac0f-90e485dbda52","name":"Role already exists","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"permissionRoleId\": \"<string>\",\n  \"isGuestRole\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/roles"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"}],"_postman_id":"dabb8ac9-c8de-47cf-9913-9f6bface7367"}],"id":"c5c21a81-0774-450b-a135-a4371c9c5c63","_postman_id":"c5c21a81-0774-450b-a135-a4371c9c5c63","description":""},{"name":"notificationservice","item":[{"name":"Get the service status","id":"73d04c03-e482-474f-bfb0-e14bcb1a5f1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/notificationservice","urlObject":{"path":["notificationservice"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"90663ffe-9d1c-472b-8a0b-88d80d42aaa1","name":"Service ready","originalRequest":{"method":"HEAD","header":[],"url":"https://sync.vertex.fi/api/rest/v1/notificationservice"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"73d04c03-e482-474f-bfb0-e14bcb1a5f1f"},{"name":"Get version information","id":"a4584466-6374-476f-b2ab-c795df5f7c21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/notificationservice/info/version","urlObject":{"path":["notificationservice","info","version"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"f33ec3d7-3244-42f9-a9b2-9f5f0c9bcd0a","name":"Retrieved the version information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/notificationservice/info/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"version\": \"<string>\",\n  \"buildNumber\": \"<string,null>\",\n  \"commitHash\": \"<string,null>\",\n  \"buildTime\": \"<string,null>\"\n}"}],"_postman_id":"a4584466-6374-476f-b2ab-c795df5f7c21"}],"id":"31930954-f64c-40b5-8021-0591dd5b6476","_postman_id":"31930954-f64c-40b5-8021-0591dd5b6476","description":""},{"name":"(hubs)/NotificationHub","item":[{"name":"Join the SignalR group","id":"0811c22f-c4f1-485f-a38c-1187b4404174","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://sync.vertex.fi/api/rest/v1/(hubs)/NotificationHub/JoinGroup?group=<string>","description":"<p><strong>SignalR Operation</strong>: This path represents a SignalR method and is not a traditional REST API endpoint. It cannot be called directly over HTTP. Instead, it indicates a method (<code>JoinGroup</code>) that can be invoked from the client using SignalR's client libraries. This method allows a client to join a specified group.</p>\n<p><strong>Usage Example</strong> (JavaScript):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-JavaScript\">connection.invoke(\"JoinGroup\", \"groupName\")\n  .then(function () {\n    console.log(\"Joined the group successfully.\");\n  })\n  .catch(function (err) {\n    return console.error(err.toString());\n  });\n\n</code></pre>\n<p>For more information on how to use SignalR in your client applications, refer to the <a href=\"https://docs.microsoft.com/aspnet/core/signalr/introduction\">SignalR documentation</a>.</p>\n","urlObject":{"path":["(hubs)","NotificationHub","JoinGroup"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"key":"group","value":"<string>"}],"variable":[]}},"response":[{"id":"9178c269-a266-4fcc-b658-5b808475d563","name":"Intentionally empty","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/(hubs)/NotificationHub/JoinGroup?group=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["(hubs)","NotificationHub","JoinGroup"],"query":[{"key":"group","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0811c22f-c4f1-485f-a38c-1187b4404174"},{"name":"Join the SignalR groups","id":"7725c16b-e830-4db5-841a-f348c226744f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://sync.vertex.fi/api/rest/v1/(hubs)/NotificationHub/JoinGroups?groups=<string>&groups=<string>","description":"<p><strong>SignalR Operation</strong>: This path represents a SignalR method and is not a traditional REST API endpoint. It cannot be called directly over HTTP. Instead, it indicates a method (<code>JoinGroups</code>) that can be invoked from the client using SignalR's client libraries. This method allows a client to join a specified groups.</p>\n<p><strong>Usage Example</strong> (JavaScript):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-JavaScript\">connection.invoke(\"JoinGroups\", groupNames)\n  .then(function () {\n    console.log(\"Joined the groups successfully.\");\n  })\n  .catch(function (err) {\n    return console.error(err.toString());\n  });\n\n</code></pre>\n<p>For more information on how to use SignalR in your client applications, refer to the <a href=\"https://docs.microsoft.com/aspnet/core/signalr/introduction\">SignalR documentation</a>.</p>\n","urlObject":{"path":["(hubs)","NotificationHub","JoinGroups"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"key":"groups","value":"<string>"},{"key":"groups","value":"<string>"}],"variable":[]}},"response":[{"id":"a49df7ad-836c-434b-98dc-bb2fc641c98e","name":"Intentionally empty","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/(hubs)/NotificationHub/JoinGroups?groups=<string>&groups=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["(hubs)","NotificationHub","JoinGroups"],"query":[{"key":"groups","value":"<string>"},{"key":"groups","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7725c16b-e830-4db5-841a-f348c226744f"},{"name":"Leave the SignalR group","id":"671fdf65-0c84-49c9-9728-9a279bca1d77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://sync.vertex.fi/api/rest/v1/(hubs)/NotificationHub/LeaveGroup?group=<string>","description":"<p><strong>SignalR Operation</strong>: This path represents a SignalR method and is not a traditional REST API endpoint. It cannot be called directly over HTTP. Instead, it indicates a method (<code>LeaveGroup</code>) that can be invoked from the client using SignalR's client libraries. This method allows a client to leave a specified group.</p>\n<p><strong>Usage Example</strong> (JavaScript):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-JavaScript\">connection.invoke(\"LeaveGroup\", \"groupName\")\n  .then(function () {\n    console.log(\"Left the group successfully.\");\n  })\n  .catch(function (err) {\n    return console.error(err.toString());\n  });\n\n</code></pre>\n<p>For more information on how to use SignalR in your client applications, refer to the <a href=\"https://docs.microsoft.com/aspnet/core/signalr/introduction\">SignalR documentation</a>.</p>\n","urlObject":{"path":["(hubs)","NotificationHub","LeaveGroup"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"key":"group","value":"<string>"}],"variable":[]}},"response":[{"id":"e00932fb-ea3b-44d3-80c5-e6e764b6e894","name":"Intentionally empty","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/(hubs)/NotificationHub/LeaveGroup?group=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["(hubs)","NotificationHub","LeaveGroup"],"query":[{"key":"group","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"671fdf65-0c84-49c9-9728-9a279bca1d77"},{"name":"Leave the SignalR groups","id":"9625e430-9292-4e81-b74e-cd96648cac33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://sync.vertex.fi/api/rest/v1/(hubs)/NotificationHub/LeaveGroups?groups=<string>&groups=<string>","description":"<p><strong>SignalR Operation</strong>: This path represents a SignalR method and is not a traditional REST API endpoint. It cannot be called directly over HTTP. Instead, it indicates a method (<code>LeaveGroups</code>) that can be invoked from the client using SignalR's client libraries. This method allows a client to leave a specified groups.</p>\n<p><strong>Usage Example</strong> (JavaScript):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-JavaScript\">connection.invoke(\"LeaveGroups\", groupNames)\n  .then(function () {\n    console.log(\"Left the groups successfully.\");\n  })\n  .catch(function (err) {\n    return console.error(err.toString());\n  });\n\n</code></pre>\n<p>For more information on how to use SignalR in your client applications, refer to the <a href=\"https://docs.microsoft.com/aspnet/core/signalr/introduction\">SignalR documentation</a>.</p>\n","urlObject":{"path":["(hubs)","NotificationHub","LeaveGroups"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"key":"groups","value":"<string>"},{"key":"groups","value":"<string>"}],"variable":[]}},"response":[{"id":"a2f7ddca-5ca9-4210-acf1-b3c12c914282","name":"Intentionally empty","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/(hubs)/NotificationHub/LeaveGroups?groups=<string>&groups=<string>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["(hubs)","NotificationHub","LeaveGroups"],"query":[{"key":"groups","value":"<string>"},{"key":"groups","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9625e430-9292-4e81-b74e-cd96648cac33"}],"id":"6f2655a7-d647-408e-8ee1-49b2dc5da049","_postman_id":"6f2655a7-d647-408e-8ee1-49b2dc5da049","description":""},{"name":"Obtain an Access Token","id":"a326b1ee-e987-41c7-b7f5-787cc4fe4414","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"<string>","description":"<p>(Required) Grant type (must be <code>client_credentials</code>)</p>\n"},{"key":"client_id","value":"<string>","description":"<p>(Required) Client ID registered in Keycloak</p>\n"},{"key":"client_secret","value":"<string>","description":"<p>(Required) Client secret associated with the client ID</p>\n"}]},"url":"https://sync.vertex.fi/api/rest/v1/auth/realms/:realm/protocol/openid-connect/token","description":"<p>Exchange client credentials for an access token using the OAuth 2.0 Client Credentials Grant.</p>\n<p><strong>Sample Request:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">POST /auth/realms/{realm}/protocol/openid-connect/token\nHost: test-auth-sync.vertex.fi\nContent-Type: application/x-www-form-urlencoded\n\ngrant_type=client_credentials&amp;client_id=your-client-id&amp;client_secret=your-client-secret\n</code></pre>\n<p><strong>Sample Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...\",\n  \"expires_in\": 300,\n  \"token_type\": \"Bearer\",\n  \"scope\": \"entities:write entities:delete\"\n}\n</code></pre>\n","urlObject":{"path":["auth","realms",":realm","protocol","openid-connect","token"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[{"id":"c2c4407a-3a84-49d6-9f7e-0f2407cf7af6","description":{"content":"<p>(Required) The Keycloak realm name</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"realm"}]}},"response":[{"id":"3620c864-4af3-4150-b697-1963de673841","name":"Successful token response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) Grant type (must be `client_credentials`)","key":"grant_type","value":"<string>"},{"description":"(Required) Client ID registered in Keycloak","key":"client_id","value":"<string>"},{"description":"(Required) Client secret associated with the client ID","key":"client_secret","value":"<string>"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/auth/realms/:realm/protocol/openid-connect/token","host":["https://sync.vertex.fi/api/rest/v1"],"path":["auth","realms",":realm","protocol","openid-connect","token"],"variable":[{"key":"realm","value":"<string>","description":"(Required) The Keycloak realm name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"access_token\": \"<string>\",\n  \"expires_in\": \"<integer>\",\n  \"refresh_expires_in\": \"<integer>\",\n  \"refresh_token\": \"<string>\",\n  \"token_type\": \"<string>\",\n  \"not_before_policy\": \"<integer>\",\n  \"session_state\": \"<string>\",\n  \"scope\": \"<string>\"\n}"},{"id":"c06e96d8-d9e3-44ef-ada7-459839df3345","name":"Invalid request","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) Grant type (must be `client_credentials`)","key":"grant_type","value":"<string>"},{"description":"(Required) Client ID registered in Keycloak","key":"client_id","value":"<string>"},{"description":"(Required) Client secret associated with the client ID","key":"client_secret","value":"<string>"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/auth/realms/:realm/protocol/openid-connect/token","host":["https://sync.vertex.fi/api/rest/v1"],"path":["auth","realms",":realm","protocol","openid-connect","token"],"variable":[{"key":"realm","value":"<string>","description":"(Required) The Keycloak realm name"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"<string>\",\n  \"error_description\": \"<string>\"\n}"},{"id":"8864da98-2300-4193-b20c-ecdc370782d3","name":"Unauthorized - Invalid client credentials","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"(Required) Grant type (must be `client_credentials`)","key":"grant_type","value":"<string>"},{"description":"(Required) Client ID registered in Keycloak","key":"client_id","value":"<string>"},{"description":"(Required) Client secret associated with the client ID","key":"client_secret","value":"<string>"}]},"url":{"raw":"https://sync.vertex.fi/api/rest/v1/auth/realms/:realm/protocol/openid-connect/token","host":["https://sync.vertex.fi/api/rest/v1"],"path":["auth","realms",":realm","protocol","openid-connect","token"],"variable":[{"key":"realm","value":"<string>","description":"(Required) The Keycloak realm name"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"<string>\",\n  \"error_description\": \"<string>\"\n}"}],"_postman_id":"a326b1ee-e987-41c7-b7f5-787cc4fe4414"},{"name":"Get service version","id":"9be2e9d2-85dc-43ca-875c-ff8f0a7a7592","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entityservice/info/version","urlObject":{"path":["entityservice","info","version"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"a1eb1d04-a776-421f-9f41-c6e776640845","name":"Successful operation","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/entityservice/info/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"version\": \"<string>\",\n  \"buildNumber\": \"<string>\",\n  \"commitHash\": \"<string>\",\n  \"buildTime\": \"<dateTime>\"\n}"}],"_postman_id":"9be2e9d2-85dc-43ca-875c-ff8f0a7a7592"},{"name":"Delete all POI events for the user","id":"2f8fc0b8-0bc1-42f5-a910-25aabc25a8a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/poi/all","description":"<p>Deletes all POI events associated with the user.</p>\n","urlObject":{"path":["poi","all"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"a18dd6a0-52ec-4309-893f-8a0b77af953a","name":"All POI events successfully deleted, returns updated POI events object.","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/poi/all"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"UserId\": \"<string>\",\n  \"Events\": [\n    {\n      \"Id\": \"<string>\",\n      \"IsUnread\": \"<boolean>\"\n    },\n    {\n      \"Id\": \"<string>\",\n      \"IsUnread\": \"<boolean>\"\n    }\n  ],\n  \"Version\": \"<long>\"\n}"},{"id":"95de1329-ab67-43b6-90ae-616c6556a696","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/poi/all"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"0140d30b-b64e-49d6-92b6-3af43fd7bea6","name":"Not Found","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/poi/all"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2f8fc0b8-0bc1-42f5-a910-25aabc25a8a8"},{"name":"Get the file service version information","id":"2874b05f-eae8-413f-8fee-14fa0ed85df7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/fileservice/info/version","urlObject":{"path":["fileservice","info","version"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"5aab31d4-44fb-42f5-822e-b6cc0128a04f","name":"Retrieved the version information","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/fileservice/info/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"version\": \"<string>\",\n  \"buildNumber\": \"<string,null>\",\n  \"commitHash\": \"<string,null>\",\n  \"buildTime\": \"<string,null>\"\n}"}],"_postman_id":"2874b05f-eae8-413f-8fee-14fa0ed85df7"},{"name":"Gets application version information","id":"d6a739db-cef5-4adb-b025-b2a886e6029b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenantservice/info/version","urlObject":{"path":["tenantservice","info","version"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"d94be5e0-a64a-4e1f-b984-3e7cd7431658","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/tenantservice/info/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"version\": \"<string>\",\n  \"buildNumber\": \"<string>\",\n  \"commitHash\": \"<string>\",\n  \"buildTime\": \"<string>\"\n}"}],"_postman_id":"d6a739db-cef5-4adb-b025-b2a886e6029b"},{"name":"Retrieves the status of realms updates","id":"5182ec2e-4294-415b-ae31-beb15aab8c9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/realmsupdate","urlObject":{"path":["realmsupdate"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"8f553cd1-885d-4be6-9df1-8378f90a022f","name":"Successful response with the status of realms updates","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/realmsupdate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"overallUpdateStatus\": \"<string>\",\n  \"realmUpdateStatuses\": {\n    \"adipisicing4e\": \"<string>\"\n  }\n}"},{"id":"4dcd74b7-2932-45f7-9c39-dc99b01ab405","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/realmsupdate"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5182ec2e-4294-415b-ae31-beb15aab8c9e"},{"name":"Checks workspace compatibility","id":"027369aa-9c5a-457f-ab4b-c1645dad8b73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"workspaceVersion\": {\n    \"major\": \"<integer>\",\n    \"minor\": \"<integer>\",\n    \"patch\": \"<integer>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/workspace/compatibility","description":"<p>Check whether the workspace version can be used with the Sync</p>\n","urlObject":{"path":["workspace","compatibility"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"d7f37f3e-c983-4c75-b93a-cf7f6c7b087c","name":"Workspace version is compatible","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"workspaceVersion\": {\n    \"major\": \"<integer>\",\n    \"minor\": \"<integer>\",\n    \"patch\": \"<integer>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/workspace/compatibility"},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2b8f4ef5-7bc1-4400-8620-408cd8b42169","name":"Bad Request - Incorrect or malformed request body.","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"workspaceVersion\": {\n    \"major\": \"<integer>\",\n    \"minor\": \"<integer>\",\n    \"patch\": \"<integer>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/workspace/compatibility"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"status\": \"<integer>\",\n  \"message\": \"<string>\"\n}"},{"id":"a100521d-9099-4981-a3ae-5e4ca0f8aed5","name":"Workspace version not compatible","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"workspaceVersion\": {\n    \"major\": \"<integer>\",\n    \"minor\": \"<integer>\",\n    \"patch\": \"<integer>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://sync.vertex.fi/api/rest/v1/workspace/compatibility"},"status":"Not Acceptable","code":406,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"027369aa-9c5a-457f-ab4b-c1645dad8b73"},{"name":"Find all permission levels","id":"1d553d9e-28a3-4f35-b830-f617662bcb96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/permissionlevels","urlObject":{"path":["permissionlevels"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"048e1f2b-9550-47f8-a682-413066bde68a","name":"A list of all permission levels","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"},{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/permissionlevels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"permissionRoleId\": \"<string>\",\n    \"name\": \"<string>\",\n    \"level\": \"<integer>\",\n    \"associable\": \"<boolean>\"\n  },\n  {\n    \"permissionRoleId\": \"<string>\",\n    \"name\": \"<string>\",\n    \"level\": \"<integer>\",\n    \"associable\": \"<boolean>\"\n  }\n]"},{"id":"62f42b1f-519d-4cb4-afbe-8e9f8b3d3b30","name":"Unauthorized or insufficient scopes","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: oauth2","key":"Authorization","value":"<token>"}],"url":"https://sync.vertex.fi/api/rest/v1/permissionlevels"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1d553d9e-28a3-4f35-b830-f617662bcb96"},{"name":"Gets application version information","id":"1ceebfaf-0150-4428-8663-14b05207171b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/userservice/info/version","urlObject":{"path":["userservice","info","version"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[],"variable":[]}},"response":[{"id":"eb5ef461-c9d0-4d50-b35b-e9aa1ebcd5fc","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://sync.vertex.fi/api/rest/v1/userservice/info/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"version\": \"<string>\",\n  \"buildNumber\": \"<string>\",\n  \"commitHash\": \"<string>\",\n  \"buildTime\": \"<string>\"\n}"}],"_postman_id":"1ceebfaf-0150-4428-8663-14b05207171b"},{"name":"Listen to notifications","id":"aad2cbca-837a-47c6-839b-20b4ebcf3a27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://sync.vertex.fi/api/rest/v1/(hub)/NotificationHub/ReceiveNotification?Event=<object>&SenderId=<string,null>&Timestamp=<dateTime>&Id=<string,null>","description":"<p><strong>SignalR Operation</strong>: This path represents a SignalR method and is not a traditional RESP API endpoint. It cannot be called directly over HTTP. Instead, it indicates a method (<code>ReceiveNotification</code>) that can be invoked from the client using SignalR's client libraries. This method allows a client to receive notification from the server.</p>\n<p><strong>Usage Example</strong> (JavaScript):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-JavaScript\">connection.on(\"ReceiveNotification\", (notification) =&gt; {\n  console.log(\"New notification\", notification);\n});\n</code></pre>\n<p>For more information on how to use SignalR in your client applications, refer to the <a href=\"https://docs.microsoft.com/aspnet/core/signalr/introduction\">SignalR documentation</a>.</p>\n","urlObject":{"path":["(hub)","NotificationHub","ReceiveNotification"],"host":["https://sync.vertex.fi/api/rest/v1"],"query":[{"key":"Event","value":"<object>"},{"key":"SenderId","value":"<string,null>"},{"key":"Timestamp","value":"<dateTime>"},{"key":"Id","value":"<string,null>"}],"variable":[]}},"response":[{"id":"b8ee7eea-5deb-43dd-a585-1b319141fe09","name":"Intentionally empty","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://sync.vertex.fi/api/rest/v1/(hub)/NotificationHub/ReceiveNotification?Event=<object>&SenderId=<string,null>&Timestamp=<dateTime>&Id=<string,null>","host":["https://sync.vertex.fi/api/rest/v1"],"path":["(hub)","NotificationHub","ReceiveNotification"],"query":[{"key":"Event","value":"<object>"},{"key":"SenderId","value":"<string,null>"},{"key":"Timestamp","value":"<dateTime>"},{"key":"Id","value":"<string,null>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"aad2cbca-837a-47c6-839b-20b4ebcf3a27"}],"variable":[{"id":"e54c987c-06a4-4a74-879c-c34f795b48a5","key":"baseUrl","value":"https://sync.vertex.fi/api/rest/v1","type":"string"}]}