{"info":{"_postman_id":"dc55f70c-959d-478e-98c8-fdcc0da56541","name":"Vault Integration APIs","description":"<html><head></head><body><h1 id=\"arvault-v1-exposed-apis\">ARVault v1 Exposed APIs</h1>\n<p>Token-authenticated REST APIs for driving <strong>Backup</strong>, <strong>Archive</strong> and <strong>Restore</strong> jobs in ARVault.</p>\n<h2 id=\"base\">Base</h2>\n<ul>\n<li><p>All paths are prefixed with <code>/ARVault/api/v1</code> and use <code>&lt;baseUrl&gt;</code> (e.g. <code>https://vault.example.com</code>).</p>\n</li>\n<li><p>Standard envelope on JSON responses: <code>{ success, message, data, status, timestamp }</code>. The useful payload is always under <strong><code>data</code></strong>.</p>\n</li>\n</ul>\n<h2 id=\"required-headers-every-request\">Required headers (every request)</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Variable</th>\n<th>Purpose</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>X-API-TOKEN</code></td>\n<td><code>&lt;X-API-TOKEN&gt;</code></td>\n<td>Vault API auth token (required)</td>\n</tr>\n<tr>\n<td><code>X-Source-Product</code></td>\n<td><code>&lt;X-Source-Product&gt;</code></td>\n<td>Calling product/integration id</td>\n</tr>\n<tr>\n<td><code>X-Client-IP</code></td>\n<td><code>&lt;X-Client-IP&gt;</code></td>\n<td>Caller IP for audit / rate-limiting</td>\n</tr>\n<tr>\n<td><code>Content-Type</code></td>\n<td><code>application/json</code></td>\n<td>Only on POST requests with a body</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"typical-flow\">Typical flow</h2>\n<ol>\n<li><p><strong>List Salesforce Orgs</strong> -&gt; captures <code>&lt;idSforg&gt;</code></p>\n</li>\n<li><p><strong>Get Backup Configs</strong> (or <strong>Get Archive Configs</strong>) -&gt; captures <code>&lt;configId&gt;</code></p>\n</li>\n<li><p><strong>Start Backup / Start Archive</strong> -&gt; captures <code>&lt;backupId&gt;</code> / <code>&lt;archiveId&gt;</code></p>\n</li>\n<li><p>Poll <strong>Get Backup Job / Get Archive Job</strong> for <code>status</code></p>\n</li>\n<li><p><strong>Start Restore</strong> (uses <code>&lt;backupId&gt;</code>) -&gt; captures <code>&lt;restoreId&gt;</code>; poll <strong>Get Restore Job</strong></p>\n</li>\n<li><p>Use _Search *_<em>\\</em> to look up existing job ids; _Stop *_<em>\\</em> to abort a running job.</p>\n</li>\n</ol>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"ARVault v1 Exposed APIs","slug":"arvault-v1-exposed-apis"}],"owner":"56788688","collectionId":"dc55f70c-959d-478e-98c8-fdcc0da56541","publishedId":"2sBY4Qqyk3","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-07-22T09:12:30.000Z"},"item":[{"name":"Configs & Orgs","item":[{"name":"List Salesforce Orgs","event":[{"listen":"test","script":{"exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.length) ? res.data[0].idSforg : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('idSforg', String(val));","        console.log('Captured idSforg =', String(val));","    } else {","        console.log('No idSforg found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping idSforg capture');","}"],"type":"text/javascript","packages":{},"requests":{},"id":"44766395-33e8-4ecb-bddc-0320e9fef2a5"}}],"id":"10a08775-5d97-4a42-a6c2-d4caef03ad1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p>Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/salesforce-orgs","description":"<p>Returns all Salesforce orgs connected to the vault for the authenticated product.</p>\n<p><strong>GET</strong> <code>/salesforce-orgs</code></p>\n<p><strong>Response —</strong> <strong><code>data[]</code></strong> (array of orgs)  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>idSforg</code></td>\n<td>string</td>\n<td>Salesforce org id (18-char). <strong>Captured to</strong> <strong><code>&lt;idSforg&gt;</code>****.</strong></td>\n</tr>\n<tr>\n<td><code>sfNmUser</code></td>\n<td>string</td>\n<td>Salesforce username the org was connected with</td>\n</tr>\n<tr>\n<td><code>nmLable</code></td>\n<td>string</td>\n<td>Friendly org label</td>\n</tr>\n<tr>\n<td><code>sfInstanceUrl</code></td>\n<td>string</td>\n<td>Org instance URL</td>\n</tr>\n<tr>\n<td><code>idUser</code></td>\n<td>string</td>\n<td>ARVault user id that owns the connection</td>\n</tr>\n<tr>\n<td><code>tmStamp</code></td>\n<td>epoch(ms)</td>\n<td>Last update timestamp</td>\n</tr>\n<tr>\n<td><code>lastBackupStatus</code></td>\n<td>string</td>\n<td>Last backup status + config id</td>\n</tr>\n<tr>\n<td><code>sfAuthType</code></td>\n<td>string</td>\n<td><code>oauth</code> / other auth type</td>\n</tr>\n<tr>\n<td><code>sfEnviType</code></td>\n<td>string</td>\n<td><code>sandbox</code> / <code>production</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Produces:</strong> <code>&lt;idSforg&gt;</code> &lt;- <code>data[0].idSforg</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-TOKEN"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"045d4f6b-ae0d-410a-b7ba-5613fc17bc5c","id":"045d4f6b-ae0d-410a-b7ba-5613fc17bc5c","name":"Configs & Orgs","type":"folder"}},"urlObject":{"path":["ARVault","api","v1","salesforce-orgs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"eb13ce97-24de-436e-ba85-4e67d1a77c25","name":"ORGSLIST","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/salesforce-orgs"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:47:56 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:47:56 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:47:56 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:47:56 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:47:56 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": [\n        {\n            \"idSforg\": \"00DAP39FN5WO1AEQOS\",\n            \"sfNmUser\": \"integration-user87@example.com.keystone.qa19\",\n            \"nmLable\": \"QA Sandbox 52\",\n            \"sfInstanceUrl\": \"https://soylent5741--sit.sandbox.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1770807864000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:f1fd021a-66d5-ac43-6b0a-7d7b07fc731b\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://test.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DAP39FN5WO1AEQOS\",\n            \"instanceType\": \"SANDBOX\",\n            \"sfOrgType\": \"Unlimited Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DH5AKVP98R7F5WIA\",\n            \"sfNmUser\": \"integration-user43@example.com.keystone.sit42\",\n            \"nmLable\": \"Nightly Backup Org 78\",\n            \"sfInstanceUrl\": \"https://soylent3311--staging.sandbox.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1773306680000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:042fb144-2e1f-7b1b-090d-1b2b03947078\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://test.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DH5AKVP98R7F5WIA\",\n            \"consumerKey\": \"{{salesforce_consumer_key_1ary}}\",\n            \"instanceType\": \"SANDBOX\",\n            \"sfOrgType\": \"Unlimited Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DUUM39K9Y0B7ZNUK\",\n            \"sfNmUser\": \"integration-user69@example.com.keystone.dev37\",\n            \"nmLable\": \"Service Cloud UAT 35\",\n            \"sfInstanceUrl\": \"https://prestige3032--uat.sandbox.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1779882376000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:8352c7a4-7ea0-9b4e-7225-467b9c7e7dfc\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://test.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"65.0\",\n            \"possibleRefreshedSfOrgId\": \"00DUUM39K9Y0B7ZNUK\",\n            \"consumerKey\": \"{{salesforce_consumer_key_0qw8}}\",\n            \"instanceType\": \"SANDBOX\",\n            \"sfOrgType\": \"Unlimited Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DTQL1MKQG771UET2\",\n            \"sfNmUser\": \"api-user413@soylent.example.com\",\n            \"nmLable\": \"Marketing Sandbox 79\",\n            \"sfInstanceUrl\": \"https://massive-dynamic6222-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1746535163000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:8c933283-2e10-dfe1-02e1-01478fd21a44\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DTQL1MKQG771UET2\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00D234OQZVRCT5JNAD\",\n            \"sfNmUser\": \"api-user507@cyberdyne.example.com\",\n            \"nmLable\": \"Integration Test Org 48\",\n            \"sfInstanceUrl\": \"https://initech8823-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1779882413000,\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://initech8823-dev-ed.develop.my.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"65.0\",\n            \"possibleRefreshedSfOrgId\": \"00D234OQZVRCT5JNAD\",\n            \"consumerKey\": \"{{salesforce_consumer_key_0skd}}\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DDOWQHZ4LHHITRAW\",\n            \"sfNmUser\": \"api-user742@duff.example.com\",\n            \"nmLable\": \"Archive Source Org 4\",\n            \"sfInstanceUrl\": \"https://oscorp9638-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1779882456000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:75a9ce52-1eda-ec4e-d4a2-e0e554ed52c6\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"ncino\",\n            \"sfVersion\": \"65.0\",\n            \"possibleRefreshedSfOrgId\": \"00DDOWQHZ4LHHITRAW\",\n            \"consumerKey\": \"{{salesforce_consumer_key_04ff}}\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00D30DS3DWCG1QAIK9\",\n            \"sfNmUser\": \"integration-user69@example.com.keystone.uat91\",\n            \"nmLable\": \"Marketing Sandbox 19\",\n            \"sfInstanceUrl\": \"https://cyberdyne8778--qa.sandbox.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1779882339000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:6ae159bd-4355-2991-2170-27ee1ca2243e\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://test.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"65.0\",\n            \"possibleRefreshedSfOrgId\": \"00D30DS3DWCG1QAIK9\",\n            \"consumerKey\": \"{{salesforce_consumer_key_0nqg}}\",\n            \"instanceType\": \"SANDBOX\",\n            \"sfOrgType\": \"Unlimited Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DMDOL57IV559EORE\",\n            \"sfNmUser\": \"api-user639@stark.example.com\",\n            \"nmLable\": \"Sales Cloud Prod 59\",\n            \"sfInstanceUrl\": \"https://tyrell5714-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1763370047000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:b46fc9bd-f8b1-3599-0522-2360a6b47760\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DMDOL57IV559EORE\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00D41F1M1Q9LB8FODK\",\n            \"sfNmUser\": \"api-user861@prestige.example.com\",\n            \"nmLable\": \"Support Sandbox 59\",\n            \"sfInstanceUrl\": \"https://pied-piper5751-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1747030594000,\n            \"lastBackupStatus\": \"FAILED: IDCFG:ea81555e-656d-4f50-9016-e34b550907c4\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00D41F1M1Q9LB8FODK\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DZPSW9OGOORZJZFP\",\n            \"sfNmUser\": \"api-user16@duff.example.com\",\n            \"nmLable\": \"Archive Source Org 26\",\n            \"sfInstanceUrl\": \"https://pied-piper6588-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1747299727000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:0b522e8c-4497-7c50-df93-d35a165c5b70\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"ncino\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DZPSW9OGOORZJZFP\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00D1RAFVTEKOMWHDQB\",\n            \"sfNmUser\": \"api-user799@hooli.example.com\",\n            \"nmLable\": \"Marketing Sandbox 92\",\n            \"sfInstanceUrl\": \"https://prestige321.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1747300848000,\n            \"sfAuthType\": \"standard\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"ncino\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00D1RAFVTEKOMWHDQB\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DZZ7TJ54FDLDCPLN\",\n            \"sfNmUser\": \"api-user824@stark.example.com\",\n            \"nmLable\": \"Data Retention Org 11\",\n            \"sfInstanceUrl\": \"https://umbrella1817-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1773745419000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:6fb4ab99-828c-8de6-7e81-1831c913a608\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DZZ7TJ54FDLDCPLN\",\n            \"consumerKey\": \"\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00D9UV9OD6KERJU1TA\",\n            \"sfNmUser\": \"api-user430@pied-piper.example.com\",\n            \"nmLable\": \"Compliance Vault Org 77\",\n            \"sfInstanceUrl\": \"https://tyrell2296-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1747291402000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:82d182ab-021c-5cc9-a27e-a1d132c42adf\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00D9UV9OD6KERJU1TA\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DO52QTJWRWK6AL8S\",\n            \"sfNmUser\": \"api-user879@pied-piper.example.com\",\n            \"nmLable\": \"Sales Cloud Prod 88\",\n            \"sfInstanceUrl\": \"https://prestige321.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1760348439000,\n            \"lastBackupStatus\": \"Salesforce Session Expired\",\n            \"sfAuthType\": \"standard\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DO52QTJWRWK6AL8S\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DJHFNBT4U9ATDRIV\",\n            \"sfNmUser\": \"api-user699@globex.example.com\",\n            \"nmLable\": \"Nightly Backup Org 47\",\n            \"sfInstanceUrl\": \"https://vandelay357-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1779882503000,\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"65.0\",\n            \"possibleRefreshedSfOrgId\": \"00DJHFNBT4U9ATDRIV\",\n            \"consumerKey\": \"{{salesforce_consumer_key_1bgw}}\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DHQSN6IEHIQ3UGUL\",\n            \"sfNmUser\": \"api-user44@prestige.example.com\",\n            \"nmLable\": \"Data Retention Org 84\",\n            \"sfInstanceUrl\": \"https://wayne4313-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1747298460000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:c04b701a-2664-293b-3c16-57c2bcf52871\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DHQSN6IEHIQ3UGUL\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DUE4CIYD2A1285A4\",\n            \"sfNmUser\": \"api-user386@hooli.example.com\",\n            \"nmLable\": \"Data Retention Org 84\",\n            \"sfInstanceUrl\": \"https://soylent7062-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1747298494000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:8a465089-53e6-623a-fa60-061a6c6ae565\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DUE4CIYD2A1285A4\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DD82INRSG9A3AW23\",\n            \"sfNmUser\": \"api-user298@wayne.example.com\",\n            \"nmLable\": \"Release Staging Org 11\",\n            \"sfInstanceUrl\": \"https://duff4344-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1752222658000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:2271eb26-fe88-15f7-7112-c0b86d31e9a6\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DD82INRSG9A3AW23\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00D2C1R0CZWO6ZUOCV\",\n            \"sfNmUser\": \"api-user761@cyberdyne.example.com\",\n            \"nmLable\": \"QA Sandbox 72\",\n            \"sfInstanceUrl\": \"https://wonka9174-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1780466785000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:69e1344e-5311-d341-7262-01e4c963bce3\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00D2C1R0CZWO6ZUOCV\",\n            \"consumerKey\": \"{{salesforce_consumer_key_07ml}}\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00DDCM1G69QAH24YRO\",\n            \"sfNmUser\": \"api-user33@umbrella.example.com\",\n            \"nmLable\": \"Prod Backup Org 81\",\n            \"sfInstanceUrl\": \"https://pied-piper9241-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1770740635000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:88c10148-1c97-5b9f-b786-3780025844c0\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00DDCM1G69QAH24YRO\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00D5WW9CVBO4PIDJ51\",\n            \"sfNmUser\": \"api-user712@prestige.example.com\",\n            \"nmLable\": \"Support Sandbox 6\",\n            \"sfInstanceUrl\": \"https://prestige321.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1758533935000,\n            \"sfAuthType\": \"standard\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00D5WW9CVBO4PIDJ51\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        },\n        {\n            \"idSforg\": \"00D528RMQS66DQF7IG\",\n            \"sfNmUser\": \"api-user525@wayne.example.com\",\n            \"nmLable\": \"Dev Scratch Org 76\",\n            \"sfInstanceUrl\": \"https://prestige3434-dev-ed.develop.my.salesforce.com\",\n            \"idUser\": \"3f7c9299-7586-76cd-a66c-370f9c94336e\",\n            \"tmStamp\": 1772092678000,\n            \"lastBackupStatus\": \"COMPLETED: IDCFG:5e35ace4-930f-ffb1-b98e-e9bbef837df4\",\n            \"sfAuthType\": \"oauth\",\n            \"loginUrl\": \"https://login.salesforce.com\",\n            \"sfEnviType\": \"salesforce\",\n            \"sfVersion\": \"66.0\",\n            \"possibleRefreshedSfOrgId\": \"00D528RMQS66DQF7IG\",\n            \"consumerKey\": \"\",\n            \"instanceType\": \"PRODUCTION\",\n            \"sfOrgType\": \"Developer Edition\",\n            \"customerId\": \"customer-1398\"\n        }\n    ],\n    \"timestamp\": \"2026-06-03T11:47:56\"\n}"}],"_postman_id":"10a08775-5d97-4a42-a6c2-d4caef03ad1e"},{"name":"Get Backup Configs","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.length) ? res.data[0].configId : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('configId', String(val));","        console.log('Captured configId =', String(val));","    } else {","        console.log('No configId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping configId capture');","}"],"id":"ca0b68f5-288a-447a-8045-47213fb51b2f"}}],"id":"e74407f5-5d6f-4044-aece-848f0c3c928e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/salesforce-orgs//configs","description":"<p>Lists the backup configurations defined for an org.</p>\n<p><strong>GET</strong> <code>/salesforce-orgs//configs</code></p>\n<p><strong>Path</strong>  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Var</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>idSforg</code></td>\n<td>Salesforce org id (from <em>List Salesforce Orgs</em>)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response —</strong> <strong><code>data[]</code></strong>  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>configId</code></td>\n<td>uuid</td>\n<td>Backup config id. <strong>Captured to</strong> <strong><code>&lt;configId&gt;</code>****.</strong></td>\n</tr>\n<tr>\n<td><code>backupConfigId</code></td>\n<td>string</td>\n<td>Internal backup config reference</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Config name</td>\n</tr>\n<tr>\n<td><code>hierarchical</code></td>\n<td>bool</td>\n<td>Whether the config backs up child objects</td>\n</tr>\n<tr>\n<td><code>archival</code></td>\n<td>bool</td>\n<td>Whether the config is archive-capable</td>\n</tr>\n<tr>\n<td><code>backupType</code></td>\n<td>string</td>\n<td>e.g. <code>salesforce</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Consumes:</strong> <code>&lt;idSforg&gt;</code> · <strong>Produces:</strong> <code>&lt;configId&gt;</code> &lt;- <code>data[0].configId</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-TOKEN"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"045d4f6b-ae0d-410a-b7ba-5613fc17bc5c","id":"045d4f6b-ae0d-410a-b7ba-5613fc17bc5c","name":"Configs & Orgs","type":"folder"}},"urlObject":{"path":["ARVault","api","v1","salesforce-orgs","","configs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"dd382d4d-cc6e-43c8-8745-685c6341941f","name":"CONFIGS","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/salesforce-orgs//configs"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:47:47 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:47:47 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:47:47 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:47:47 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:47:47 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Configs fetched successfully.\",\n    \"data\": [\n        {\n            \"configId\": \"fd86432d-3fc4-5c51-2d7d-205c11e6ea4e\",\n            \"backupConfigId\": \"bd4bbeac15b63bb3e4e2508b47e3b275\",\n            \"name\": \"San_ArchiveCustA\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"8352c7a4-7ea0-9b4e-7225-467b9c7e7dfc\",\n            \"backupConfigId\": \"586406230b06dfd6e441765c56b274d5\",\n            \"name\": \"San_ArchiveEqualfilter\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"6f7fc922-f6f2-94c4-c58a-4cc9bce35db5\",\n            \"backupConfigId\": \"84d7be5b289b8ddc02f9bda3c97475c2\",\n            \"name\": \"San_ArchiveFiltertest\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"616755a0-56da-5650-bf19-43cb15783082\",\n            \"backupConfigId\": \"075945f9f2df63516e962432f102d336\",\n            \"name\": \"San_ArchiveTestA\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"937adf7d-c5dd-2415-6b8e-66dfba7ee345\",\n            \"backupConfigId\": \"7955bb90177bf968bf438e6e68b91009\",\n            \"name\": \"San_archiveWithFiles\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"ddc9297d-45ee-70f9-dac7-614f2c35dd51\",\n            \"backupConfigId\": \"d3d2d6f2d92a7fa71ea560fb1c1739da\",\n            \"name\": \"San_limitArchive\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"9a733cbb-6fd8-51c4-f531-71f99a66ad7d\",\n            \"backupConfigId\": \"c974ab5ea41f3304298eae9e495aefba\",\n            \"name\": \"San_restrictDel\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        }\n    ],\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:47:47\"\n}"}],"_postman_id":"e74407f5-5d6f-4044-aece-848f0c3c928e"},{"name":"Get Archive Configs","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.length) ? res.data[0].configId : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('configId', String(val));","        console.log('Captured configId =', String(val));","    } else {","        console.log('No configId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping configId capture');","}"],"id":"f0be1599-62e0-4d3f-b849-c0e770344a05"}}],"id":"f052719b-e876-4be0-897d-b17cf367549d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/salesforce-orgs//configs?configType=archive","description":"<p>Lists archive-capable configurations for an org (same shape as <em>Get Backup Configs</em>, filtered to archive).</p>\n<p><strong>GET</strong> <code>/salesforce-orgs/&lt;idSforg&gt;/configs?configType=archive</code></p>\n<p><strong>Query</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Param</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>configType</code></td>\n<td><code>archive</code></td>\n<td>Return only archive configs</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response — <code>data[]</code>:</strong> same fields as <em>Get Backup Configs</em> (<code>configId</code>, <code>name</code>, <code>archival</code>, ...).</p>\n<p><strong>Consumes:</strong> <code>&lt;idSforg&gt;</code> · <strong>Produces:</strong> <code>&lt;configId&gt;</code> &lt;- <code>data[0].configId</code></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-TOKEN"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"045d4f6b-ae0d-410a-b7ba-5613fc17bc5c","id":"045d4f6b-ae0d-410a-b7ba-5613fc17bc5c","name":"Configs & Orgs","type":"folder"}},"urlObject":{"path":["ARVault","api","v1","salesforce-orgs","","configs"],"host":[""],"query":[{"key":"configType","value":"archive"}],"variable":[]}},"response":[{"id":"8aafe96c-0b41-44c9-b6ec-8de921480e25","name":"archive_configs","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":{"raw":"/ARVault/api/v1/salesforce-orgs//configs?configType=archive","host":[""],"path":["ARVault","api","v1","salesforce-orgs","","configs"],"query":[{"key":"configType","value":"archive"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:50:19 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:50:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:50:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:50:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:50:19 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Configs fetched successfully.\",\n    \"data\": [\n        {\n            \"configId\": \"fd86432d-3fc4-5c51-2d7d-205c11e6ea4e\",\n            \"backupConfigId\": \"bd4bbeac15b63bb3e4e2508b47e3b275\",\n            \"name\": \"San_ArchiveCustA\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"8352c7a4-7ea0-9b4e-7225-467b9c7e7dfc\",\n            \"backupConfigId\": \"586406230b06dfd6e441765c56b274d5\",\n            \"name\": \"San_ArchiveEqualfilter\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"6f7fc922-f6f2-94c4-c58a-4cc9bce35db5\",\n            \"backupConfigId\": \"84d7be5b289b8ddc02f9bda3c97475c2\",\n            \"name\": \"San_ArchiveFiltertest\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"616755a0-56da-5650-bf19-43cb15783082\",\n            \"backupConfigId\": \"075945f9f2df63516e962432f102d336\",\n            \"name\": \"San_ArchiveTestA\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"937adf7d-c5dd-2415-6b8e-66dfba7ee345\",\n            \"backupConfigId\": \"7955bb90177bf968bf438e6e68b91009\",\n            \"name\": \"San_archiveWithFiles\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"ddc9297d-45ee-70f9-dac7-614f2c35dd51\",\n            \"backupConfigId\": \"d3d2d6f2d92a7fa71ea560fb1c1739da\",\n            \"name\": \"San_limitArchive\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        },\n        {\n            \"configId\": \"9a733cbb-6fd8-51c4-f531-71f99a66ad7d\",\n            \"backupConfigId\": \"c974ab5ea41f3304298eae9e495aefba\",\n            \"name\": \"San_restrictDel\",\n            \"hierarchical\": true,\n            \"archival\": true,\n            \"backupType\": \"salesforce\"\n        }\n    ],\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:50:19\"\n}"}],"_postman_id":"f052719b-e876-4be0-897d-b17cf367549d"}],"id":"045d4f6b-ae0d-410a-b7ba-5613fc17bc5c","description":"<p>Lookup endpoints. Fetch the Salesforce org list and the backup/archive configurations available for an org. Run these first to seed <code>&lt;idSforg&gt;</code> and <code>&lt;configId&gt;</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"X-API-TOKEN"},{"key":"value","value":"<value>"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"requests":{},"exec":[""],"id":"7e187678-fc19-4ddc-85b4-5294f11a637a"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"requests":{},"exec":[""],"id":"18797177-bd21-4456-ad2c-48d90e6182eb"}}],"_postman_id":"045d4f6b-ae0d-410a-b7ba-5613fc17bc5c"},{"name":"Create (POST)","item":[{"name":"Start Backup","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = res.data;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('backupId', String(val));","        console.log('Captured backupId =', String(val));","    } else {","        console.log('No backupId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping backupId capture');","}"],"id":"d86dfae1-355b-4661-a5ca-a694d70d8b6c"}}],"id":"b1e9bb40-6a6f-4845-87fc-ba2f95edec44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"orgId\": \"\",\n  \"configId\": \"\",\n  \"label\": \"API Backup Test\",\n  \"scope\": {\n    \"data\": \"FULL\",\n    \"metadata\": \"NONE\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/backups","description":"<p>Triggers a new backup job.</p>\n<p><strong>POST</strong> <code>/backups</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orgId</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Salesforce org id (<code>&lt;idSforg&gt;</code>)</td>\n</tr>\n<tr>\n<td><code>configId</code></td>\n<td>uuid</td>\n<td>yes</td>\n<td>Backup config to run (<code>&lt;configId&gt;</code>)</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Human-readable name for the job</td>\n</tr>\n<tr>\n<td><code>scope.data</code></td>\n<td>enum</td>\n<td>yes</td>\n<td><code>FULL</code> / <code>NONE</code> — data backup scope</td>\n</tr>\n<tr>\n<td><code>scope.metadata</code></td>\n<td>enum</td>\n<td>yes</td>\n<td><code>FULL</code> / <code>NONE</code> — metadata backup scope</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data</code> = new backup job id (string).</p>\n<p><strong>Consumes:</strong> <code>&lt;idSforg&gt;</code>, <code>&lt;configId&gt;</code> · <strong>Produces:</strong> <code>&lt;backupId&gt;</code> &lt;- <code>data</code></p>\n","urlObject":{"path":["ARVault","api","v1","backups"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"4766f39b-b6cc-48aa-b7ea-0d6a3153ab60","name":"backups","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"orgId\": \"\",\n  \"configId\": \"\",\n  \"label\": \"API Backup Test\",\n  \"scope\": {\n    \"data\": \"FULL\",\n    \"metadata\": \"NONE\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/backups"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:48:19 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:48:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:48:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:48:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:48:19 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Backup started successfully.\",\n    \"data\": \"b6b0e030-491b-5b5a-6173-a2c22314b256\",\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:48:19\"\n}"}],"_postman_id":"b1e9bb40-6a6f-4845-87fc-ba2f95edec44"},{"name":"Start Archive","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = res.data;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('archiveId', String(val));","        console.log('Captured archiveId =', String(val));","    } else {","        console.log('No archiveId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping archiveId capture');","}"],"id":"5019de51-34a7-4232-b383-347a58aa6869"}}],"id":"a2822010-1498-4a90-8833-84b6ae174440","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"orgId\": \"\",\n  \"configId\": \"\",\n  \"label\": \"API Archivegh Test\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/archives","description":"<p>Triggers a new archive job (soft-delete + archive of records).</p>\n<p><strong>POST</strong> <code>/archives</code></p>\n<p><strong>Request body</strong>  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orgId</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Salesforce org id (<code>&lt;idSforg&gt;</code>)</td>\n</tr>\n<tr>\n<td><code>configId</code></td>\n<td>uuid</td>\n<td>yes</td>\n<td>Archive config to run (<code>&lt;configId&gt;</code>)</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Human-readable name for the job</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data</code> = new archive job id (string). Archive must later be finalized via <strong>Confirm Archive</strong>.</p>\n<p><strong>Consumes:</strong> <code>&lt;idSforg&gt;</code>, <code>&lt;configId&gt;</code> · <strong>Produces:</strong> <code>&lt;archiveId&gt;</code> &lt;- <code>data</code></p>\n","urlObject":{"path":["ARVault","api","v1","archives"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"81cbc493-33ea-4805-8de1-23249d394837","name":"archive_trigger","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"orgId\": \"\",\n  \"configId\": \"\",\n  \"label\": \"API Archivegh Test\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/archives"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:50:58 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:50:58 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:50:58 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:50:58 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:50:58 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Archive started successfully.\",\n    \"data\": \"60f998d7-7353-3fd9-a707-c5563ab2e0c4\",\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:50:58\"\n}"}],"_postman_id":"a2822010-1498-4a90-8833-84b6ae174440"},{"name":"Start Restore","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = res.data;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('restoreId', String(val));","        console.log('Captured restoreId =', String(val));","    } else {","        console.log('No restoreId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping restoreId capture');","}"],"id":"69121a98-1083-4768-b8f5-e0a29476835d"}}],"id":"44e3c4a0-42cf-49a4-89e0-e3dcb003f4b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"APIRes_test_hrcy_tests\",\n  \"backupIds\": [\"\"],\n  \"options\": {\n    \"batchSize\": 200,\n    \"overrideDataWithNullValues\": false,\n    \"ignoreFailedRecords\": true,\n    \"serialMode\": false,\n    \"uniqueFields\": false,\n    \"automation\": {\n      \"flows\": false,\n      \"triggers\": false,\n      \"validationRules\": false,\n      \"workflows\": false\n    }\n  },\n  \"notifications\": {\n    \"emails\": [\"notifications28@example.com\"]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/restores","description":"<p>Triggers a restore of one or more completed backups.</p>\n<p><strong>POST</strong> <code>/restores</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>label</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Name for the restore job</td>\n</tr>\n<tr>\n<td><code>backupIds</code></td>\n<td>string[]</td>\n<td>yes</td>\n<td>Backup id(s) to restore (<code>[&lt;backupId&gt;]</code>)</td>\n</tr>\n<tr>\n<td><code>options.batchSize</code></td>\n<td>int</td>\n<td>no</td>\n<td>Records per batch (default 200)</td>\n</tr>\n<tr>\n<td><code>options.overrideDataWithNullValues</code></td>\n<td>bool</td>\n<td>no</td>\n<td>Overwrite target fields with null values</td>\n</tr>\n<tr>\n<td><code>options.ignoreFailedRecords</code></td>\n<td>bool</td>\n<td>no</td>\n<td>Continue past failed records</td>\n</tr>\n<tr>\n<td><code>options.serialMode</code></td>\n<td>bool</td>\n<td>no</td>\n<td>Process serially (no parallel batches)</td>\n</tr>\n<tr>\n<td><code>options.uniqueFields</code></td>\n<td>bool</td>\n<td>no</td>\n<td>Use unique/external-id upsert matching</td>\n</tr>\n<tr>\n<td><code>options.automation.{flows,triggers,validationRules,workflows}</code></td>\n<td>bool</td>\n<td>no</td>\n<td>Toggle Salesforce automation during restore</td>\n</tr>\n<tr>\n<td><code>notifications.emails</code></td>\n<td>string[]</td>\n<td>no</td>\n<td>Emails notified on completion</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data</code> = new restore job id.</p>\n<p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code> · <strong>Produces:</strong> <code>&lt;restoreId&gt;</code> &lt;- <code>data</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"105aefbd-2233-4bfb-b040-47a4d498524e","name":"restore","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"APIRes_test_hrcy_tests\",\n  \"backupIds\": [\"\"],\n  \"options\": {\n    \"batchSize\": 200,\n    \"overrideDataWithNullValues\": false,\n    \"ignoreFailedRecords\": true,\n    \"serialMode\": false,\n    \"uniqueFields\": false,\n    \"automation\": {\n      \"flows\": false,\n      \"triggers\": false,\n      \"validationRules\": false,\n      \"workflows\": false\n    }\n  },\n  \"notifications\": {\n    \"emails\": [\"notifications28@example.com\"]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/restores"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:49:23 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:49:23 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:49:23 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:49:23 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:49:23 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Restore started successfully.\",\n    \"data\": \"686027\",\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:49:23\"\n}"}],"_postman_id":"44e3c4a0-42cf-49a4-89e0-e3dcb003f4b6"}],"id":"7a829625-64d7-4821-b2e3-91100e4c05bd","description":"<p>Trigger new Backup, Archive and Restore jobs. Each returns the new job id in <code>data</code> and stores it into the matching collection variable.</p>\n","_postman_id":"7a829625-64d7-4821-b2e3-91100e4c05bd"},{"name":"Backups (GET)","item":[{"name":"Get Backup Job","id":"076297f1-45d5-4f5b-82d6-8c433e7b18a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/backups/","description":"<p>Returns status and summary for a backup job.</p>\n<p><strong>GET</strong> <code>/backups/&lt;backupId&gt;</code></p>\n<p><strong>Response — <code>data</code></strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Backup job id</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Job name</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>enum</td>\n<td><code>INPROGRESS</code> / <code>COMPLETED</code> / <code>PARTIALYFAILED</code> / <code>FAILED</code> / <code>STOPED</code></td>\n</tr>\n<tr>\n<td><code>summary.data.{success,failure}</code></td>\n<td>int</td>\n<td>Record counts (data)</td>\n</tr>\n<tr>\n<td><code>summary.metadata.{success,failure}</code></td>\n<td>int</td>\n<td>Record counts (metadata)</td>\n</tr>\n<tr>\n<td><code>objects.&lt;Object&gt;.{records,success,failure}</code></td>\n<td>int</td>\n<td>Per-object counts</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","backups",""],"host":[""],"query":[],"variable":[]}},"response":[{"id":"f51f5b54-a1dd-4856-bef3-68ea83ce35db","name":"backupjob_criteria","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/backups/"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:48:28 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:48:28 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:48:28 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:48:28 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:48:28 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Backup fetched successfully.\",\n    \"data\": {\n        \"id\": \"c3e27fa1-288a-f8cd-218f-9b893dbac1d4\",\n        \"name\": \"ARV_Archive_Fri, 29-May-26 10:52 AM GMT\",\n        \"status\": \"PARTIALYFAILED\",\n        \"summary\": {\n            \"data\": {\n                \"success\": 17,\n                \"failure\": 0\n            },\n            \"metadata\": {\n                \"success\": 0,\n                \"failure\": 0\n            }\n        },\n        \"objects\": {\n            \"Account\": {\n                \"records\": 17,\n                \"success\": 17,\n                \"failure\": 0,\n                \"apiCalls\": 32,\n                \"durationMs\": 361469\n            }\n        },\n        \"metadata\": {},\n        \"criteriaIds\": [\n            \"c334da57-041c-852e-c2eb-de59493813c3\"\n        ],\n        \"hierarchical\": true\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:48:28\"\n}"}],"_postman_id":"076297f1-45d5-4f5b-82d6-8c433e7b18a4"},{"name":"Get Backup Logs","id":"20f558d7-24fc-436f-bc8e-07a5e659a96e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/backups//logs","description":"<p>Returns paginated live log lines for a backup job.</p>\n<p><strong>GET</strong> <code>/backups/&lt;backupId&gt;/logs</code></p>\n<p><strong>Response — <code>data</code></strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Backup job id</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>enum</td>\n<td>Current job status</td>\n</tr>\n<tr>\n<td><code>generatedAt</code></td>\n<td>ISO ts</td>\n<td>When logs were generated</td>\n</tr>\n<tr>\n<td><code>cursor</code></td>\n<td>int</td>\n<td>Paging cursor (last line index)</td>\n</tr>\n<tr>\n<td><code>hasMore</code></td>\n<td>bool</td>\n<td>More log lines available</td>\n</tr>\n<tr>\n<td><code>logs</code></td>\n<td>string[]</td>\n<td>Log lines</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","backups","","logs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"9f9726fb-af1f-4941-9aa8-8cca31cd5620","name":"backuplogs","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/backups//logs"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:48:35 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:48:35 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:48:35 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:48:35 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:48:35 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Live logs fetched successfully.\",\n    \"data\": {\n        \"id\": \"c3e27fa1-288a-f8cd-218f-9b893dbac1d4\",\n        \"status\": \"PARTIALYFAILED\",\n        \"generatedAt\": \"2026-06-03T11:48:35.334975540Z\",\n        \"cursor\": 653,\n        \"hasMore\": false,\n        \"logs\": [\n            \"29-May-2026 10:52:22[UTC] Backup has been initiated...\",\n            \"29-May-2026 10:52:22[UTC] Triggered By: vaultuser test\",\n            \"29-May-2026 10:52:22[UTC] Backup Start Time: 29-May-2026 10-52-21\",\n            \"29-May-2026 10:52:22[UTC] Exclude deleted records: No\",\n            \"29-May-2026 10:52:22[UTC] Synthetic backup enabled: No\",\n            \"29-May-2026 10:52:23[UTC] Backup has been initiated...\",\n            \"29-May-2026 10:52:24[UTC] Fetching records of Account  from Salesforce...\",\n            \"29-May-2026 10:52:24[UTC] Started Fetching records for Account\",\n            \"29-May-2026 10:52:24[UTC] Fetched 2 records from parent: Account\",\n            \"29-May-2026 10:52:24[UTC] Last record id of the object : Account is : 001dp00000oKVMJAA4\",\n            \"29-May-2026 10:52:24[UTC] 001dp00000oKVMJAA4 - This Id helps you identify the next chunk corresponding to the filter applied on the object along with a limit. For example, if you applied a filter on the object something like CreatedDate older than 1 year LIMIT 1000000 and if there are more than 1 million records corresponding to this filter in your object, then the next chunk of 1 million records can be identified by specifying the filter as CreatedDate older than 1 year and Id < 001dp00000oKVMJAA4  LIMIT 1000000 \",\n            \"29-May-2026 10:52:24[UTC] Fetched a total of 2 records from Account\",\n            \"29-May-2026 10:52:24[UTC] Fetched all childs of Account\",\n            \"29-May-2026 10:52:24[UTC] hierarchial process started...\",\n            \"29-May-2026 10:52:40[UTC] The Child list of : Account is: [AssociatedLocationChangeEvent, NetworkFeedResponseMetric, FlowExecutionErrorEvent, Task, Invoice, VideoCall, Attachment, RecordActionHistory, MessagingEndUser, TaskRelationChangeEvent, ContractChangeEvent, MessagingSessionChangeEvent, WorkOrder, FeedItem, ProcessInstanceChangeEvent, FeedComment, SocialPersona, AgentWork, Asset, TaskRelation, CampaignMember, FulfillmentOrder, PaymentAuthAdjustment, Order, AccountContactRelationChangeEvent, EmailMessage, AIRecordInsight, AIInsightValue, AgentWorkChangeEvent, WebCartChangeEvent, AssociatedLocation, ContentDocumentLinkChangeEvent, ReturnOrder, ApprovalWorkItem, Payment, RefundLinePayment, AccountChangeEvent, WorkOrderChangeEvent, Refund, Note, PaymentMethod, FlowOrchestrationWorkItem, PaymentLineInvoice, VideoCallChangeEvent, Contract, ScorecardAssociation, VoiceCall, UserDefinedLabelAssignment, AccountTeamMember, PendingOrderSummaryChangeEvent, VoiceCallChangeEvent, CardPaymentMethod, EventWhoRelation, ApprovalSubmission, DeclinedEventRelation, MessagingEndUserChangeEvent, ObjectRelatedUrl, Case, SocialPost, ReturnOrderChangeEvent, ContentVersionChangeEvent, DigitalWallet, ContentVersion, Opportunity, CreditMemo, Lead, TaskWhoRelation, SurveySubjectChangeEvent, PendingServiceRoutingInteractionInfo, NetworkSelfRegistration, SocialPostChangeEvent, AlternativePaymentMethod, ObjectRelatedUrlChangeEvent, EmailMessageChangeEvent, AcceptedEventRelation, UserPrioritizedRecord, WebCart, PendingOrderSummary, AuthProvider, FulfillmentOrderChangeEvent, Contact, Quote, UndecidedEventRelation, CollaborationGroupRecordChangeEvent, PaymentAuthorization, PendingServiceRoutingChangeEvent, AccountShare, MessagingSession, UserChangeEvent, Event, AccountContactRelation, SurveySubject, PendingServiceRouting]\",\n            \"29-May-2026 10:52:40[UTC] Task is related to Account through the fields :[WhatId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:40[UTC] Started process of child: Task\",\n            \"29-May-2026 10:52:41[UTC] Started Fetching records for Task\",\n            \"29-May-2026 10:52:41[UTC] Fetched 1 ids from child: Task\",\n            \"29-May-2026 10:52:41[UTC] Invoice is related to Account through the fields :[BillingAccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:41[UTC] Started process of child: Invoice\",\n            \"29-May-2026 10:52:42[UTC] Attachment is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:42[UTC] Started process of child: Attachment\",\n            \"29-May-2026 10:52:42[UTC] Started Fetching records for Attachment\",\n            \"29-May-2026 10:52:42[UTC] Fetched 1 ids from child: Attachment\",\n            \"29-May-2026 10:52:43[UTC] FeedItem is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:43[UTC] Started process of child: FeedItem\",\n            \"29-May-2026 10:52:44[UTC] Started process of child: FeedComment\",\n            \"29-May-2026 10:52:44[UTC] SocialPersona is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:44[UTC] Started process of child: SocialPersona\",\n            \"29-May-2026 10:52:44[UTC] AgentWork is related to Account through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:44[UTC] Started process of child: AgentWork\",\n            \"29-May-2026 10:52:45[UTC] Asset is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:45[UTC] Started process of child: Asset\",\n            \"29-May-2026 10:52:46[UTC] TaskRelation is related to Account through the fields :[RelationId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:46[UTC] Started process of child: TaskRelation\",\n            \"29-May-2026 10:52:46[UTC] Started Fetching records for TaskRelation\",\n            \"29-May-2026 10:52:46[UTC] Fetched 1 ids from child: TaskRelation\",\n            \"29-May-2026 10:52:46[UTC] Order is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:46[UTC] Started process of child: Order\",\n            \"29-May-2026 10:52:47[UTC] Started process of child: EmailMessage\",\n            \"29-May-2026 10:52:49[UTC] AIInsightValue is related to Account through the fields :[SobjectLookupValueId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:49[UTC] Started process of child: AIInsightValue\",\n            \"29-May-2026 10:52:50[UTC] AssociatedLocation is related to Account through the fields :[ParentRecordId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:50[UTC] Started process of child: AssociatedLocation\",\n            \"29-May-2026 10:52:50[UTC] Note is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:50[UTC] Started process of child: Note\",\n            \"29-May-2026 10:52:51[UTC] Started Fetching records for Note\",\n            \"29-May-2026 10:52:51[UTC] Fetched 1 ids from child: Note\",\n            \"29-May-2026 10:52:51[UTC] Contract is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:51[UTC] Started process of child: Contract\",\n            \"29-May-2026 10:52:52[UTC] ScorecardAssociation is related to Account through the fields :[TargetEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:52[UTC] Started process of child: ScorecardAssociation\",\n            \"29-May-2026 10:52:53[UTC] UserDefinedLabelAssignment is related to Account through the fields :[ItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:53[UTC] Started process of child: UserDefinedLabelAssignment\",\n            \"29-May-2026 10:52:53[UTC] AccountTeamMember is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:53[UTC] Started process of child: AccountTeamMember\",\n            \"29-May-2026 10:52:54[UTC] ObjectRelatedUrl is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:54[UTC] Started process of child: ObjectRelatedUrl\",\n            \"29-May-2026 10:52:55[UTC] Case is related to Account through the fields :[AccountId] with Restricted delete enabled\",\n            \"29-May-2026 10:52:55[UTC] Started process of child: Case\",\n            \"29-May-2026 10:52:55[UTC] Started Fetching records for Case\",\n            \"29-May-2026 10:52:55[UTC] Fetched 1 ids from child: Case\",\n            \"29-May-2026 10:52:56[UTC] ContentDocumentLink is related to Account through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:56[UTC] Started Fetching records for ContentDocumentLink\",\n            \"29-May-2026 10:52:56[UTC] Fetched 1 ids from child: ContentDocumentLink\",\n            \"29-May-2026 10:52:57[UTC] Started Fetching records for ContentDocument\",\n            \"29-May-2026 10:52:57[UTC] Fetched 1 ids from child: ContentDocument\",\n            \"29-May-2026 10:52:58[UTC] Started Fetching records for ContentVersion\",\n            \"29-May-2026 10:52:58[UTC] Fetched 1 ids from child: ContentVersion\",\n            \"29-May-2026 10:52:59[UTC] Started process of child: ContentVersion\",\n            \"29-May-2026 10:52:59[UTC] Opportunity is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:52:59[UTC] Started process of child: Opportunity\",\n            \"29-May-2026 10:52:59[UTC] Started Fetching records for Opportunity\",\n            \"29-May-2026 10:52:59[UTC] Fetched 1 ids from child: Opportunity\",\n            \"29-May-2026 10:53:00[UTC] CreditMemo is related to Account through the fields :[BillingAccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:00[UTC] Started process of child: CreditMemo\",\n            \"29-May-2026 10:53:01[UTC] PendingServiceRoutingInteractionInfo is related to Account through the fields :[PrimaryRecordId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:01[UTC] PendingServiceRoutingInteractionInfo is related to Account through the fields :[TargetObjectId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:01[UTC] Started process of child: PendingServiceRoutingInteractionInfo\",\n            \"29-May-2026 10:53:02[UTC] UserPrioritizedRecord is related to Account through the fields :[TargetId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:02[UTC] Started process of child: UserPrioritizedRecord\",\n            \"29-May-2026 10:53:02[UTC] Contact is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:02[UTC] Started process of child: Contact\",\n            \"29-May-2026 10:53:03[UTC] Started Fetching records for Contact\",\n            \"29-May-2026 10:53:03[UTC] Fetched 1 ids from child: Contact\",\n            \"29-May-2026 10:53:03[UTC] AccountShare is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:03[UTC] Started process of child: AccountShare\",\n            \"29-May-2026 10:53:04[UTC] Event is related to Account through the fields :[WhatId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:04[UTC] Started process of child: Event\",\n            \"29-May-2026 10:53:04[UTC] Started Fetching records for Event\",\n            \"29-May-2026 10:53:04[UTC] Fetched 1 ids from child: Event\",\n            \"29-May-2026 10:53:05[UTC] AccountContactRelation is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:05[UTC] Started process of child: AccountContactRelation\",\n            \"29-May-2026 10:53:05[UTC] Started Fetching records for AccountContactRelation\",\n            \"29-May-2026 10:53:05[UTC] Fetched 1 ids from child: AccountContactRelation\",\n            \"29-May-2026 10:53:05[UTC] PendingServiceRouting is related to Account through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:05[UTC] Started process of child: PendingServiceRouting\",\n            \"29-May-2026 10:53:07[UTC] The Child list of : Task is: [NetworkFeedResponseMetric, EmailMessage, FlowExecutionErrorEvent, AIRecordInsight, VoiceCallChangeEvent, EmailMessageChangeEvent, ListEmailSentResultChangeEvent, AIInsightValue, Attachment, ListEmailSentResult, TaskRelationChangeEvent, ContentDocumentLinkChangeEvent, ContentVersionChangeEvent, FeedItem, ContentVersion, FeedComment, ActivityFieldHistory, NetworkUserHistoryRecent, TaskWhoRelation, TaskRelation, SurveySubject, VoiceCall, SurveySubjectChangeEvent, UserDefinedLabelAssignment]\",\n            \"29-May-2026 10:53:08[UTC] AIInsightValue is related to Task through the fields :[SobjectLookupValueId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:09[UTC] Attachment is related to Task through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:10[UTC] FeedItem is related to Task through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:11[UTC] ContentDocumentLink is related to Task through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:12[UTC] NetworkUserHistoryRecent is related to Task through the fields :[RecordId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:12[UTC] TaskRelation is related to Task through the fields :[TaskId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:13[UTC] Started Fetching records for TaskRelation\",\n            \"29-May-2026 10:53:13[UTC] Fetched 1 ids from child: TaskRelation\",\n            \"29-May-2026 10:53:13[UTC] UserDefinedLabelAssignment is related to Task through the fields :[ItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:15[UTC] The Child list of : Attachment is: [FlowExecutionErrorEvent]\",\n            \"29-May-2026 10:53:16[UTC] The Child list of : Case is: [NetworkFeedResponseMetric, FlowExecutionErrorEvent, Task, VideoCall, Attachment, RecordActionHistory, TaskRelationChangeEvent, MessagingSessionChangeEvent, WorkOrder, FeedItem, ProcessInstanceChangeEvent, FeedComment, AgentWork, CaseHistory2ChangeEvent, TaskRelation, EmailMessage, AIRecordInsight, AIInsightValue, AgentWorkChangeEvent, CaseShare, ContentDocumentLinkChangeEvent, ReturnOrder, ListEmailChangeEvent, ApprovalWorkItem, WorkOrderChangeEvent, CaseHistory2, NetworkUserHistoryRecent, FlowOrchestrationWorkItem, VideoCallChangeEvent, VoiceCall, UserDefinedLabelAssignment, VoiceCallChangeEvent, ApprovalSubmission, ForecastingItem__hd, ProcessExceptionChangeEvent, SocialPost, ReturnOrderChangeEvent, ContentVersionChangeEvent, ContentVersion, SurveySubjectChangeEvent, PendingServiceRoutingInteractionInfo, SocialPostChangeEvent, EmailMessageChangeEvent, ProcessException, ListEmail, CollaborationGroupRecordChangeEvent, PendingServiceRoutingChangeEvent, MessagingSession, Event, Opportunity__hd, SurveySubject, PendingServiceRouting]\",\n            \"29-May-2026 10:53:16[UTC] Attachment is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:16[UTC] FeedItem is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:17[UTC] Started Fetching records for FeedItem\",\n            \"29-May-2026 10:53:17[UTC] Fetched 2 ids from child: FeedItem\",\n            \"29-May-2026 10:53:17[UTC] AgentWork is related to Case through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:18[UTC] TaskRelation is related to Case through the fields :[RelationId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:19[UTC] EmailMessage is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:21[UTC] AIInsightValue is related to Case through the fields :[SobjectLookupValueId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:22[UTC] CaseShare is related to Case through the fields :[CaseId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:22[UTC] CaseHistory2 is related to Case through the fields :[CaseId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:23[UTC] Started Fetching records for CaseHistory2\",\n            \"29-May-2026 10:53:23[UTC] Fetched 1 ids from child: CaseHistory2\",\n            \"29-May-2026 10:53:23[UTC] NetworkUserHistoryRecent is related to Case through the fields :[RecordId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:24[UTC] UserDefinedLabelAssignment is related to Case through the fields :[ItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:25[UTC] ForecastingItem__hd is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:26[UTC] ContentDocumentLink is related to Case through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:26[UTC] PendingServiceRoutingInteractionInfo is related to Case through the fields :[PrimaryRecordId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:26[UTC] PendingServiceRoutingInteractionInfo is related to Case through the fields :[TargetObjectId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:28[UTC] Event is related to Case through the fields :[WhatId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:29[UTC] Opportunity__hd is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:30[UTC] PendingServiceRouting is related to Case through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:31[UTC] The Child list of : Opportunity is: [NetworkFeedResponseMetric, FlowExecutionErrorEvent, Task, Invoice, VideoCall, OpportunityLineItem, Attachment, RecordActionHistory, TaskRelationChangeEvent, MessagingSessionChangeEvent, FeedItem, OpportunityLineItemChangeEvent, OpportunityShare, ProcessInstanceChangeEvent, FeedComment, AgentWork, TaskRelation, RecentFieldChange, EmailMessage, AIRecordInsight, QuoteChangeEvent, OpportunityContactRoleChangeEvent, AIInsightValue, AgentWorkChangeEvent, ForecastingSrcRecJudgment, ContentDocumentLinkChangeEvent, ListEmailChangeEvent, ApprovalWorkItem, Note, FlowOrchestrationWorkItem, VideoCallChangeEvent, VoiceCall, UserDefinedLabelAssignment, VoiceCallChangeEvent, OpportunityRelatedDeleteLog, ApprovalSubmission, ForecastingItem__hd, ContentVersionChangeEvent, ContentVersion, Lead, SurveySubjectChangeEvent, ForecastingFact, PendingServiceRoutingInteractionInfo, FieldChangeSnapshot, EmailMessageChangeEvent, UserPrioritizedRecord, Quote, ListEmail, CollaborationGroupRecordChangeEvent, PendingServiceRoutingChangeEvent, MessagingSession, Event, Opportunity__hd, SurveySubject, PendingServiceRouting]\",\n            \"29-May-2026 10:53:31[UTC] OpportunityLineItem is related to Opportunity through the fields :[OpportunityId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:32[UTC] Attachment is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:32[UTC] FeedItem is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:33[UTC] OpportunityShare is related to Opportunity through the fields :[OpportunityId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:34[UTC] AgentWork is related to Opportunity through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:34[UTC] TaskRelation is related to Opportunity through the fields :[RelationId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:36[UTC] AIInsightValue is related to Opportunity through the fields :[SobjectLookupValueId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:37[UTC] ForecastingSrcRecJudgment is related to Opportunity through the fields :[ReferenceObjectId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:38[UTC] Note is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:38[UTC] UserDefinedLabelAssignment is related to Opportunity through the fields :[ItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:39[UTC] OpportunityRelatedDeleteLog is related to Opportunity through the fields :[OpportunityId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:39[UTC] ForecastingItem__hd is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:40[UTC] ContentDocumentLink is related to Opportunity through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:41[UTC] PendingServiceRoutingInteractionInfo is related to Opportunity through the fields :[PrimaryRecordId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:41[UTC] PendingServiceRoutingInteractionInfo is related to Opportunity through the fields :[TargetObjectId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:42[UTC] UserPrioritizedRecord is related to Opportunity through the fields :[TargetId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:43[UTC] Quote is related to Opportunity through the fields :[OpportunityId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:44[UTC] Event is related to Opportunity through the fields :[WhatId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:44[UTC] Opportunity__hd is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:44[UTC] Started Fetching records for Opportunity__hd\",\n            \"29-May-2026 10:53:44[UTC] Fetched 1 ids from child: Opportunity__hd\",\n            \"29-May-2026 10:53:45[UTC] PendingServiceRouting is related to Opportunity through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:46[UTC] The Child list of : TaskRelation is: [FlowExecutionErrorEvent]\",\n            \"29-May-2026 10:53:47[UTC] The Child list of : Contact is: [NetworkFeedResponseMetric, FlowExecutionErrorEvent, Task, Invoice, VideoCall, Attachment, RecordActionHistory, ListEmailSentResult, MessagingEndUser, TaskRelationChangeEvent, ContractChangeEvent, MessagingSessionChangeEvent, CampaignMemberChangeEvent, WorkOrder, FeedItem, ProcessInstanceChangeEvent, FeedComment, SocialPersona, AgentWork, Asset, TaskRelation, CampaignMember, FulfillmentOrder, SurveyResponseChangeEvent, UserEmailPreferredPerson, Order, AccountContactRelationChangeEvent, EmailMessage, AIRecordInsight, QuoteChangeEvent, OpportunityContactRoleChangeEvent, ListEmailSentResultChangeEvent, AIInsightValue, AgentWorkChangeEvent, ConversationParticipant, ContentDocumentLinkChangeEvent, ReturnOrder, ListEmailChangeEvent, ApprovalWorkItem, WorkOrderChangeEvent, Note, UserEmailPreferredPersonChangeEvent, FlowOrchestrationWorkItem, VideoCallChangeEvent, Contract, VoiceCall, UserDefinedLabelAssignment, PendingOrderSummaryChangeEvent, VoiceCallChangeEvent, MatchingInformation, SurveyInvitation, EventWhoRelation, ApprovalSubmission, DeclinedEventRelation, ListEmailIndividualRecipient, MessagingEndUserChangeEvent, VideoCallParticipant, ObjectRelatedUrl, Case, SocialPost, ReturnOrderChangeEvent, ContentVersionChangeEvent, ContentVersion, EmailMessageRelation, Opportunity, CreditMemo, Lead, TaskWhoRelation, SurveySubjectChangeEvent, SurveyInvitationChangeEvent, PendingServiceRoutingInteractionInfo, SocialPostChangeEvent, ObjectRelatedUrlChangeEvent, AcceptedEventRelation, EmailBounceEvent, SurveyResponse, UserPrioritizedRecord, PendingOrderSummary, FulfillmentOrderChangeEvent, Quote, UndecidedEventRelation, ListEmail, CollaborationGroupRecordChangeEvent, PendingServiceRoutingChangeEvent, ContactShare, MessagingSession, UserChangeEvent, Event, AccountContactRelation, SurveySubject, PendingServiceRouting, VideoCallParticipantChangeEvent]\",\n            \"29-May-2026 10:53:47[UTC] Attachment is related to Contact through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:48[UTC] FeedItem is related to Contact through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:49[UTC] CampaignMember is related to Contact through the fields :[ContactId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:49[UTC] UserEmailPreferredPerson is related to Contact through the fields :[PersonRecordId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:50[UTC] Note is related to Contact through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:51[UTC] Contract is related to Contact through the fields :[CustomerSignedId] with Restricted delete enabled\",\n            \"29-May-2026 10:53:51[UTC] UserDefinedLabelAssignment is related to Contact through the fields :[ItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:52[UTC] MatchingInformation is related to Contact through the fields :[SFDCIdId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:52[UTC] SurveyInvitation is related to Contact through the fields :[ContactId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:52[UTC] SurveyInvitation is related to Contact through the fields :[ParticipantId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:53[UTC] ListEmailIndividualRecipient is related to Contact through the fields :[RecipientId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:54[UTC] ContentDocumentLink is related to Contact through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:55[UTC] EmailMessageRelation is related to Contact through the fields :[RelationId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:56[UTC] ContactShare is related to Contact through the fields :[ContactId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:56[UTC] Event is related to Contact through the fields :[WhoId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:57[UTC] AccountContactRelation is related to Contact through the fields :[ContactId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:57[UTC] Started Fetching records for AccountContactRelation\",\n            \"29-May-2026 10:53:57[UTC] Fetched 1 ids from child: AccountContactRelation\",\n            \"29-May-2026 10:53:58[UTC] PendingServiceRouting is related to Contact through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:53:59[UTC] The Child list of : Note is: [FlowExecutionErrorEvent]\",\n            \"29-May-2026 10:54:00[UTC] The Child list of : Event is: [NetworkFeedResponseMetric, FlowExecutionErrorEvent, AIRecordInsight, VideoCall, AIInsightValue, AcceptedEventRelation, EventWhoRelation, Attachment, DeclinedEventRelation, ContentDocumentLinkChangeEvent, UndecidedEventRelation, ContentVersionChangeEvent, FeedItem, ContentVersion, FeedComment, ActivityFieldHistory, SurveySubject, VideoCallChangeEvent, ExternalEventMapping, SurveySubjectChangeEvent]\",\n            \"29-May-2026 10:54:00[UTC] Attachment is related to Event through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:00[UTC] FeedItem is related to Event through the fields :[ParentId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:01[UTC] ContentDocumentLink is related to Event through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:02[UTC] ExternalEventMapping is related to Event through the fields :[EventId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:03[UTC] The Child list of : AccountContactRelation is: [FlowExecutionErrorEvent, AIRecordInsight, AIInsightValue]\",\n            \"29-May-2026 10:54:04[UTC] The Child list of : FeedItem is: [NetworkFeedResponseMetric, FeedSignal, FlowExecutionErrorEvent, Announcement, FeedComment, FeedRevision, NetworkUserHistoryRecent, FeedAttachment, WorkThanks, NetworkModeration, WorkThanksChangeEvent]\",\n            \"29-May-2026 10:54:04[UTC] NetworkFeedResponseMetric is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:05[UTC] FeedSignal is related to FeedItem through the fields :[FeedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:05[UTC] FeedSignal is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:06[UTC] Announcement is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:07[UTC] FeedComment is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:08[UTC] FeedRevision is related to FeedItem through the fields :[FeedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:08[UTC] NetworkUserHistoryRecent is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:09[UTC] FeedAttachment is related to FeedItem through the fields :[FeedEntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:09[UTC] NetworkModeration is related to FeedItem through the fields :[EntityId] with Cascade delete enabled\",\n            \"29-May-2026 10:54:13[UTC] ------------>End the child of Account<------------\",\n            \"29-May-2026 10:54:13[UTC] ------------>Start the parent of Account<------------\",\n            \"29-May-2026 10:54:13[UTC] The Parent list of : Account is: []\",\n            \"29-May-2026 10:54:14[UTC] ------------>Start the Individual parent of Account<------------\",\n            \"29-May-2026 10:54:14[UTC] The Parent list of : CaseHistory2 is: [Case]\",\n            \"29-May-2026 10:54:14[UTC] Case is the required parent of CaseHistory2 related through the fields: [CaseId]\",\n            \"29-May-2026 10:54:14[UTC] Started process of child: Case\",\n            \"29-May-2026 10:54:14[UTC] Started Fetching records for Case\",\n            \"29-May-2026 10:54:14[UTC] Fetched 1 ids from child: Case\",\n            \"29-May-2026 10:54:17[UTC] The Parent list of : Opportunity__hd is: [Opportunity]\",\n            \"29-May-2026 10:54:17[UTC] Opportunity is the required parent of Opportunity__hd related through the fields: [ParentId]\",\n            \"29-May-2026 10:54:17[UTC] Started process of child: Opportunity\",\n            \"29-May-2026 10:54:17[UTC] Started Fetching records for Opportunity\",\n            \"29-May-2026 10:54:17[UTC] Fetched 1 ids from child: Opportunity\",\n            \"29-May-2026 10:54:19[UTC] The Parent list of : Case is: []\",\n            \"29-May-2026 10:54:20[UTC] The Parent list of : Opportunity is: []\",\n            \"29-May-2026 10:54:20[UTC] The Parent list of : Contact is: []\",\n            \"29-May-2026 10:54:21[UTC] The Parent list of : AccountContactRelation is: [Account, Contact]\",\n            \"29-May-2026 10:54:21[UTC] Account is the required parent of AccountContactRelation related through the fields: [AccountId]\",\n            \"29-May-2026 10:54:21[UTC] Started process of child: Account\",\n            \"29-May-2026 10:54:21[UTC] Started Fetching records for Account\",\n            \"29-May-2026 10:54:21[UTC] Fetched 1 ids from child: Account\",\n            \"29-May-2026 10:54:22[UTC] Contact is the required parent of AccountContactRelation related through the fields: [ContactId]\",\n            \"29-May-2026 10:54:22[UTC] Started process of child: Contact\",\n            \"29-May-2026 10:54:22[UTC] Started Fetching records for Contact\",\n            \"29-May-2026 10:54:22[UTC] Fetched 1 ids from child: Contact\",\n            \"29-May-2026 10:54:25[UTC] The Parent list of : Account is: []\",\n            \"29-May-2026 10:54:25[UTC] ------------>End the Individual parent of Account<------------\",\n            \"29-May-2026 10:54:25[UTC] Fetching records wrote in to csv files processs started...\",\n            \"29-May-2026 10:54:26[UTC] Started Fetching records for Account\",\n            \"29-May-2026 10:54:26[UTC] Fetched 2 records from child: Account\",\n            \"29-May-2026 10:54:27[UTC] Started Fetching records for Task\",\n            \"29-May-2026 10:54:27[UTC] Fetched 1 records from child: Task\",\n            \"29-May-2026 10:54:27[UTC] Started Fetching records for Attachment\",\n            \"29-May-2026 10:54:27[UTC] Fetched 1 records from child: Attachment\",\n            \"29-May-2026 10:54:28[UTC] Fetched 1 files from Attachment\",\n            \"29-May-2026 10:54:28[UTC] Transferring retrieved files to backup environment\",\n            \"29-May-2026 10:54:28[UTC] Starting upload to S3 bucket\",\n            \"29-May-2026 10:54:28[UTC] Upload completed successfully - 1 files, 0.00 MB\",\n            \"29-May-2026 10:54:28[UTC] Started Fetching records for ContentDocumentLink\",\n            \"29-May-2026 10:54:28[UTC] Fetched 1 records from child: ContentDocumentLink\",\n            \"29-May-2026 10:54:29[UTC] Started Fetching records for FeedItem\",\n            \"29-May-2026 10:54:29[UTC] Fetched 2 records from child: FeedItem\",\n            \"29-May-2026 10:54:31[UTC] Started Fetching records for TaskRelation\",\n            \"29-May-2026 10:54:31[UTC] Fetched 1 records from child: TaskRelation\",\n            \"29-May-2026 10:54:32[UTC] Started Fetching records for CaseHistory2\",\n            \"29-May-2026 10:54:32[UTC] Fetched 1 records from child: CaseHistory2\",\n            \"29-May-2026 10:54:33[UTC] Started Fetching records for Note\",\n            \"29-May-2026 10:54:33[UTC] Fetched 1 records from child: Note\",\n            \"29-May-2026 10:54:35[UTC] Started Fetching records for Case\",\n            \"29-May-2026 10:54:35[UTC] Fetched 1 records from child: Case\",\n            \"29-May-2026 10:54:36[UTC] Started Fetching records for ContentVersion\",\n            \"29-May-2026 10:54:36[UTC] Fetched 1 records from child: ContentVersion\",\n            \"29-May-2026 10:54:36[UTC] Fetched 2 files from ContentVersion\",\n            \"29-May-2026 10:54:36[UTC] Transferring retrieved files to backup environment\",\n            \"29-May-2026 10:54:36[UTC] Starting upload to S3 bucket\",\n            \"29-May-2026 10:54:36[UTC] Upload completed successfully - 1 files, 0.00 MB\",\n            \"29-May-2026 10:54:37[UTC] Started Fetching records for Opportunity\",\n            \"29-May-2026 10:54:37[UTC] Fetched 1 records from child: Opportunity\",\n            \"29-May-2026 10:54:38[UTC] Started Fetching records for Contact\",\n            \"29-May-2026 10:54:38[UTC] Fetched 1 records from child: Contact\",\n            \"29-May-2026 10:54:39[UTC] Started Fetching records for ContentDocument\",\n            \"29-May-2026 10:54:39[UTC] Fetched 1 records from child: ContentDocument\",\n            \"29-May-2026 10:54:40[UTC] Started Fetching records for Event\",\n            \"29-May-2026 10:54:40[UTC] Fetched 1 records from child: Event\",\n            \"29-May-2026 10:54:41[UTC] Started Fetching records for AccountContactRelation\",\n            \"29-May-2026 10:54:41[UTC] Fetched 1 records from child: AccountContactRelation\",\n            \"29-May-2026 10:54:42[UTC] Started Fetching records for Opportunity__hd\",\n            \"29-May-2026 10:54:42[UTC] Fetched 1 records from child: Opportunity__hd\",\n            \"29-May-2026 10:54:42[UTC] Account hierarchial process completed!\",\n            \"29-May-2026 10:54:43[UTC] Backup process completed\",\n            \"29-May-2026 10:54:43[UTC] Archival is enabled, separating the records with files...\",\n            \"29-May-2026 10:54:43[UTC] Archival is enabled, separating the records with files completed...\",\n            \"29-May-2026 10:54:47[UTC] Transferring retrieved metadata/data to backup environment\",\n            \"29-May-2026 10:54:47[UTC] Starting upload to S3 bucket\",\n            \"29-May-2026 10:54:47[UTC] Files uploaded: 10\",\n            \"29-May-2026 10:54:47[UTC] Files uploaded: 20\",\n            \"29-May-2026 10:54:47[UTC] Files uploaded: 30\",\n            \"29-May-2026 10:54:47[UTC] Files uploaded: 40\",\n            \"29-May-2026 10:54:47[UTC] Files uploaded: 50\",\n            \"29-May-2026 10:54:47[UTC] Files uploaded: 60\",\n            \"29-May-2026 10:54:47[UTC] Files uploaded: 70\",\n            \"29-May-2026 10:54:47[UTC] Files uploaded: 80\",\n            \"29-May-2026 10:54:47[UTC] Upload completed successfully - 89 files, 0.89 MB\",\n            \"29-May-2026 10:54:55[UTC] ------------>Archival initiated<------------\",\n            \"29-May-2026 10:54:55[UTC] Archive has been initiated at : 2026-05-29T10:54:55.628+0000\",\n            \"29-May-2026 10:54:55[UTC] Respect restricted delete and prevent child record deletion : Yes\",\n            \"29-May-2026 10:54:55[UTC] Disable workflows : No\",\n            \"29-May-2026 10:54:55[UTC] Disable triggers : No\",\n            \"29-May-2026 10:54:55[UTC] Disable validation rules : No\",\n            \"29-May-2026 10:54:55[UTC] Disable flows : No\",\n            \"29-May-2026 10:54:56[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:54:57[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:54:57[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:54:57[UTC] Created bulk load job with Id: 750dp00000OB2yMAAT for objectName: Account\",\n            \"29-May-2026 10:54:57[UTC] Deletion job of Account created...\",\n            \"29-May-2026 10:54:57[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:54:58[UTC] Total batches created: 1\",\n            \"29-May-2026 10:55:08[UTC] Batch 1 result: Records Processed 2 Records Failed 1\",\n            \"29-May-2026 10:55:13[UTC] Archive has been completed at : 2026-05-29T10:55:13.296+0000\",\n            \"29-May-2026 10:56:13[UTC] ------------>Archival Retry initiated<------------ Retry count : 1\",\n            \"29-May-2026 10:56:13[UTC] Archive has been initiated at : 2026-05-29T10:56:13.542+0000\",\n            \"29-May-2026 10:56:13[UTC] Loading workspace for retry\",\n            \"29-May-2026 10:56:13[UTC] Retrying archival for criteria policy: Account\",\n            \"29-May-2026 10:56:13[UTC] Respect restricted delete and prevent child record deletion : No\",\n            \"29-May-2026 10:56:13[UTC] Disable workflows : No\",\n            \"29-May-2026 10:56:13[UTC] Disable triggers : No\",\n            \"29-May-2026 10:56:13[UTC] Disable validation rules : No\",\n            \"29-May-2026 10:56:13[UTC] Disable flows : No\",\n            \"29-May-2026 10:56:17[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:56:18[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:56:18[UTC] Deletion job of CaseHistory2 created...\",\n            \"29-May-2026 10:56:18[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:56:18[UTC] Salesforce batch submission failed for object CaseHistory2. Failed records: 0. Error: Batch creation failed for object: CaseHistory2 | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 10:56:18[UTC] Deletion job of CaseHistory2 failed due to:  No delete access for object:CaseHistory2\",\n            \"29-May-2026 10:56:19[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:56:20[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:56:20[UTC] Deletion job of Opportunity__hd created...\",\n            \"29-May-2026 10:56:20[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:56:20[UTC] Salesforce batch submission failed for object Opportunity__hd. Failed records: 0. Error: Batch creation failed for object: Opportunity__hd | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 10:56:21[UTC] Deletion job of Opportunity__hd failed due to:  No delete access for object:Opportunity__hd\",\n            \"29-May-2026 10:56:21[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:56:22[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:56:22[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:56:22[UTC] Created bulk load job with Id: 750dp00000OB3KwAAL for objectName: Attachment\",\n            \"29-May-2026 10:56:22[UTC] Deletion job of Attachment created...\",\n            \"29-May-2026 10:56:22[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:56:23[UTC] Total batches created: 1\",\n            \"29-May-2026 10:56:23[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:56:24[UTC] Deletion 1 Task records\",\n            \"29-May-2026 10:56:24[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:56:25[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:56:26[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:56:26[UTC] Created bulk load job with Id: 750dp00000OB75BAAT for objectName: FeedItem\",\n            \"29-May-2026 10:56:26[UTC] Deletion job of FeedItem created...\",\n            \"29-May-2026 10:56:26[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:56:27[UTC] Total batches created: 1\",\n            \"29-May-2026 10:56:27[UTC] Batch 1 result: Records Processed 2 Records Failed 0\",\n            \"29-May-2026 10:56:27[UTC] Deletion 2 Task records\",\n            \"29-May-2026 10:56:27[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:56:28[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:56:29[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:56:29[UTC] Created bulk load job with Id: 750dp00000OB76nAAD for objectName: Note\",\n            \"29-May-2026 10:56:29[UTC] Deletion job of Note created...\",\n            \"29-May-2026 10:56:29[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:56:30[UTC] Total batches created: 1\",\n            \"29-May-2026 10:56:30[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:56:30[UTC] Deletion 1 Task records\",\n            \"29-May-2026 10:56:30[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:56:31[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:56:32[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:56:32[UTC] Created bulk load job with Id: 750dp00000OB34rAAD for objectName: Task\",\n            \"29-May-2026 10:56:32[UTC] Deletion job of Task created...\",\n            \"29-May-2026 10:56:32[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:56:33[UTC] Total batches created: 1\",\n            \"29-May-2026 10:56:43[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:56:44[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:56:45[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:56:45[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:56:45[UTC] Created bulk load job with Id: 750dp00000OB0TWAA1 for objectName: Event\",\n            \"29-May-2026 10:56:45[UTC] Deletion job of Event created...\",\n            \"29-May-2026 10:56:45[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:56:46[UTC] Total batches created: 1\",\n            \"29-May-2026 10:56:46[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:56:47[UTC] Deletion 1 Opportunity records\",\n            \"29-May-2026 10:56:47[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:56:48[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:56:49[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:56:49[UTC] Created bulk load job with Id: 750dp00000OB3JKAA1 for objectName: Opportunity\",\n            \"29-May-2026 10:56:49[UTC] Deletion job of Opportunity created...\",\n            \"29-May-2026 10:56:49[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:56:50[UTC] Total batches created: 1\",\n            \"29-May-2026 10:57:00[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:57:01[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:57:02[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:57:02[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:57:02[UTC] Created bulk load job with Id: 750dp00000OAxLzAAL for objectName: TaskRelation\",\n            \"29-May-2026 10:57:02[UTC] Deletion job of TaskRelation created...\",\n            \"29-May-2026 10:57:02[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:57:04[UTC] Total batches created: 1\",\n            \"29-May-2026 10:57:04[UTC] Batch 1 result: Records Processed 1 Records Failed 1\",\n            \"29-May-2026 10:57:04[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:57:05[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:57:06[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:57:06[UTC] Created bulk load job with Id: 750dp00000OB78PAAT for objectName: AccountContactRelation\",\n            \"29-May-2026 10:57:06[UTC] Deletion job of AccountContactRelation created...\",\n            \"29-May-2026 10:57:06[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:57:07[UTC] Total batches created: 1\",\n            \"29-May-2026 10:57:07[UTC] Batch 1 result: Records Processed 1 Records Failed 1\",\n            \"29-May-2026 10:57:08[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:57:09[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:57:09[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:57:09[UTC] Created bulk load job with Id: 750dp00000OAz9HAAT for objectName: Case\",\n            \"29-May-2026 10:57:09[UTC] Deletion job of Case created...\",\n            \"29-May-2026 10:57:09[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:57:10[UTC] Total batches created: 1\",\n            \"29-May-2026 10:57:10[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:57:11[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:57:12[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:57:13[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:57:13[UTC] Created bulk load job with Id: 750dp00000OB1J8AAL for objectName: Contact\",\n            \"29-May-2026 10:57:13[UTC] Deletion job of Contact created...\",\n            \"29-May-2026 10:57:13[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:57:14[UTC] Total batches created: 1\",\n            \"29-May-2026 10:57:14[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:57:15[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:57:16[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:57:16[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:57:16[UTC] Created bulk load job with Id: 750dp00000OB7A1AAL for objectName: Account\",\n            \"29-May-2026 10:57:16[UTC] Deletion job of Account created...\",\n            \"29-May-2026 10:57:16[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 10:57:17[UTC] Total batches created: 1\",\n            \"29-May-2026 10:57:27[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:57:28[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 10:57:29[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 10:57:30[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 10:57:30[UTC] Created bulk load job with Id: 750dp00000OB7BdAAL for objectName: ContentDocument\",\n            \"29-May-2026 10:57:30[UTC] Deletion job of ContentDocument created...\",\n            \"29-May-2026 10:57:30[UTC] Salesforce job batch size: 3000\",\n            \"29-May-2026 10:57:31[UTC] Total batches created: 1\",\n            \"29-May-2026 10:57:31[UTC] Batch 1 result: Records Processed 1 Records Failed 0\",\n            \"29-May-2026 10:57:33[UTC] Syncing previous data...\",\n            \"29-May-2026 10:57:33[UTC] Syncing previous data for criteria policy: Account\",\n            \"29-May-2026 10:57:33[UTC] Syncing previous data for Object: Account\",\n            \"29-May-2026 10:57:33[UTC] Syncing previous data completed\",\n            \"29-May-2026 10:57:33[UTC] Archive has been completed at : 2026-05-29T10:57:33.897+0000\",\n            \"29-May-2026 11:07:14[UTC] ------------>Archival Retry initiated<------------ Retry count : 2\",\n            \"29-May-2026 11:07:14[UTC] Archive has been initiated at : 2026-05-29T11:07:14.015+0000\",\n            \"29-May-2026 11:07:14[UTC] Loading workspace for retry\",\n            \"29-May-2026 11:07:14[UTC] Retrying archival for criteria policy: Account\",\n            \"29-May-2026 11:07:14[UTC] Respect restricted delete and prevent child record deletion : No\",\n            \"29-May-2026 11:07:14[UTC] Disable workflows : No\",\n            \"29-May-2026 11:07:14[UTC] Disable triggers : No\",\n            \"29-May-2026 11:07:14[UTC] Disable validation rules : No\",\n            \"29-May-2026 11:07:14[UTC] Disable flows : No\",\n            \"29-May-2026 11:07:17[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:18[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:07:18[UTC] Deletion job of CaseHistory2 created...\",\n            \"29-May-2026 11:07:18[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:07:18[UTC] Salesforce batch submission failed for object CaseHistory2. Failed records: 0. Error: Batch creation failed for object: CaseHistory2 | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:07:19[UTC] Deletion job of CaseHistory2 failed due to:  No delete access for object:CaseHistory2\",\n            \"29-May-2026 11:07:19[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:20[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:07:21[UTC] Deletion job of Opportunity__hd created...\",\n            \"29-May-2026 11:07:21[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:07:21[UTC] Salesforce batch submission failed for object Opportunity__hd. Failed records: 0. Error: Batch creation failed for object: Opportunity__hd | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:07:21[UTC] Deletion job of Opportunity__hd failed due to:  No delete access for object:Opportunity__hd\",\n            \"29-May-2026 11:07:22[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:22[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:23[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:24[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:25[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:25[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:26[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:27[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:28[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:07:29[UTC] Batch concurrencyMode: Parallel created...\",\n            \"29-May-2026 11:07:29[UTC] Created bulk load job with Id: 750dp00000OAzpDAAT for objectName: AccountContactRelation\",\n            \"29-May-2026 11:07:29[UTC] Deletion job of AccountContactRelation created...\",\n            \"29-May-2026 11:07:29[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:07:30[UTC] Total batches created: 1\",\n            \"29-May-2026 11:07:30[UTC] Batch 1 result: Records Processed 1 Records Failed 1\",\n            \"29-May-2026 11:07:31[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:31[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:32[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:34[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:07:37[UTC] Syncing previous data...\",\n            \"29-May-2026 11:07:37[UTC] Syncing previous data for criteria policy: Account\",\n            \"29-May-2026 11:07:37[UTC] Syncing previous data for Object: Account\",\n            \"29-May-2026 11:07:37[UTC] Syncing previous data completed\",\n            \"29-May-2026 11:07:37[UTC] Archive has been completed at : 2026-05-29T11:07:37.079+0000\",\n            \"29-May-2026 11:09:59[UTC] ------------>Archival Retry initiated<------------ Retry count : 3\",\n            \"29-May-2026 11:09:59[UTC] Archive has been initiated at : 2026-05-29T11:09:59.946+0000\",\n            \"29-May-2026 11:09:59[UTC] Loading workspace for retry\",\n            \"29-May-2026 11:10:00[UTC] Retrying archival for criteria policy: Account\",\n            \"29-May-2026 11:10:00[UTC] Respect restricted delete and prevent child record deletion : No\",\n            \"29-May-2026 11:10:00[UTC] Disable workflows : No\",\n            \"29-May-2026 11:10:00[UTC] Disable triggers : No\",\n            \"29-May-2026 11:10:00[UTC] Disable validation rules : No\",\n            \"29-May-2026 11:10:00[UTC] Disable flows : No\",\n            \"29-May-2026 11:10:04[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:05[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:10:05[UTC] Deletion job of CaseHistory2 created...\",\n            \"29-May-2026 11:10:05[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:10:05[UTC] Salesforce batch submission failed for object CaseHistory2. Failed records: 0. Error: Batch creation failed for object: CaseHistory2 | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:10:06[UTC] Deletion job of CaseHistory2 failed due to:  No delete access for object:CaseHistory2\",\n            \"29-May-2026 11:10:06[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:07[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:10:07[UTC] Deletion job of Opportunity__hd created...\",\n            \"29-May-2026 11:10:07[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:10:08[UTC] Salesforce batch submission failed for object Opportunity__hd. Failed records: 0. Error: Batch creation failed for object: Opportunity__hd | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:10:08[UTC] Deletion job of Opportunity__hd failed due to:  No delete access for object:Opportunity__hd\",\n            \"29-May-2026 11:10:08[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:09[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:10[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:11[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:12[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:13[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:13[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:14[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:15[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:16[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:17[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:18[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:10:21[UTC] Syncing previous data...\",\n            \"29-May-2026 11:10:21[UTC] Syncing previous data for criteria policy: Account\",\n            \"29-May-2026 11:10:21[UTC] Syncing previous data for Object: Account\",\n            \"29-May-2026 11:10:21[UTC] Syncing previous data completed\",\n            \"29-May-2026 11:10:21[UTC] Archive has been completed at : 2026-05-29T11:10:21.982+0000\",\n            \"29-May-2026 11:19:40[UTC] ------------>Archival Retry initiated<------------ Retry count : 4\",\n            \"29-May-2026 11:19:40[UTC] Archive has been initiated at : 2026-05-29T11:19:40.952+0000\",\n            \"29-May-2026 11:19:40[UTC] Loading workspace for retry\",\n            \"29-May-2026 11:19:41[UTC] Retrying archival for criteria policy: Account\",\n            \"29-May-2026 11:19:41[UTC] Respect restricted delete and prevent child record deletion : No\",\n            \"29-May-2026 11:19:41[UTC] Disable workflows : No\",\n            \"29-May-2026 11:19:41[UTC] Disable triggers : No\",\n            \"29-May-2026 11:19:41[UTC] Disable validation rules : No\",\n            \"29-May-2026 11:19:41[UTC] Disable flows : No\",\n            \"29-May-2026 11:19:44[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:45[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:19:45[UTC] Deletion job of CaseHistory2 created...\",\n            \"29-May-2026 11:19:45[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:19:45[UTC] Salesforce batch submission failed for object CaseHistory2. Failed records: 0. Error: Batch creation failed for object: CaseHistory2 | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:19:46[UTC] Deletion job of CaseHistory2 failed due to:  No delete access for object:CaseHistory2\",\n            \"29-May-2026 11:19:46[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:47[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:19:47[UTC] Deletion job of Opportunity__hd created...\",\n            \"29-May-2026 11:19:47[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:19:47[UTC] Salesforce batch submission failed for object Opportunity__hd. Failed records: 0. Error: Batch creation failed for object: Opportunity__hd | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:19:48[UTC] Deletion job of Opportunity__hd failed due to:  No delete access for object:Opportunity__hd\",\n            \"29-May-2026 11:19:48[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:49[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:49[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:50[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:51[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:52[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:53[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:54[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:54[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:55[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:56[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:19:57[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:20:00[UTC] Syncing previous data...\",\n            \"29-May-2026 11:20:00[UTC] Syncing previous data for criteria policy: Account\",\n            \"29-May-2026 11:20:00[UTC] Syncing previous data for Object: Account\",\n            \"29-May-2026 11:20:00[UTC] Syncing previous data completed\",\n            \"29-May-2026 11:20:00[UTC] Archive has been completed at : 2026-05-29T11:20:00.838+0000\",\n            \"29-May-2026 11:25:37[UTC] ------------>Archival Retry initiated<------------ Retry count : 5\",\n            \"29-May-2026 11:25:37[UTC] Archive has been initiated at : 2026-05-29T11:25:37.849+0000\",\n            \"29-May-2026 11:25:37[UTC] Loading workspace for retry\",\n            \"29-May-2026 11:25:38[UTC] Retrying archival for criteria policy: Account\",\n            \"29-May-2026 11:25:38[UTC] Respect restricted delete and prevent child record deletion : No\",\n            \"29-May-2026 11:25:38[UTC] Disable workflows : No\",\n            \"29-May-2026 11:25:38[UTC] Disable triggers : No\",\n            \"29-May-2026 11:25:38[UTC] Disable validation rules : No\",\n            \"29-May-2026 11:25:38[UTC] Disable flows : No\",\n            \"29-May-2026 11:25:40[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:41[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:25:42[UTC] Deletion job of CaseHistory2 created...\",\n            \"29-May-2026 11:25:42[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:25:42[UTC] Salesforce batch submission failed for object CaseHistory2. Failed records: 0. Error: Batch creation failed for object: CaseHistory2 | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:25:42[UTC] Deletion job of CaseHistory2 failed due to:  No delete access for object:CaseHistory2\",\n            \"29-May-2026 11:25:43[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:44[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:25:44[UTC] Deletion job of Opportunity__hd created...\",\n            \"29-May-2026 11:25:44[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:25:44[UTC] Salesforce batch submission failed for object Opportunity__hd. Failed records: 0. Error: Batch creation failed for object: Opportunity__hd | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:25:44[UTC] Deletion job of Opportunity__hd failed due to:  No delete access for object:Opportunity__hd\",\n            \"29-May-2026 11:25:45[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:45[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:46[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:47[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:48[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:48[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:49[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:50[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:51[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:52[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:52[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:54[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:25:56[UTC] Syncing previous data...\",\n            \"29-May-2026 11:25:56[UTC] Syncing previous data for criteria policy: Account\",\n            \"29-May-2026 11:25:56[UTC] Syncing previous data for Object: Account\",\n            \"29-May-2026 11:25:56[UTC] Syncing previous data completed\",\n            \"29-May-2026 11:25:56[UTC] Archive has been completed at : 2026-05-29T11:25:56.832+0000\",\n            \"29-May-2026 11:43:21[UTC] ------------>Archival Retry initiated<------------ Retry count : 6\",\n            \"29-May-2026 11:43:21[UTC] Archive has been initiated at : 2026-05-29T11:43:21.112+0000\",\n            \"29-May-2026 11:43:21[UTC] Loading workspace for retry\",\n            \"29-May-2026 11:43:21[UTC] Retrying archival for criteria policy: Account\",\n            \"29-May-2026 11:43:21[UTC] Respect restricted delete and prevent child record deletion : No\",\n            \"29-May-2026 11:43:21[UTC] Disable workflows : No\",\n            \"29-May-2026 11:43:21[UTC] Disable triggers : No\",\n            \"29-May-2026 11:43:21[UTC] Disable validation rules : No\",\n            \"29-May-2026 11:43:21[UTC] Disable flows : No\",\n            \"29-May-2026 11:43:24[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:25[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:43:26[UTC] Deletion job of CaseHistory2 created...\",\n            \"29-May-2026 11:43:26[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:43:26[UTC] Salesforce batch submission failed for object CaseHistory2. Failed records: 0. Error: Batch creation failed for object: CaseHistory2 | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:43:26[UTC] Deletion job of CaseHistory2 failed due to:  No delete access for object:CaseHistory2\",\n            \"29-May-2026 11:43:27[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:28[UTC] Checking salesforce automation controls\",\n            \"29-May-2026 11:43:28[UTC] Deletion job of Opportunity__hd created...\",\n            \"29-May-2026 11:43:28[UTC] SalesForce job batch Size 3000\",\n            \"29-May-2026 11:43:28[UTC] Salesforce batch submission failed for object Opportunity__hd. Failed records: 0. Error: Batch creation failed for object: Opportunity__hd | Error: InvalidJob : Invalid job id: null\",\n            \"29-May-2026 11:43:29[UTC] Deletion job of Opportunity__hd failed due to:  No delete access for object:Opportunity__hd\",\n            \"29-May-2026 11:43:29[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:30[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:30[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:31[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:32[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:33[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:33[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:34[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:35[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:36[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:37[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:38[UTC] Bulk V2 enabled: false\",\n            \"29-May-2026 11:43:40[UTC] Syncing previous data...\",\n            \"29-May-2026 11:43:40[UTC] Syncing previous data for criteria policy: Account\",\n            \"29-May-2026 11:43:41[UTC] Syncing previous data for Object: Account\",\n            \"29-May-2026 11:43:41[UTC] Syncing previous data completed\",\n            \"29-May-2026 11:43:41[UTC] Archive has been completed at : 2026-05-29T11:43:41.027+0000\",\n            \"01-Jun-2026 13:12:21[UTC] ------------>Archival Retry initiated<------------ Retry count : 7\",\n            \"01-Jun-2026 13:12:21[UTC] Archive has been initiated at : 2026-06-01T13:12:21.903+0000\",\n            \"01-Jun-2026 13:12:21[UTC] Loading workspace for retry\",\n            \"01-Jun-2026 13:12:22[UTC] Retrying archival for criteria policy: Account\",\n            \"01-Jun-2026 13:12:22[UTC] Respect restricted delete and prevent child record deletion : No\",\n            \"01-Jun-2026 13:12:22[UTC] Disable workflows : No\",\n            \"01-Jun-2026 13:12:22[UTC] Disable triggers : No\",\n            \"01-Jun-2026 13:12:22[UTC] Disable validation rules : No\",\n            \"01-Jun-2026 13:12:22[UTC] Disable flows : No\",\n            \"01-Jun-2026 13:12:28[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:29[UTC] Checking salesforce automation controls\",\n            \"01-Jun-2026 13:12:29[UTC] Deletion job of CaseHistory2 created...\",\n            \"01-Jun-2026 13:12:29[UTC] SalesForce job batch Size 3000\",\n            \"01-Jun-2026 13:12:29[UTC] Salesforce batch submission failed for object CaseHistory2. Failed records: 0. Error: Batch creation failed for object: CaseHistory2 | Error: InvalidJob : Invalid job id: null\",\n            \"01-Jun-2026 13:12:30[UTC] Deletion job of CaseHistory2 failed due to:  No delete access for object:CaseHistory2\",\n            \"01-Jun-2026 13:12:30[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:32[UTC] Checking salesforce automation controls\",\n            \"01-Jun-2026 13:12:32[UTC] Deletion job of Opportunity__hd created...\",\n            \"01-Jun-2026 13:12:32[UTC] SalesForce job batch Size 3000\",\n            \"01-Jun-2026 13:12:32[UTC] Salesforce batch submission failed for object Opportunity__hd. Failed records: 0. Error: Batch creation failed for object: Opportunity__hd | Error: InvalidJob : Invalid job id: null\",\n            \"01-Jun-2026 13:12:32[UTC] Deletion job of Opportunity__hd failed due to:  No delete access for object:Opportunity__hd\",\n            \"01-Jun-2026 13:12:32[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:33[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:34[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:35[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:36[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:37[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:38[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:39[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:40[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:41[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:41[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:42[UTC] Bulk V2 enabled: false\",\n            \"01-Jun-2026 13:12:46[UTC] Syncing previous data...\",\n            \"01-Jun-2026 13:12:46[UTC] Syncing previous data for criteria policy: Account\",\n            \"01-Jun-2026 13:12:46[UTC] Syncing previous data for Object: Account\",\n            \"01-Jun-2026 13:12:46[UTC] Syncing previous data completed\",\n            \"01-Jun-2026 13:12:46[UTC] Archive has been completed at : 2026-06-01T13:12:46.506+0000\"\n        ]\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:48:35\"\n}"}],"_postman_id":"20f558d7-24fc-436f-bc8e-07a5e659a96e"},{"name":"Download Backup Logs","id":"464bc26a-ad1e-42dc-94e0-c344f009c376","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/backups//logs/download","description":"<p>Downloads the backup job log file (binary ZIP of <code>.txt</code>).</p>\n<p><strong>GET</strong> <code>/backups/&lt;backupId&gt;/logs/download</code></p>\n<p><strong>Response:</strong> binary <code>.zip</code> (not JSON). Save the response to a file.</p>\n<p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","backups","","logs","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"b1832618-e3db-4a14-8fcc-3f8501c5f94b","name":"logs_donwl","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/backups//logs/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:48:43 GMT"},{"key":"content-type","value":"application/zip"},{"key":"content-length","value":"6645"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"content-disposition","value":"attachment; filename=\"29-May-2026 10-52-21.zip\""},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:48:43 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:48:43 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:48:43 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:48:43 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"PK\u0003\u0004\u0014\u0000\b\b\b\u0000\u0015^�\\\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0000\u000029-May-2026 10-52-21.txt�]�o�8����\n��k��C��‎\u001f��ؓl�$8\f\u0006\u000bYM�5VK}�ډ��㏤DQ\u000f��R7�\u001b,\u00163n}UE�X��,R�����v>\u001e�g�h���W��\u001f�\u001f.�t�y��a�l��yD(r�(�\u0002/C��`�oc)�!\t��Q�6λ����\u001d�쐢��P�)`����K2�!ء�S�|:>\u001f�\u0014\u0012����a��\r\n\u0011��I�\u001f'�t��\u001e+P�oQ�EY�;��\u0005(�\u001eC���&v���k��� zf�9����\u0010e���;��\u000bQ�\u0014'>RK�\u001d�[ْ��L��\u0010\f\u001fs\u001cѾ�\u0012\u0014e+\u0003\u0001�^�\u0015X'ؐv�nt�ǿ��9�\u0000'H�\f���~H���r�~�v\u0015��\u000f;���\u0016\u000b��8[\u0014�S�->`����鍪��������\u0006%(��цtJ\u0016�ߟ�0�.���a�\u001b\u001dGUc�0�O~\u000b���9a�\u000b��s�;\u0011}�v�\u0010�9�\u0013���\u001e\u0013W\u0017��;��7\u0011\u0006/ȹH\u0010q�K�N\u001cn�\u0000�z�3rސ�8�7w7\u000f���\u001fǋ6D\t\u0016� \u0007�\u0001g\u0017��+��\u0005a\u0018`U�=\t\u001a���0)���Ia�\u0019\u0011\u00195{\b�*�T��\u0011�^%�||s�=�q\u0017S=�^L5�#�����W�h���z���\u0017\u0012�\u001b�j��^\u0018��\u0007am�)p�\u0000%^�\u0011X�>�}��N�\u000f8�t�E���tA\u0014a'��\u0003+�\u000e����:Mc�\u0006����2�\n.p�=��W��g��(�\u0016'/�\bm>ї��;�%��\\����?\u0010�U��I�y�җ3�&z�\u0003\u001f{�\u0017�\u000e�\u000b��3g�e���ѧ>ў[�\u0004�\u000fl[���9w�a�3~�W��3\u000eҹ�O(l[v\u0011GY��Y�%�\u001e�K\u0013�\u00157�C�!RI{n2�;s>�y\u0013��|T\u0003��.�]n�=��#J�8�pS��_�D��i�����<<V��9�C�G��\u0010bw\r����\u001b���!ۮ7\u001d�,�S�Z�$�J�Ha\u000f\\�� �[��y}��(nI���\u001f���\u0007T���)��\u0002�Q�om�Ȼ\u001b�x\u0019�\u0007b�m\u0010��|B�!���{줯^H�\u0015ݜ7�<�t�6\u0018��?��\n�UC\t\u0001c��3T�����7�?~�c\u0004O�\t5���hm��Ы��Ɲ�|\u000f�h�\u001b�\u001b�\u0010p���?/�\u0013����\u001eQ����֤\u0007��\u0003|D4@�F�\u001fv;/y�i.%���\u00064�I�������?<�\u0002��g�%�Cb\u001a}�?�\u001c`5e\u001fh��\u000f���$$�ST�~���s���|��駗�s�\u0003�W�6�z\u0012k���$;`��\u0003\u0000\u000e�\u00007u\u0017�9����ê���C��p[��5EE\u0017ߣ�\u0015��\u0018G���\u0006k#o\u0014co���\fi�(|���\u0003�-�f�G\u0003�d\"��+j��fIGg]��}�z3�m|L�8���\u0007��d0��S�?X\u0016\u000e\u001e8��\u0006\u001bQ�i� ���<���9���tӲ�\"\u000eC�1�;忒���M��4�]��\u001f\u0005T��Ͷ�qq�Ť�\u001d��N��b\r׈�\r_�\u0018�jz��E(a��C�^��mq۟�\u0005�@d�^��u�e7�?sr�\u0007�����t�6F��\f�gcJ\u0002V�\u000e\u0011pd��5XF9F�K\u0015<�Li\u0011)!�󎐸�xƢ�F��*�\u0012a���s\f��\u001fi�aa�Xg1��\u0000.N�L$�_�\u001a>a�\u0010���&�>cֈ��\t�`m*|�Ν��Z�k&)$�D\u000e\u0014�\n2t\f�K�D�ia4!�\u0010���Tk/�E���Y��1\u0010�\u0019����\f��\u001b\b��\u0014\u00062�3��\u0000J>N��Fm\u0011!�:d���\u0004,\u000bǮ�Y�V��\"�q�r�S�E\u0007,��^�O b:,Gh#냇�\"\u0005\u00057c�eHm�\u0014bH~x���7�X\"\u0002�\u0010;\rV>L5@��d�6[��\"f�\b�� \u0017�X��%�(��2�cZ4A��D��\u0004\u0015�G�r\u0000i��l>Ւ/�u\nq�\u0005��8��1-�DR\n��L�O\u0012A��i�HH�x�jM�~�D��\u0002�@��kY\u0016��\u0000(\f}\u001a�<�ɀ3\u001e�\u001a���\u000e#ϣ�u\u001c1�h\u0002\u000b\u0015�\u0014\u001da&g\u000e7I!��\u001c����)�ڡB��\u0012�\b-�2\u0016QY�<M<Ԛ^��\u0000/|\u0007f\"�/@����\u0005��\u000b��[���\u0015ﾴK\u0004/Ȏ�B4hvI\u0002��kǮ�gVN��\t��*y_��+\u0012<�4���\u000eo�E˴�Qh�BR��}� bb}a�\b;1\f�j�:z���-����)\t�&�\u0004\u0014\u001c��u\u001c{7��S�|����6R�vu`���\"��7��\u0004:�;֯)\n�3\u0010���2��X���\u0012F�S,5�t��8��������[9(�[��\u0015�Z�VՅx\u001b_�\u0019|���?��ճ�\u001066��E\u001c�\n\u001a\u0001VS/�*�Pl��j���}�B���bVwM\u001c�,�)���x��p��uB���z\u0005Mco�Ry!�\u0000��]�w���,\f�p��\u001ci�\u0016��V�e��r�vK\u000e��h���;��ʺ�:����yc\u000b\nJ#�Ec3l\u001983@��$WJ~�PiBŔ\u001b:\\��\u0010\u0017`��)�\u0005�\u0019e4U�AV�\u001c�\r$A^\u00149F3��b\u0015N=�h�'!5�҈�b�J�#ina˸\u0006�G�^�\u0015���v\bT�XΔ���U�(�:��P5�)\n\u0010�ņ�ńbJ!*����\u0010)M����k�)_��wRv�t���}M>е6OR�'�OͶU^�i%��f�]���%�BV��v�h<�HI\u0000\r)���3%\t8�B��fi�\u000f��s\"ͩ�\u0000,���7�>�\u0019-�S�\\�m%\tV[\u0010��9��\u001d�\f��\\m\u001fD�\u001d�*�\bc��n���pl�F�k\u0015{\u00142�;h\u0006\u0002\f������4;\u0012cL)�&�\r�1[riO��\u001fh���r��R)f��^��;��o\u001cŦn�\u001b�|MW1�X-�ۻ�'q���|��\u00183�d$O��;��r1�A��xz����#ej<=\u0013h����\u0017Y�MBW���N��r�6���Kdv�e�8D�uNa�W\t������?l�wF˛�)`~�촩\\��:�K����3 �\u0003�i��*y�V��IS�V�V���ۧ�X��I\u000e<\u0015Ǔ~�<�\u0005$�8m��jx\u0012F��\u0003\u0016�Qw\u0014F��zJ\u0018+���靴z^�\u0004\u001c��5�3��;L��6��j��9'3��O���,p2oq��D\u0001�'�]�G�Dp����\u001fo4,�)��\u0012K�l\u0013���v�\u0001�4�܎�j�QP}\u0002�5�[\u001e��ׄ�;�[:wLӺeu.����\u0014\u000b#���\u0012���\u001fWQ���ܬr[�R��\u001eo��T<5lS�1*���\u0000��\u001c�i����\u0006��m����\u001d^��{&�MڅU6G���~u��|�M�(�����h�}L\b�J�&���\u00057V\u000b\r��+�Ft\u001c���P�ql�\u0002?�{&�\u0010=nK�+\u0015�~�{\u0001t9�_�c��aw�͝��S2�'�Z�\u0017\u001e�A�j\u0007��xSv�\r��5�\u001c�\u0010�Q�\u000f�\u0003Qt\u001fN�7�W|�[r�k4U�筩xx��r����n��Z\u001c��7���p@�����\"].\u0012^���\bGs�M�\u000bOE(:�7b�hQM��:�b\u001e�c-�kF�ѹd���)\u000e����^�,p��O\u0011�y���Q:]s�\\��\u0007L�vx�㗅x[�O�r��\u001b�*���3;J.�� ��//nl�8;�ӈ�'q�>�Wb��\u0001E�b\u0004\u0010cJ��)��>�ʂnK@�4��i���v�z,�͐��řb{^�\u0011�+\u000bml^59�t�\u0006���\u0019\u001f\u0015ҟ�6\u0017�\u0000\u0014\u0011(ߌ��\u0006;�,Zy(�F�R�[�\"\u0016\td\u001eg���>oTY�h��\u0012��Φ*k �,J���o�<Ω��� a\u0016{����\u0019�����{J�e)��MJ\u0019q�:{�I\\��\u000f\u001fC��\u0001\u001d��.s�[\u001e:\u0016�2s\u001b�O\u0016�'�C\"��-\u000f\t��\rBOs�6T<A\u00136��\bC�BU\b�\"�g��\u000b���� \u001f���\u000e��j� ��\u0001����D��8�.�\u0000�Y7��Zqi��\rW(;F�\r�W\u000b���!��'X��@�ڲ�l\u0013��\u001e�R=�m.|�T�+k\u000f��O��\u00175oוR\u001f�\u000f��\u000f���\u0011{aY�\u0005\u001e7@\u0016�jg\u0007\u0014�+���U���)��|���էL��\u001f�!��o�X�#sB>�˾� \n�#Wi\rO~-\fs\u0015�5ND`��_T\u0016�{ˈY\t��C@>�Í�\t,=��\u0005�\"�\u0003\nU����@���8\u0016x]�[�W\u0012�o{+\u001c���Ga��mtE�75(��$�\n�v�Q������ֹ1�}Tny�J���\u00018\u001e��EK\t�Mq!z�\u000f\u001fB^[�V�\\��W��$�&�&�S�Z\u0014����\u0018`A_��p�\b۾˩�\u001e�+C\n��+��XЕN\u001c\u000e���-OZ��\f-�ڻ�~��;՞���բ��\u0015?}%ߧB)�l�\u0007���\f��c6.�l|�J�&�V��\b��X�[\u0003��\u0002��z��֭���˿�e�|H�(%�x��8WE�XP.\u0006�C�-�� �ŗ�ra�/���>�=�~�'���\u0011\\[�a����|%��ez���=\u001d���9g�:s���й{��@5ؑ�jQQ��^��,�{)��9^=:\u0014\u0002&�\u001fb��ts\u0019�a�\u0012b\u0014�UGx��!\r��\b19�,���c�\u0006����\u0007s���\"0��^�հ\\�Ѱ0\u00173�F,ct/Q��/�Q��z�Z��i��h\u0012��0\r�b�31\u000e�\u0012�I�����ŀ�@N�W��\"9Xm�\u0014\r ��\u001dJW�!-\u0005�2\u0010g\u0012�u���O\u001a���atZ���rl��H@�\u0003�-�\u0002�&z^�\u0015�b���I\u0011&�^ƾ�Zrk��G#��?w��͕H�+\u0003�\u000ee��˼� �g\u001c8k��1\u000f�\fvM\r�1��У!��1��\t�a\u0017��\u0014��\f��\u001c��B��n�Z,�\f��]8CME�(wU��n]����H$�ڷ㑏]\u0013��pz>^>0�`6^��|�X!�쵑/G'��:�\u0005�}���k�*^|i��N\u0016'V��T!�2H�`t�\u001a�S\u0018K\u001d�\u0007�ۀ,�|���C�M�`r ��\u0010�6� +�\u000e��e̿���B��*d.��!c;-?��x�,.j�|R\n\u0019�����\u0003<y�?$�$�\u001b�!Y��\u0010�=����O_��ViF�\u0010\u000e*�~��ŏy��!�e:,�������n�~��P~ �wo�TK\u0007L�%s\u0005\"��\u0019y#\u0003�W�i�\u0010�#m�}�\u0003��#�Y�x�oq��I\u0018�u�`؂L����GɄIN��c?);GC�4�۵���F(n4�\fF\u001e)D��\u0000\u0007��L<\u0018g�M�2T|�sΛ$`\u0014?�.ꂙ�fu\u0000!���\u001d�l�ŞE��\f�t��I܈̓m��Q�l\u0002�X+\t�O�\f%����0���\u001eX\u0015�%~\t\u0006>\u0017m\u0018��\u0000u�j?o\u0016��8�QsP�����ن/.�\u0019\u0015j�y���%\u0000CC\u0003�ۜ���\u0010n8\u001d�<��\f\u001b�q_0�\u0015��\u001dZC�b�X.\u0014��\u0000�_����}��P�\u0007mP��C���m'\u0016\u0016l\u000e��╃=��z�S��)\u0017uf�f����\r*{?a\u0012�Ml�A*]�\t\u0001�J\rh�*\rۺyK���\u001c��O�z\u0013�3�\u001c�k5w�qg�\u0019wfG\u00153����o��m�\u001d��\b��\u0016A��6Ff½{\u0002�H\u001c��H�&G\u0012Z�6�>�o�.F�\u0002a�K�ξ4�×f`_�O߉��t\u001b�+izRY\u001bed\"܏�p?���Q�k�,(\u001b>��\u0011��;S\u001e���͏�p?�E��eˏ��'\\AӇ�I\u0007#����.�\u0004�\u000f��\u0014�&M���C�\u0001��ö���g�ǜ6����D�?�\r{���?�?�L��\u000f|\u001es���\\��v����N�P�a�\rÇ�����\r�\u0016���\u000e�)\r#���P�A\u0003��Y��М�F��>yXq�Ӓ�yZr���\\��4y��ȑT{�\\�\"�13\u0014�TS�$5/Oj��T��\u0018��o���!-}�K��\u001b\u00153�}c����(�R\u0016�pE�����42\u0015�\u001ds~<\u000b�\u001d��w(�\u0019{G�)h^\u001e\t��\u001d\u0016���b\u000bB���UJv$�u�F��=\u0006�4qH_\u001e��z̲��t�k*f�Ǔ\u001f��<FX��\u0015��U�L\u0003{�\b>����]F��e�yv\u0019Mz�\u0006&\u0004\u0010?F�\u0017��EV:�u�\u001c�(�72\u0010�\u0013�9ed?�\b-�B}b��'��SF\u0016s�z$\\��l*r\u001d\u0016��\u001c\f�\t��a��f�\u0013c�1�<k�\u0017{,}�\t��Ļ�,N�j\u001b���J�� �\f��=q\u001fI���dNR~���I\u0018�'')���\"��r��\u001eć�!\u0005p�� �\u001d\u0013a\u001f��5[\u0019��E�\u0004V~\u0010�`��\u000b�(F���\u000f��T~�\u0015�!�\u001f\u0005p0\u001cMu6\u001bW~�P]*?\u001a������6��\u0010\u0002\u0014�\u001f��\r*?�8�Q���\u001c�e��&���&\u00012{���j�G�\u0012E��s�GM���t���%\u0018�*(]�<�\u000bu�\u001a�׮�\u0000�fo�\u001f��1�m��\t\u0014\u0000X'�\u0001�$�\u0012\u0000�\u001e�\u0001Ш�i�:��q�&\u0004�r���]뫩��W�\u0005\u000e&�\r�\u001a��Z_.\u000e��c\t���\tt �����\n=\u0004J&�I��\fIRQCB��\u00028\u0018Ηb��,/��TL\u0014I\u0005\u0001\u000e���\u0004�&\u0016�T�����uK*j��M**�͒\n\u0001@�T\b�7J*\u00048�Q��M\u0000]��j\u0012,���\u0004Xpo\u0002ݤ��D��y������O����I�O**B�b���IE�='L**Z��\u0006��b�\bPܗ\u0003@l�\u0000@l�\u0000@y�\u0015\u0000\u001a�!�C9\u0000:�a�S\u0004\u0000u�2�7�:\b�K�i8�V��SV�0NI���Bt�\u000f��,og��)]�p\u0018����r��\u0019�)���\u000f\u001d9eUPϜ��6�m��S��7�m��(XtZv���I��K�\n�6�\u0017�˲��4���3����r�.��sJ.\u0004�*s\u001bW�Y9�,h>%��Z��\u0006�)-\u0000S\u0018\t]�\u001f�2\u0007�H��B�9\u0000\u001a��\u0000\u0018\t]����\u0001 \u0012:�k%��R\u0007\u0001q\t#a\u001aN��!�\u0015$�SR�`1\u0011�A���˟�9�T!\u001c�))p�p�k�\u0015�\u0000NIP�>8eMP���\"ڌS\n\u0000JN)xވS\npJ�\\P�%�.g�r\t�#\n���\"\u0001F\u0014��_�S�vb_���\u0003M{\u0004�v����x0��\b���k�*?)�\u0004�f���h\u0005Q\u0013+\u0000��\u0010\u0000��L���\n\u0000��\u0018\u0000��\u0004\u0000��\u0004\u0000��V\u0000\u0010�%\u0000V0n�)5\u0010(��\u000b�qJ�\f9��H �$@�)�k~�\\���)g\n�0NI���Hk3�SVP�8eMP���\"ڌS\n\u0000JN)xވS\npj�@#�\u0000��S\u0012\t&Klr�P�\u0000#\nM��)M;�/NI�fb\u0002�V�W�`�)+B���iG\u0013Aߜ����m ��X\u0002@�\u0000@l�\u0000@��\u0015\u0000\u001a�' �N\u0000 �N\u0000�\u00001\u00011o\fp��:\b�K�]���2�����qJ\n\u001c\f��!�����!*�NV�q�r�\u0010n�)��F\u000f\f8X\u000e':�U�R�\u001a[qJ����R.Z�)��:��?/�z��(��\u0016\u0000�Gn�\u0012L9�\\��(h��\u0010�l�Dz\f�\u0017N)�g�'\u0013�\u0015\u000er\t\u0000N)\u0017\u0002v��Ւ���)�{�\u000b��k5w\u001b5�\u0012\u0000��J\u0000P�+\u0001@M�\u0004\u00005�\u0012\u0000�Ax���m�f;J\u0000P3�>\u0000P�pu�@\b�K�59%T\u0006�r�\u0019���3w6�\u000e��.�\u0007PK\u0007\b/�(NS\u0019\u0000\u0000��\u0000\u0000PK\u0001\u0002\u0014\u0000\u0014\u0000\b\b\b\u0000\u0015^�\\/�(NS\u0019\u0000\u0000��\u0000\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000029-May-2026 10-52-21.txtPK\u0005\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u0000F\u0000\u0000\u0000�\u0019\u0000\u0000\u0000\u0000"}],"_postman_id":"464bc26a-ad1e-42dc-94e0-c344f009c376"},{"name":"Get Backup Criteria (Object)","id":"12e4ff5f-8d0b-4274-8b9a-c501ff626a04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/backups//criteria/Account","description":"<p>Returns the resolved backup criteria/object tree for a parent object (here <code>Account</code>).</p>\n<p><strong>GET</strong> <code>/backups/&lt;backupId&gt;/criteria/Account</code></p>\n<p><strong>Response — <code>data</code></strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Backup job id</td>\n</tr>\n<tr>\n<td><code>criteriaId</code></td>\n<td>uuid</td>\n<td>Criteria run id</td>\n</tr>\n<tr>\n<td><code>idCfgCriteria</code></td>\n<td>string</td>\n<td>Config criteria reference</td>\n</tr>\n<tr>\n<td><code>parentObject</code></td>\n<td>string</td>\n<td>Root object (e.g. <code>Account</code>)</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>enum</td>\n<td>Criteria resolution status</td>\n</tr>\n<tr>\n<td><code>objects[]</code></td>\n<td>array</td>\n<td>Resolved objects: <code>name</code>, <code>isChild</code>, <code>querySupported</code>, <code>query</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code>. Replace <code>Account</code> in the path with the desired object.</p>\n","urlObject":{"path":["ARVault","api","v1","backups","","criteria","Account"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"ed18feff-b747-42b8-8631-8e0a15ca6408","name":"Inside_criteria_bkup","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/backups//criteria/Account"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:48:50 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:48:50 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:48:50 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:48:50 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:48:50 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Backup criteria fetched successfully.\",\n    \"data\": {\n        \"id\": \"c3e27fa1-288a-f8cd-218f-9b893dbac1d4\",\n        \"criteriaId\": \"c334da57-041c-852e-c2eb-de59493813c3\",\n        \"idCfgCriteria\": \"d5eb8ffed0e4befe18f3ec2a2d9f3e2a\",\n        \"parentObject\": \"Account\",\n        \"status\": \"FAILED\",\n        \"liveStatus\": \"Reading backup configuration...\",\n        \"objects\": [\n            {\n                \"name\": \"AIInsightValue\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AIInsightValue where SobjectLookupValueId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 9,\n                \"durationMs\": 275,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Account\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,MasterRecordId,Name,Type,ParentId,BillingStreet,BillingCity,BillingState,BillingPostalCode,BillingCountry,BillingLatitude,BillingLongitude,BillingGeocodeAccuracy,BillingAddress,ShippingStreet,ShippingCity,ShippingState,ShippingPostalCode,ShippingCountry,ShippingLatitude,ShippingLongitude,ShippingGeocodeAccuracy,ShippingAddress,Phone,Website,PhotoUrl,Industry,NumberOfEmployees,Description,OwnerId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,LastViewedDate,LastReferencedDate,Jigsaw,JigsawCompanyId,AccountSource,SicDesc,IsPriorityRecord,BusinessUnit__c from Account where id in('001dp00000oKXvvAAG','001dp00000oKVMJAA4') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 29216,\n                \"records\": {\n                    \"total\": 2,\n                    \"success\": 2,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"AccountContactRelation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,AccountId,ContactId,Roles,IsDirect,IsActive,StartDate,EndDate,IsDeleted,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,Relationship_Strength__c from AccountContactRelation where id in('07kdp00000V2a0mAAB') order by Id desc\",\n                \"apiCalls\": 19,\n                \"durationMs\": 6813,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"AccountShare\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AccountShare where AccountId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 88,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"AccountTeamMember\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AccountTeamMember where AccountId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 73,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"AgentWork\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AgentWork where WorkItemId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 7,\n                \"durationMs\": 181,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Announcement\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Announcement where FeedItemId in('0D5dp00001LtSbnCAF','0D5dp00001LtSboCAF') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 72,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Asset\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Asset where AccountId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 49,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"AssociatedLocation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AssociatedLocation where ParentRecordId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 69,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Attachment\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,ParentId,Name,IsPrivate,ContentType,BodyLength,OwnerId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,Description from Attachment where id in('00Pdp00000Idx7WEAR') order by Id desc\",\n                \"apiCalls\": 18,\n                \"durationMs\": 4128,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"CampaignMember\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CampaignMember where ContactId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 63,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Case\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,MasterRecordId,CaseNumber,ContactId,AccountId,ParentId,SuppliedName,SuppliedEmail,SuppliedPhone,SuppliedCompany,Type,Status,Reason,Origin,Subject,Priority,Description,IsClosed,ClosedDate,IsEscalated,OwnerId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,ContactPhone,ContactMobile,ContactEmail,ContactFax,Comments,LastViewedDate,LastReferencedDate from Case where id in('500dp00000UfytOAAR') order by Id desc\",\n                \"apiCalls\": 16,\n                \"durationMs\": 3500,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"CaseHistory2\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,CaseId,OwnerId,Status,PreviousUpdate,LastModifiedDate,LastModifiedById,IsDeleted,SystemModstamp from CaseHistory2 where id in('02Ddp00000YTj1OEAT') order by Id desc\",\n                \"apiCalls\": 13,\n                \"durationMs\": 13728,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"CaseShare\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CaseShare where CaseId in('500dp00000UfytOAAR') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 70,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Contact\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,MasterRecordId,AccountId,LastName,FirstName,Salutation,MiddleName,Suffix,Name,MailingStreet,MailingCity,MailingState,MailingPostalCode,MailingCountry,MailingLatitude,MailingLongitude,MailingGeocodeAccuracy,MailingAddress,Phone,Fax,MobilePhone,Email,Title,Department,OwnerId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,LastCURequestDate,LastCUUpdateDate,LastViewedDate,LastReferencedDate,EmailBouncedReason,EmailBouncedDate,IsEmailBounced,PhotoUrl,Jigsaw,JigsawContactId,IsPriorityRecord,ContactSource from Contact where id in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 16,\n                \"durationMs\": 3412,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ContactShare\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ContactShare where ContactId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 91,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ContentDocument\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,CreatedById,CreatedDate,LastModifiedById,LastModifiedDate,IsArchived,ArchivedById,ArchivedDate,IsDeleted,OwnerId,SystemModstamp,Title,PublishStatus,LatestPublishedVersionId,ParentId,LastViewedDate,LastReferencedDate,Description,ContentSize,ContentSizeLong,FileType,FileExtension,SharingOption,SharingPrivacy,ContentModifiedDate,ContentAssetId,IsInternalOnly from ContentDocument where id in('069dp000007FKyUAAW') order by Id desc\",\n                \"apiCalls\": 4,\n                \"durationMs\": 3258,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ContentVersion\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,CreatedById,CreatedDate,LastModifiedById,LastModifiedDate,IsArchived,ArchivedById,ArchivedDate,IsDeleted,OwnerId,SystemModstamp,Title,PublishStatus,LatestPublishedVersionId,ParentId,LastViewedDate,LastReferencedDate,Description,ContentSize,ContentSizeLong,FileType,FileExtension,SharingOption,SharingPrivacy,ContentModifiedDate,ContentAssetId,IsInternalOnly from ContentDocument where id in('069dp000007FKyUAAW') order by Id desc\",\n                \"apiCalls\": 4,\n                \"durationMs\": 3258,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Contract\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Contract where CustomerSignedId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 5,\n                \"durationMs\": 101,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"CreditMemo\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CreditMemo where BillingAccountId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 56,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"EmailMessage\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from EmailMessage where RelatedToId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 10,\n                \"durationMs\": 402,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"EmailMessageRelation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id,EmailMessageId from EmailMessageRelation where RelationId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 2,\n                \"durationMs\": 62,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Event\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,WhoId,WhatId,WhoCount,WhatCount,Subject,Location,IsAllDayEvent,ActivityDateTime,ActivityDate,DurationInMinutes,StartDateTime,EndDateTime,EndDate,Description,AccountId,OwnerId,Type,IsPrivate,ShowAs,IsDeleted,IsChild,IsGroupEvent,GroupEventType,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateTime,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,ReminderDateTime,IsReminderSet,EventSubtype,IsRecurrence2Exclusion,Recurrence2PatternText,Recurrence2PatternVersion,IsRecurrence2,IsRecurrence2Exception,Recurrence2PatternStartDate,Recurrence2PatternTimeZone from Event where id in('00Udp00000G9zFxEAJ') order by Id desc\",\n                \"apiCalls\": 17,\n                \"durationMs\": 3705,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ExternalEventMapping\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ExternalEventMapping where EventId in('00Udp00000G9zFxEAJ') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 53,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"FeedComment\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from FeedComment where FeedItemId in('0D5dp00001LtSbnCAF','0D5dp00001LtSboCAF') order by Id desc\",\n                \"apiCalls\": 6,\n                \"durationMs\": 93,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"FeedItem\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,ParentId,Type,CreatedById,CreatedDate,IsDeleted,LastModifiedDate,SystemModstamp,Revision,LastEditById,LastEditDate,CommentCount,LikeCount,Title,Body,LinkUrl,IsRichText,RelatedRecordId,InsertedById,NetworkScope,Visibility,BestCommentId,HasContent,HasLink,HasFeedEntity,HasVerifiedComment,IsClosed,Status from FeedItem where id in('0D5dp00001LtSbnCAF','0D5dp00001LtSboCAF') order by Id desc\",\n                \"apiCalls\": 18,\n                \"durationMs\": 4091,\n                \"records\": {\n                    \"total\": 2,\n                    \"success\": 2,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"FeedRevision\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from FeedRevision where FeedEntityId in('0D5dp00001LtSbnCAF','0D5dp00001LtSboCAF') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 56,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"FeedSignal\",\n                \"isChild\": true,\n                \"querySupported\": false,\n                \"query\": null,\n                \"apiCalls\": 4,\n                \"durationMs\": 86,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ForecastingItem__hd\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ForecastingItem__hd where ParentId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 5,\n                \"durationMs\": 145,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ForecastingSrcRecJudgment\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ForecastingSrcRecJudgment where ReferenceObjectId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 79,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Invoice\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Invoice where BillingAccountId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 67,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ListEmailIndividualRecipient\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ListEmailIndividualRecipient where RecipientId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 74,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"MatchingInformation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from MatchingInformation where SFDCIdId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 54,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"NetworkFeedResponseMetric\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from NetworkFeedResponseMetric where FeedItemId in('0D5dp00001LtSbnCAF','0D5dp00001LtSboCAF') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 135,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"NetworkModeration\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from NetworkModeration where EntityId in('0D5dp00001LtSbnCAF','0D5dp00001LtSboCAF') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 65,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"NetworkUserHistoryRecent\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": null,\n                \"apiCalls\": 7,\n                \"durationMs\": 207,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Note\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,ParentId,Title,IsPrivate,Body,OwnerId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp from Note where id in('002dp00000HIab7AAD') order by Id desc\",\n                \"apiCalls\": 12,\n                \"durationMs\": 3380,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ObjectRelatedUrl\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ObjectRelatedUrl where ParentId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 106,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Opportunity\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,AccountId,Name,Description,StageName,Amount,Probability,CloseDate,Type,NextStep,LeadSource,IsClosed,IsWon,ForecastCategory,ForecastCategoryName,CampaignId,HasOpportunityLineItem,Pricebook2Id,OwnerId,CreatedDate,AgeInDays,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,LastActivityInDays,PushCount,LastStageChangeDate,LastStageChangeInDays,FiscalQuarter,FiscalYear,Fiscal,ContactId,LastViewedDate,LastReferencedDate,SyncedQuoteId,ContractId,HasOpenActivity,HasOverdueTask,LastAmountChangedHistoryId,LastCloseDateChangedHistoryId,IsPriorityRecord,Budget_Confirmed__c,Discovery_Completed__c,ROI_Analysis_Completed__c,Loss_Reason__c from Opportunity where id in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 16,\n                \"durationMs\": 13932,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"OpportunityLineItem\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from OpportunityLineItem where OpportunityId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 102,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"OpportunityRelatedDeleteLog\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from OpportunityRelatedDeleteLog where OpportunityId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 58,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"OpportunityShare\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from OpportunityShare where OpportunityId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 69,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Opportunity__hd\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,ParentId,IsDeleted,ValidFromDate,ValidToDate,CreatedDate,CreatedById,SystemModstamp,Amount__hpr,Amount__hst,CloseDate__hpr,CloseDate__hst,StageName__hpr,StageName__hst,Probability__hpr,Probability__hst,ForecastCategoryName__hpr,ForecastCategoryName__hst,NextStep__hpr,NextStep__hst from Opportunity__hd where id in('h00dp00000UfrqKAAR') order by Id desc\",\n                \"apiCalls\": 15,\n                \"durationMs\": 13307,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Order\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Order where AccountId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 73,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"PendingServiceRouting\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from PendingServiceRouting where WorkItemId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 9,\n                \"durationMs\": 313,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"PendingServiceRoutingInteractionInfo\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from PendingServiceRoutingInteractionInfo where TargetObjectId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 10,\n                \"durationMs\": 932,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Quote\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Quote where OpportunityId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 62,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"ScorecardAssociation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ScorecardAssociation where TargetEntityId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 78,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"SocialPersona\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from SocialPersona where ParentId in('001dp00000oKVMJAA4','001dp00000oKXvvAAG') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 64,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"SurveyInvitation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from SurveyInvitation where ParticipantId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 4,\n                \"durationMs\": 128,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"Task\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,WhoId,WhatId,WhoCount,WhatCount,Subject,ActivityDate,Status,Priority,IsHighPriority,OwnerId,Description,IsDeleted,AccountId,IsClosed,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsArchived,CallDurationInSeconds,CallType,CallDisposition,CallObject,ReminderDateTime,IsReminderSet,RecurrenceActivityId,IsRecurrence,RecurrenceStartDateOnly,RecurrenceEndDateOnly,RecurrenceTimeZoneSidKey,RecurrenceType,RecurrenceInterval,RecurrenceDayOfWeekMask,RecurrenceDayOfMonth,RecurrenceInstance,RecurrenceMonthOfYear,RecurrenceRegeneratedType,TaskSubtype,CompletedDateTime from Task where id in('00Tdp00000LgCWxEAN') order by Id desc\",\n                \"apiCalls\": 11,\n                \"durationMs\": 13299,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"TaskRelation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,RelationId,TaskId,IsWhat,AccountId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,IsDeleted from TaskRelation where id in('0RTdp000008NrqGGAS') order by Id desc\",\n                \"apiCalls\": 17,\n                \"durationMs\": 4290,\n                \"records\": {\n                    \"total\": 1,\n                    \"success\": 1,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"UserDefinedLabelAssignment\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from UserDefinedLabelAssignment where ItemId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 11,\n                \"durationMs\": 382,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"UserEmailPreferredPerson\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from UserEmailPreferredPerson where PersonRecordId in('003dp00000nv8JCAAY') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 63,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            },\n            {\n                \"name\": \"UserPrioritizedRecord\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from UserPrioritizedRecord where TargetId in('006dp00000IRhuYAAT') order by Id desc\",\n                \"apiCalls\": 5,\n                \"durationMs\": 127,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0\n                }\n            }\n        ]\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:48:50\"\n}"}],"_postman_id":"12e4ff5f-8d0b-4274-8b9a-c501ff626a04"},{"name":"Download Backup Object","id":"9121afce-fc62-46fb-ae04-01409bcbf5d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/backups//objects/Account/download","description":"<p>Generates a signed download URL for a backed-up object's data.</p>\n<p><strong>GET</strong> <code>/backups/&lt;backupId&gt;/objects/Account/download</code></p>\n<p><strong>Response:</strong> <code>data</code> = signed download URL (string). Follow it to fetch the file.</p>\n<p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code>. Replace <code>Account</code> with the object name.</p>\n","urlObject":{"path":["ARVault","api","v1","backups","","objects","Account","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"581f6440-f10c-4230-bb5c-258a6cbe445b","name":"criteria_down","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/backups//objects/Account/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:49:05 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:49:05 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:49:05 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:49:05 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:49:05 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Download URL generated successfully.\",\n    \"data\": \"https://vault.example.com/ARVault/download/code/dda44d1918ce8c13989842f12ed07fe45d1626933ba10\",\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:49:05\"\n}"}],"_postman_id":"9121afce-fc62-46fb-ae04-01409bcbf5d5"},{"name":"Download Backup Criteria Object","id":"3fa09f4a-d3d1-42b0-9407-d352a3f55eb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/backups//criteria/Account/objects/Account/download","description":"<p>Generates a signed download URL for a specific object within a criteria branch.</p>\n<p><strong>GET</strong> <code>/backups/&lt;backupId&gt;/criteria/Account/objects/Account/download</code></p>\n<p><strong>Path:</strong> first <code>Account</code> = parent/criteria object, second <code>Account</code> = target child object.</p>\n<p><strong>Response:</strong> <code>data</code> = signed download URL (string).</p>\n<p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","backups","","criteria","Account","objects","Account","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"74ffa908-5065-4371-b249-6112872dc49b","name":"Bkup_object_dow","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/backups//criteria/Account/objects/Account/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:48:57 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:48:57 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:48:57 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:48:57 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:48:57 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Download URL generated successfully.\",\n    \"data\": \"https://vault.example.com/ARVault/download/code/8b60ec65f64c02cc91c9ee10f3495b74d7ea8819d3aa5\",\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:48:57\"\n}"}],"_postman_id":"3fa09f4a-d3d1-42b0-9407-d352a3f55eb7"}],"id":"d120aa98-0fc5-40d1-9e7c-3b0ff3d05d1a","description":"<p>Read-only endpoints for a backup job identified by <code>&lt;backupId&gt;</code>: status/summary, live logs, criteria, and object/log downloads.</p>\n","_postman_id":"d120aa98-0fc5-40d1-9e7c-3b0ff3d05d1a"},{"name":"Archives (GET)","item":[{"name":"Get Archive Job","id":"fd450388-48b3-48d9-a998-7c98fe2fea20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/archives/","description":"<p>Returns status and summary for an archive job.</p>\n<p><strong>GET</strong> <code>/archives/&lt;archiveId&gt;</code></p>\n<p><strong>Response — <code>data</code></strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Archive job id</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Job name</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>enum</td>\n<td><code>INPROGRESS</code> / <code>COMPLETED</code> / <code>STOPED</code> / <code>FAILED</code></td>\n</tr>\n<tr>\n<td><code>summary.data.{success,failure}</code></td>\n<td>int</td>\n<td>Record counts (data)</td>\n</tr>\n<tr>\n<td><code>summary.archive.{success,failure}</code></td>\n<td>int</td>\n<td>Record counts (archived)</td>\n</tr>\n<tr>\n<td><code>objects.&lt;Object&gt;.{records,success,failure}</code></td>\n<td>int</td>\n<td>Per-object counts</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Consumes:</strong> <code>&lt;archiveId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","archives",""],"host":[""],"query":[],"variable":[]}},"response":[{"id":"1d7fce08-c7d7-4f70-80e4-01fa888c5ad9","name":"archive_job","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/archives/"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:51:34 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:51:34 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:51:34 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:51:34 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:51:34 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Archive fetched successfully.\",\n    \"data\": {\n        \"id\": \"16882884-b70f-3f58-21d9-b1a0cd3f96b5\",\n        \"name\": \"ARV_Archive_Mon, 16-Mar-26 11:24 AM GMT\",\n        \"status\": \"COMPLETED\",\n        \"summary\": {\n            \"data\": {\n                \"success\": 800,\n                \"failure\": 0\n            },\n            \"archive\": {\n                \"success\": 800,\n                \"failure\": 0\n            }\n        },\n        \"objects\": {\n            \"Account\": {\n                \"records\": 800,\n                \"success\": 800,\n                \"failure\": 0,\n                \"archivedSuccess\": 800,\n                \"archivedFailed\": 0,\n                \"apiCalls\": 437,\n                \"durationMs\": 191938,\n                \"query\": \"Select Id from Account where (  (  Name LIKE 'archive%' ) ) order by Id desc\"\n            }\n        },\n        \"metadata\": {},\n        \"criteriaIds\": [\n            \"1057f286-7227-7a36-1382-4b54ba86b380\"\n        ],\n        \"archivalCompleted\": true\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:51:34\"\n}"}],"_postman_id":"fd450388-48b3-48d9-a998-7c98fe2fea20"},{"name":"Get Archive Criteria (Object)","id":"5b18d9da-2a40-4327-8623-b1e037063f4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/archives//criteria/Account","description":"<p>Returns the resolved archive criteria/object tree for a parent object.</p>\n<p><strong>GET</strong> <code>/archives/&lt;archiveId&gt;/criteria/Account</code></p>\n<p><strong>Response — <code>data</code>:</strong> <code>id</code>, <code>criteriaId</code>, <code>idCfgCriteria</code>, <code>parentObject</code>, <code>status</code>, <code>objects[]</code> (<code>name</code>, <code>isChild</code>, <code>querySupported</code>, <code>query</code>).</p>\n<p><strong>Consumes:</strong> <code>&lt;archiveId&gt;</code>. Replace <code>Account</code> with the desired object.</p>\n","urlObject":{"path":["ARVault","api","v1","archives","","criteria","Account"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"48e19e30-83f9-4f38-ac23-c9eebcc470ef","name":"archive_criteria","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/archives//criteria/Account"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:51:53 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:51:53 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:51:53 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:51:53 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:51:53 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Archive criteria fetched successfully.\",\n    \"data\": {\n        \"id\": \"16882884-b70f-3f58-21d9-b1a0cd3f96b5\",\n        \"criteriaId\": \"1057f286-7227-7a36-1382-4b54ba86b380\",\n        \"idCfgCriteria\": \"77d3260efc49e2e5b89256b4b743c584\",\n        \"parentObject\": \"Account\",\n        \"status\": \"COMPLETED\",\n        \"liveStatus\": \"Reading backup configuration...\",\n        \"objects\": [\n            {\n                \"name\": \"AIInsightValue\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AIInsightValue where SobjectLookupValueId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 7,\n                \"durationMs\": 230,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Account\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,MasterRecordId,Name,Type,ParentId,BillingStreet,BillingCity,BillingState,BillingPostalCode,BillingCountry,BillingLatitude,BillingLongitude,BillingGeocodeAccuracy,BillingAddress,ShippingStreet,ShippingCity,ShippingState,ShippingPostalCode,ShippingCountry,ShippingLatitude,ShippingLongitude,ShippingGeocodeAccuracy,ShippingAddress,Phone,Website,PhotoUrl,Industry,NumberOfEmployees,Description,OwnerId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,LastViewedDate,LastReferencedDate,Jigsaw,JigsawCompanyId,AccountSource,SicDesc,IsPriorityRecord,BusinessUnit__c,CRMforNonProfit__Account_Num__c,CRMforNonProfit__First_Transaction_Date__c,CRMforNonProfit__ICO__c,CRMforNonProfit__Tax_ID__c,CRMforNonProfit__Transaction_Amount_14_36__c,CRMforNonProfit__Transaction_Amount_14__c,CRMforNonProfit__Transaction_Amount_2008__c,CRMforNonProfit__Transaction_Amount_2009__c,CRMforNonProfit__Transaction_Amount_2010__c,CRMforNonProfit__Transaction_Amount_2011__c,CRMforNonProfit__Transaction_Amount_2012__c,CRMforNonProfit__Transaction_Amount_2013__c,CRMforNonProfit__Transaction_Amount_2014__c,CRMforNonProfit__Transaction_Amount_2015__c,CRMforNonProfit__Transaction_Amount_2016__c,CRMforNonProfit__Transaction_Amount_2017__c,CRMforNonProfit__Transaction_Amount_2018__c,CRMforNonProfit__Transaction_Amount_2019__c,CRMforNonProfit__Transaction_Amount_2020__c,CRMforNonProfit__Transaction_Amount_2021__c,CRMforNonProfit__Transaction_Amount_2022__c,CRMforNonProfit__Transaction_Amount_2023__c,CRMforNonProfit__Transaction_Amount_2024__c,CRMforNonProfit__Transaction_Count_14_36__c,CRMforNonProfit__Transaction_Count_14__c,CRMforNonProfit__Transaction_Count_2008__c,CRMforNonProfit__Transaction_Count_2009__c,CRMforNonProfit__Transaction_Count_2010__c,CRMforNonProfit__Transaction_Count_2011__c,CRMforNonProfit__Transaction_Count_2012__c,CRMforNonProfit__Transaction_Count_2013__c,CRMforNonProfit__Transaction_Count_2014__c,CRMforNonProfit__Transaction_Count_2015__c,CRMforNonProfit__Transaction_Count_2016__c,CRMforNonProfit__Transaction_Count_2017__c,CRMforNonProfit__Transaction_Count_2018__c,CRMforNonProfit__Transaction_Count_2019__c,CRMforNonProfit__Transaction_Count_2020__c,CRMforNonProfit__Transaction_Count_2021__c,CRMforNonProfit__Transaction_Count_2022__c,CRMforNonProfit__Transaction_Count_2023__c,CRMforNonProfit__Transaction_Count_2024__c,CRMforNonProfit__celkova_hodnota_finacni_dary__c,CRMforNonProfit__datum_posledni_kampane__c,CRMforNonProfit__datum_posledniho_financniho_daru__c,CRMforNonProfit__pocet_financnich_daru__c,CRMforNonProfit__Average_Donation__c,CRMforNonProfit__DniMeziDary__c,CRMforNonProfit__DniOdPoslednihoDaru__c from Account where id in('001WI000010nCIpYAM','001WI000010nCHYYA2','001WI000010nCI7YAM','001WI000010oMHmYAM','001WI000010nCHQYA2','001WI000010nCIeYAM','001WI000010nCHIYA2','001WI000010nCHqYAM','001WI000010nCIUYA2','001WI000010nCHaYAM','001WI000010nCIEYA2','001WI000010nCHiYAM','001WI000010nCIMYA2','001WI000010nCHfYAM','001WI000010nCIJYA2','001WI000010nCI4YAM','001WI000010nCHyYAM','001WI000010nCHNYA2','001WI000010nCIbYAM','001WI000010nCIkYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCIBYA2','001WI000010nCIZYA2','001WI000010nCHnYAM','001WI000010nCIRYA2','001WI000010nCIKYA2','001WI000010nCHzYAM','001WI000010nCI5YAM','001WI000010nCIcYAM','001WI000010nCHOYA2','001WI000010nCHWYA2','001WI000010nCIjYAM','001WI000010nCHoYAM','001WI000010oMHnYAM','001WI000010nCI8YAM','001WI000010nCICYA2','001WI000010nCISYA2','001WI000010nCHgYAM','001WI000010nCHTYA2','001WI000010nCI2YAM','001WI000010nCIHYA2','001WI000010nCHwYAM','001WI000010nCHLYA2','001WI000010nCImYAM','001WI000010nCIhYAM','001WI000010nCIXYA2','001WI000010nCHtYAM','001WI000010nCHlYAM','001WI000010nCIPYA2','001WI000010nCHdYAM','001WI000010nCIIYA2','001WI000010nCI3YAM','001WI000010nCHxYAM','001WI000010nCHMYA2','001WI000010nCIlYAM','001WI000010nCIaYAM','001WI000010nCHUYA2','001WI000010nCIiYAM','001WI000010nCIAYA2','001WI000010nCHuYAM','001WI000010nCHmYAM','001WI000010nCIYYA2','001WI000010nCHeYAM','001WI000010nCIQYA2','001WI000010nCI0YAM','001WI000010nCIoYAM','001WI000010nCHZYA2','001WI000010nCHRYA2','001WI000010nCIfYAM','001WI000010nCIVYA2','001WI000010nCHrYAM','001WI000010nCHJYA2','001WI000010nCIFYA2','001WI000010nCHbYAM','001WI000010nCHjYAM','001WI000010nCINYA2','001WI000010nCI1YAM','001WI000010nCIGYA2','001WI000010nCInYAM','001WI000010nCIgYAM','001WI000010nCHSYA2','001WI000010nCIWYA2','001WI000010nCHKYA2','001WI000010nCHsYAM','001WI000010nCHkYAM','001WI000010nCHcYAM','001WI000010nCIOYA2','001WI000010nCILYA2','001WI000010nCIqYAM','001WI000010oMHlYAM','001WI000010nCI6YAM','001WI000010nCHXYA2','001WI000010nCHPYA2','001WI000010nCIdYAM','001WI000010nCHpYAM','001WI000010nCIDYA2','001WI000010nCI9YAM','001WI000010nCITYA2','001WI000010nCHhYAM') order by Id desc\",\n                \"apiCalls\": 58,\n                \"durationMs\": 43462,\n                \"records\": {\n                    \"total\": 100,\n                    \"success\": 100,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 100,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"AccountContactRelation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,AccountId,ContactId,Roles,IsDirect,IsActive,StartDate,EndDate,IsDeleted,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,Relationship_Strength__c from AccountContactRelation where id in('07kWI00000Kz49LYAR','07kWI00000Kz48PYAR','07kWI00000Kz485YAB','07kWI00000Kz48vYAB','07kWI00000Kz48cYAB','07kWI00000Kz48nYAB','07kWI00000Kz48EYAR','07kWI00000Kz494YAB','07kWI00000Kz49TYAR','07kWI00000Kz49DYAR','07kWI00000Kz49IYAR','07kWI00000Kz48sYAB','07kWI00000Kz48UYAR','07kWI00000Kz48MYAR','07kWI00000Kz499YAB','07kWI00000Kz48HYAR','07kWI00000Kz48kYAB','07kWI00000Kz491YAB','07kWI00000Kz49QYAR','07kWI00000Kz488YAB','07kWI00000Kz48XYAR','07kWI00000Kz49AYAR','07kWI00000Kz48tYAB','07kWI00000Kz49JYAR','07kWI00000Kz483YAB','07kWI00000Kz48VYAR','07kWI00000Kz48CYAR','07kWI00000Kz48lYAB','07kWI00000Kz48NYAR','07kWI00000Kz48aYAB','07kWI00000Kz49RYAR','07kWI00000Kz492YAB','07kWI00000Kz48YYAR','07kWI00000Kz49BYAR','07kWI00000Kz48SYAR','07kWI00000Kz48qYAB','07kWI00000Kz486YAB','07kWI00000Kz49ZYAR','07kWI00000Kz48fYAB','07kWI00000Kz48KYAR','07kWI00000Kz48FYAR','07kWI00000Kz48iYAB','07kWI00000Kz49WYAR','07kWI00000Kz497YAB','07kWI00000Kz48yYAB','07kWI00000Kz49OYAR','07kWI00000Kz49GYAR','07kWI00000Kz49bYAB','07kWI00000Kz481YAB','07kWI00000Kz48TYAR','07kWI00000Kz48rYAB','07kWI00000Kz48AYAR','07kWI00000Kz48LYAR','07kWI00000Kz48gYAB','07kWI00000Kz48jYAB','07kWI00000Kz49XYAR','07kWI00000Kz489YAB','07kWI00000Kz498YAB','07kWI00000Kz49PYAR','07kWI00000Kz490YAB','07kWI00000Kz48zYAB','07kWI00000Kz49HYAR','07kWI00000Kz49cYAB','07kWI00000Kz484YAB','07kWI00000Kz48QYAR','07kWI00000Kz48wYAB','07kWI00000Kz48oYAB','07kWI00000Kz48DYAR','07kWI00000Kz48IYAR','07kWI00000Kz48dYAB','07kWI00000Kz49UYAR','07kWI00000Kz495YAB','07kWI00000Kz49MYAR','07kWI00000Kz49EYAR','07kWI00000Kz48RYAR','07kWI00000Kz48pYAB','07kWI00000Kz487YAB','07kWI00000Kz49YYAR','07kWI00000Kz48JYAR','07kWI00000Kz48eYAB','07kWI00000Kz48GYAR','07kWI00000Kz48hYAB','07kWI00000Kz49VYAR','07kWI00000Kz496YAB','07kWI00000Kz48xYAB','07kWI00000Kz49NYAR','07kWI00000Kz49aYAB','07kWI00000Kz49FYAR','07kWI00000Kz482YAB','07kWI00000Kz49KYAR','07kWI00000Kz48uYAB','07kWI00000Kz48WYAR','07kWI00000Kz48BYAR','07kWI00000Kz48mYAB','07kWI00000Kz48OYAR','07kWI00000Kz48bYAB','07kWI00000Kz493YAB','07kWI00000Kz49SYAR','07kWI00000Kz48ZYAR','07kWI00000Kz49CYAR') order by Id desc\",\n                \"apiCalls\": 19,\n                \"durationMs\": 637,\n                \"records\": {\n                    \"total\": 100,\n                    \"success\": 100,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 100,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"AccountShare\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AccountShare where AccountId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 67,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"AccountTeamMember\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AccountTeamMember where AccountId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 67,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"AgentWork\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AgentWork where WorkItemId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 7,\n                \"durationMs\": 247,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Announcement\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Announcement where FeedItemId in('0D5WI00000rGD6k0AG','0D5WI00000rGD6l0AG','0D5WI00000rGD6m0AG','0D5WI00000rGD6n0AG','0D5WI00000rGD6o0AG','0D5WI00000rGD6p0AG','0D5WI00000rGD6q0AG','0D5WI00000rGD6r0AG','0D5WI00000rGD6s0AG','0D5WI00000rGD6t0AG','0D5WI00000rGD6u0AG','0D5WI00000rGD6v0AG','0D5WI00000rGD6w0AG','0D5WI00000rGD6x0AG','0D5WI00000rGD6y0AG','0D5WI00000rGD6z0AG','0D5WI00000rGD700AG','0D5WI00000rGD710AG','0D5WI00000rGD720AG','0D5WI00000rGD730AG','0D5WI00000rGD740AG','0D5WI00000rGD750AG','0D5WI00000rGD760AG','0D5WI00000rGD770AG','0D5WI00000rGD780AG','0D5WI00000rGD790AG','0D5WI00000rGD7a0AG','0D5WI00000rGD7A0AW','0D5WI00000rGD7b0AG','0D5WI00000rGD7B0AW','0D5WI00000rGD7c0AG','0D5WI00000rGD7C0AW','0D5WI00000rGD7D0AW','0D5WI00000rGD7E0AW','0D5WI00000rGD7F0AW','0D5WI00000rGD7G0AW','0D5WI00000rGD7H0AW','0D5WI00000rGD7I0AW','0D5WI00000rGD7J0AW','0D5WI00000rGD7K0AW','0D5WI00000rGD7L0AW','0D5WI00000rGD7M0AW','0D5WI00000rGD7N0AW','0D5WI00000rGD7O0AW','0D5WI00000rGD7P0AW','0D5WI00000rGD7Q0AW','0D5WI00000rGD7R0AW','0D5WI00000rGD7S0AW','0D5WI00000rGD7T0AW','0D5WI00000rGD7U0AW','0D5WI00000rGD7V0AW','0D5WI00000rGD7W0AW','0D5WI00000rGD7X0AW','0D5WI00000rGD7Y0AW','0D5WI00000rGD7Z0AW','0D5WI00000rGfGn0AK','0D5WI00000rGfGo0AK','0D5WI00000rGfGp0AK','0D5WI00000rGfGq0AK','0D5WI00000rGfGr0AK','0D5WI00000rGfGs0AK','0D5WI00000rGfGt0AK','0D5WI00000rGfGu0AK','0D5WI00000rGfGv0AK','0D5WI00000rGfGw0AK','0D5WI00000rGfGx0AK','0D5WI00000rGfGy0AK','0D5WI00000rGfGz0AK','0D5WI00000rGfH00AK','0D5WI00000rGfH10AK','0D5WI00000rGfH20AK','0D5WI00000rGfH30AK','0D5WI00000rGfH40AK','0D5WI00000rGfH50AK','0D5WI00000rGfH60AK','0D5WI00000rGfH70AK','0D5WI00000rGfH80AK','0D5WI00000rGfH90AK','0D5WI00000rGfHA0A0','0D5WI00000rGfHB0A0','0D5WI00000rGfHC0A0','0D5WI00000rGfHD0A0','0D5WI00000rGfHE0A0','0D5WI00000rGfHF0A0','0D5WI00000rGfHG0A0','0D5WI00000rGfHH0A0','0D5WI00000rGfHI0A0','0D5WI00000rGfHJ0A0','0D5WI00000rGfHK0A0','0D5WI00000rGfHL0A0','0D5WI00000rGfHM0A0','0D5WI00000rGfHN0A0','0D5WI00000rGfHO0A0','0D5WI00000rGfHP0A0','0D5WI00000rGfHQ0A0','0D5WI00000rGfHR0A0','0D5WI00000rGfHS0A0','0D5WI00000rGfHT0A0','0D5WI00000rGfHU0A0','0D5WI00000rGfHV0A0') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 78,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Asset\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Asset where AccountId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 54,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"AssociatedLocation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from AssociatedLocation where ParentRecordId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 66,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Attachment\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Attachment where ParentId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 10,\n                \"durationMs\": 346,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"CRMforNonProfit__Contact_to_Process__c\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CRMforNonProfit__Contact_to_Process__c where CRMforNonProfit__Contact1__c in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 83,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"CRMforNonProfit__NNOSettings__c\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CRMforNonProfit__NNOSettings__c where CRMforNonProfit__DefaultContact__c in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 5,\n                \"durationMs\": 132,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"CRMforNonProfit__Pledge__c\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CRMforNonProfit__Pledge__c where CRMforNonProfit__Contact__c in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 133,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"CRMforNonProfit__Transaction__c\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CRMforNonProfit__Transaction__c where CRMforNonProfit__Contact__c in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 51,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"CampaignMember\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CampaignMember where ContactId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 66,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Case\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,MasterRecordId,CaseNumber,ContactId,AccountId,ParentId,SuppliedName,SuppliedEmail,SuppliedPhone,SuppliedCompany,Type,Status,Reason,Origin,Subject,Priority,Description,IsClosed,ClosedDate,IsEscalated,OwnerId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,ContactPhone,ContactMobile,ContactEmail,ContactFax,Comments,LastViewedDate,LastReferencedDate from Case where id in('500WI00000aLPtdYAG','500WI00000aLPtYYAW','500WI00000aLPtFYAW','500WI00000aLPuUYAW','500WI00000aLPu2YAG','500WI00000aLPuMYAW','500WI00000aLPucYAG','500WI00000aLPuBYAW','500WI00000aLPtIYAW','500WI00000aLPttYAG','500WI00000aLPtQYAW','500WI00000aLPtlYAG','500WI00000aLPtzYAG','500WI00000aLPuPYAW','500WI00000aLPtgYAG','500WI00000aLPtAYAW','500WI00000aLPu5YAG','500WI00000aLPuXYAW','500WI00000aLPtoYAG','500WI00000aLPuEYAW','500WI00000aLPtLYAW','500WI00000aLPuhYAG','500WI00000aLPtTYAW','500WI00000aLPtwYAG','500WI00000aLPtyYAG','500WI00000aLPtfYAG','500WI00000aLPuWYAW','500WI00000aLPuOYAW','500WI00000aLPu4YAG','500WI00000aLPueYAG','500WI00000aLPuDYAW','500WI00000aLPtvYAG','500WI00000aLPtKYAW','500WI00000aLPtnYAG','500WI00000aLPtSYAW','500WI00000aLPtCYAW','500WI00000aLPt9YAG','500WI00000aLPtaYAG','500WI00000aLPuJYAW','500WI00000aLPu7YAG','500WI00000aLPuRYAW','500WI00000aLPtNYAW','500WI00000aLPuZYAW','500WI00000aLPuGYAW','500WI00000aLPubYAG','500WI00000aLPtiYAG','500WI00000aLPtVYAW','500WI00000aLPtqYAG','500WI00000aLPtBYAW','500WI00000aLPuIYAW','500WI00000aLPu6YAG','500WI00000aLPuQYAW','500WI00000aLPuFYAW','500WI00000aLPtMYAW','500WI00000aLPu9YAG','500WI00000aLPugYAG','500WI00000aLPuYYAW','500WI00000aLPthYAG','500WI00000aLPt7YAG','500WI00000aLPtUYAW','500WI00000aLPtpYAG','500WI00000aLPtXYAW','500WI00000aLPtcYAG','500WI00000aLPtEYAW','500WI00000aLPuLYAW','500WI00000aLPu1YAG','500WI00000aLPuTYAW','500WI00000aLPudYAG','500WI00000aLPuAYAW','500WI00000aLPtHYAW','500WI00000aLPtkYAG','500WI00000aLPtPYAW','500WI00000aLPtsYAG','500WI00000aLPt8YAG','500WI00000aLPu0YAG','500WI00000aLPtbYAG','500WI00000aLPtDYAW','500WI00000aLPuKYAW','500WI00000aLPuiYAG','500WI00000aLPuSYAW','500WI00000aLPu8YAG','500WI00000aLPtOYAW','500WI00000aLPuHYAW','500WI00000aLPtjYAG','500WI00000aLPtrYAG','500WI00000aLPtWYAW','500WI00000aLPteYAG','500WI00000aLPtxYAG','500WI00000aLPtZYAW','500WI00000aLPtGYAW','500WI00000aLPuaYAG','500WI00000aLPuVYAW','500WI00000aLPuNYAW','500WI00000aLPu3YAG','500WI00000aLPufYAG','500WI00000aLPuCYAW','500WI00000aLPtuYAG','500WI00000aLPtJYAW','500WI00000aLPtmYAG','500WI00000aLPtRYAW') order by Id desc\",\n                \"apiCalls\": 16,\n                \"durationMs\": 14142,\n                \"records\": {\n                    \"total\": 100,\n                    \"success\": 100,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 100,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"CaseHistory2\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,CaseId,OwnerId,Status,PreviousUpdate,LastModifiedDate,LastModifiedById,IsDeleted,SystemModstamp from CaseHistory2 where id in('02DWI00000TVCnZ2AX','02DWI00000TVCne2AH','02DWI00000TVCoN2AX','02DWI00000TVCo32AH','02DWI00000TVCoa2AH','02DWI00000TVCnx2AH','02DWI00000TVCoC2AX','02DWI00000TVCnp2AH','02DWI00000TVCod2AH','02DWI00000TVCnO2AX','02DWI00000TVCol2AH','02DWI00000TVCnb2AH','02DWI00000TVCot2AH','02DWI00000TVCoY2AX','02DWI00000TVCoQ2AX','02DWI00000TVCoo2AH','02DWI00000TVCo02AH','02DWI00000TVCns2AH','02DWI00000TVCnW2AX','02DWI00000TVCog2AH','02DWI00000TVCoH2AX','02DWI00000TVCnk2AH','02DWI00000TVCow2AH','02DWI00000TVCoT2AX','02DWI00000TVCo82AH','02DWI00000TVCoP2AX','02DWI00000TVCnc2AH','02DWI00000TVCnX2AX','02DWI00000TVCon2AH','02DWI00000TVCo12AH','02DWI00000TVCoA2AX','02DWI00000TVCoc2AH','02DWI00000TVCnz2AH','02DWI00000TVCof2AH','02DWI00000TVCo92AH','02DWI00000TVCnr2AH','02DWI00000TVCoI2AX','02DWI00000TVCnj2AH','02DWI00000TVCov2AH','02DWI00000TVCoq2AH','02DWI00000TVCoS2AX','02DWI00000TVCnh2AH','02DWI00000TVCnu2AH','02DWI00000TVCoK2AX','02DWI00000TVCnU2AX','02DWI00000TVCoF2AX','02DWI00000TVCnm2AH','02DWI00000TVCoi2AH','02DWI00000TVCnR2AX','02DWI00000TVCoV2AX','02DWI00000TVCo62AH','02DWI00000TVCoy2AH','02DWI00000TVCop2AH','02DWI00000TVCoR2AX','02DWI00000TVCni2AH','02DWI00000TVCnt2AH','02DWI00000TVCnV2AX','02DWI00000TVCoG2AX','02DWI00000TVCoh2AH','02DWI00000TVCnl2AH','02DWI00000TVCoU2AX','02DWI00000TVCo72AH','02DWI00000TVCox2AH','02DWI00000TVCnf2AH','02DWI00000TVCos2AH','02DWI00000TVCoM2AX','02DWI00000TVCnS2AX','02DWI00000TVCnw2AH','02DWI00000TVCno2AH','02DWI00000TVCoD2AX','02DWI00000TVCnP2AX','02DWI00000TVCok2AH','02DWI00000TVCo42AH','02DWI00000TVCoX2AX','02DWI00000TVCor2AH','02DWI00000TVCng2AH','02DWI00000TVCoL2AX','02DWI00000TVCnT2AX','02DWI00000TVCnv2AH','02DWI00000TVCoE2AX','02DWI00000TVCnQ2AX','02DWI00000TVCnn2AH','02DWI00000TVCoj2AH','02DWI00000TVCo52AH','02DWI00000TVCoW2AX','02DWI00000TVCnY2AX','02DWI00000TVCnd2AH','02DWI00000TVCo22AH','02DWI00000TVCoO2AX','02DWI00000TVCob2AH','02DWI00000TVCoB2AX','02DWI00000TVCny2AH','02DWI00000TVCnq2AH','02DWI00000TVCoe2AH','02DWI00000TVCoJ2AX','02DWI00000TVCnN2AX','02DWI00000TVCom2AH','02DWI00000TVCna2AH','02DWI00000TVCou2AH','02DWI00000TVCoZ2AX') order by Id desc\",\n                \"apiCalls\": 13,\n                \"durationMs\": 768,\n                \"records\": {\n                    \"total\": 100,\n                    \"success\": 100,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 100,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"CaseShare\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CaseShare where CaseId in('500WI00000aLPt7YAG','500WI00000aLPt8YAG','500WI00000aLPt9YAG','500WI00000aLPtaYAG','500WI00000aLPtAYAW','500WI00000aLPtbYAG','500WI00000aLPtBYAW','500WI00000aLPtcYAG','500WI00000aLPtCYAW','500WI00000aLPtdYAG','500WI00000aLPtDYAW','500WI00000aLPteYAG','500WI00000aLPtEYAW','500WI00000aLPtfYAG','500WI00000aLPtFYAW','500WI00000aLPtgYAG','500WI00000aLPtGYAW','500WI00000aLPthYAG','500WI00000aLPtHYAW','500WI00000aLPtiYAG','500WI00000aLPtIYAW','500WI00000aLPtjYAG','500WI00000aLPtJYAW','500WI00000aLPtkYAG','500WI00000aLPtKYAW','500WI00000aLPtlYAG','500WI00000aLPtLYAW','500WI00000aLPtmYAG','500WI00000aLPtMYAW','500WI00000aLPtnYAG','500WI00000aLPtNYAW','500WI00000aLPtoYAG','500WI00000aLPtOYAW','500WI00000aLPtpYAG','500WI00000aLPtPYAW','500WI00000aLPtqYAG','500WI00000aLPtQYAW','500WI00000aLPtrYAG','500WI00000aLPtRYAW','500WI00000aLPtsYAG','500WI00000aLPtSYAW','500WI00000aLPttYAG','500WI00000aLPtTYAW','500WI00000aLPtuYAG','500WI00000aLPtUYAW','500WI00000aLPtvYAG','500WI00000aLPtVYAW','500WI00000aLPtwYAG','500WI00000aLPtWYAW','500WI00000aLPtxYAG','500WI00000aLPtXYAW','500WI00000aLPtyYAG','500WI00000aLPtYYAW','500WI00000aLPtzYAG','500WI00000aLPtZYAW','500WI00000aLPu0YAG','500WI00000aLPu1YAG','500WI00000aLPu2YAG','500WI00000aLPu3YAG','500WI00000aLPu4YAG','500WI00000aLPu5YAG','500WI00000aLPu6YAG','500WI00000aLPu7YAG','500WI00000aLPu8YAG','500WI00000aLPu9YAG','500WI00000aLPuaYAG','500WI00000aLPuAYAW','500WI00000aLPubYAG','500WI00000aLPuBYAW','500WI00000aLPucYAG','500WI00000aLPuCYAW','500WI00000aLPudYAG','500WI00000aLPuDYAW','500WI00000aLPueYAG','500WI00000aLPuEYAW','500WI00000aLPufYAG','500WI00000aLPuFYAW','500WI00000aLPugYAG','500WI00000aLPuGYAW','500WI00000aLPuhYAG','500WI00000aLPuHYAW','500WI00000aLPuiYAG','500WI00000aLPuIYAW','500WI00000aLPuJYAW','500WI00000aLPuKYAW','500WI00000aLPuLYAW','500WI00000aLPuMYAW','500WI00000aLPuNYAW','500WI00000aLPuOYAW','500WI00000aLPuPYAW','500WI00000aLPuQYAW','500WI00000aLPuRYAW','500WI00000aLPuSYAW','500WI00000aLPuTYAW','500WI00000aLPuUYAW','500WI00000aLPuVYAW','500WI00000aLPuWYAW','500WI00000aLPuXYAW','500WI00000aLPuYYAW','500WI00000aLPuZYAW') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 77,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Contact\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,MasterRecordId,AccountId,LastName,FirstName,Salutation,MiddleName,Suffix,Name,MailingStreet,MailingCity,MailingState,MailingPostalCode,MailingCountry,MailingLatitude,MailingLongitude,MailingGeocodeAccuracy,MailingAddress,Phone,Fax,MobilePhone,ReportsToId,Email,Title,Department,OwnerId,CreatedDate,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,LastCURequestDate,LastCUUpdateDate,LastViewedDate,LastReferencedDate,EmailBouncedReason,EmailBouncedDate,IsEmailBounced,PhotoUrl,Jigsaw,JigsawContactId,IsPriorityRecord,ContactSource,CRMforNonProfit__Account_Num__c,CRMforNonProfit__Communication__c,CRMforNonProfit__Contact_Category__c,CRMforNonProfit__Contact_Status__c,CRMforNonProfit__DaysLast3Donations__c,CRMforNonProfit__Document_Creation_Date__c,CRMforNonProfit__Donation_Receipt_BCC__c,CRMforNonProfit__Donation_Receipt_CC__c,CRMforNonProfit__Donation_Receipt__c,CRMforNonProfit__Languages__c,CRMforNonProfit__Letter_Title__c,CRMforNonProfit__Level__c,CRMforNonProfit__Newsletter__c,CRMforNonProfit__Position__c,CRMforNonProfit__PossiblePermanentDonor__c,CRMforNonProfit__Preffered_Channel__c,CRMforNonProfit__Secondary_Email__c,CRMforNonProfit__Skip_from_transactions_calculation__c,CRMforNonProfit__Title_Prefix__c,CRMforNonProfit__Title_Suffix__c,CRMforNonProfit__Transaction_Amount_14_36__c,CRMforNonProfit__Transaction_Amount_14__c,CRMforNonProfit__Transaction_Amount_2008__c,CRMforNonProfit__Transaction_Amount_2009__c,CRMforNonProfit__Transaction_Amount_2010__c,CRMforNonProfit__Transaction_Amount_2011__c,CRMforNonProfit__Transaction_Amount_2012__c,CRMforNonProfit__Transaction_Amount_2013__c,CRMforNonProfit__Transaction_Amount_2014__c,CRMforNonProfit__Transaction_Amount_2015__c,CRMforNonProfit__Transaction_Amount_2016__c,CRMforNonProfit__Transaction_Amount_2017__c,CRMforNonProfit__Transaction_Amount_2018__c,CRMforNonProfit__Transaction_Amount_2019__c,CRMforNonProfit__Transaction_Amount_2020__c,CRMforNonProfit__Transaction_Amount_2021__c,CRMforNonProfit__Transaction_Amount_2022__c,CRMforNonProfit__Transaction_Amount_2023__c,CRMforNonProfit__Transaction_Amount_2024__c,CRMforNonProfit__Transaction_Count_14_36__c,CRMforNonProfit__Transaction_Count_14__c,CRMforNonProfit__Transaction_Count_2008__c,CRMforNonProfit__Transaction_Count_2009__c,CRMforNonProfit__Transaction_Count_2010__c,CRMforNonProfit__Transaction_Count_2011__c,CRMforNonProfit__Transaction_Count_2012__c,CRMforNonProfit__Transaction_Count_2013__c,CRMforNonProfit__Transaction_Count_2014__c,CRMforNonProfit__Transaction_Count_2015__c,CRMforNonProfit__Transaction_Count_2016__c,CRMforNonProfit__Transaction_Count_2017__c,CRMforNonProfit__Transaction_Count_2018__c,CRMforNonProfit__Transaction_Count_2019__c,CRMforNonProfit__Transaction_Count_2020__c,CRMforNonProfit__Transaction_Count_2021__c,CRMforNonProfit__Transaction_Count_2022__c,CRMforNonProfit__Transaction_Count_2023__c,CRMforNonProfit__Transaction_Count_2024__c,CRMforNonProfit__Variable__c,CRMforNonProfit__Vocative__c,CRMforNonProfit__datum_posledni_kampane__c,CRMforNonProfit__noac_celkova_hodnota_finacni_dary__c,CRMforNonProfit__noac_datum_posledniho_financniho_daru__c,CRMforNonProfit__noac_pocet_financnich_daru__c,CRMforNonProfit__First_Transaction_Date__c,CRMforNonProfit__Transactions_Count__c,CRMforNonProfit__Transactions_Total__c,CRMforNonProfit__Avarage_Donation__c,CRMforNonProfit__DniMeziDary__c,CRMforNonProfit__DniOdPoslednihoDaru__c from Contact where id in('003WI00000qvexgYAA','003WI00000qvey5YAA','003WI00000qveynYAA','003WI00000qveyPYAQ','003WI00000qwCfaYAE','003WI00000qveyXYAQ','003WI00000qveyfYAA','003WI00000qvexTYAQ','003WI00000qvexoYAA','003WI00000qveyMYAQ','003WI00000qvexwYAA','003WI00000qveyEYAQ','003WI00000qvey0YAA','003WI00000qvexWYAQ','003WI00000qveySYAQ','003WI00000qvexjYAA','003WI00000qvexLYAQ','003WI00000qvexbYAA','003WI00000qvexOYAQ','003WI00000qveyHYAQ','003WI00000qvey8YAA','003WI00000qveykYAA','003WI00000qvexrYAA','003WI00000qveycYAA','003WI00000qvexzYAA','003WI00000qvexeYAA','003WI00000qvexZYAQ','003WI00000qveyNYAQ','003WI00000qvey3YAA','003WI00000qveyVYAQ','003WI00000qvexmYAA','003WI00000qveylYAA','003WI00000qvexRYAQ','003WI00000qwCfcYAE','003WI00000qvexuYAA','003WI00000qveyKYAQ','003WI00000qveydYAA','003WI00000qveyCYAQ','003WI00000qvexhYAA','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qvexJYAQ','003WI00000qvey6YAA','003WI00000qveyYYAQ','003WI00000qveyFYAQ','003WI00000qveyiYAA','003WI00000qvexMYAQ','003WI00000qvexpYAA','003WI00000qvexUYAQ','003WI00000qvexxYAA','003WI00000qveyaYAA','003WI00000qvey1YAA','003WI00000qvexXYAQ','003WI00000qveyTYAQ','003WI00000qvexkYAA','003WI00000qvexcYAA','003WI00000qvexPYAQ','003WI00000qwCfZYAU','003WI00000qveyIYAQ','003WI00000qvey9YAA','003WI00000qvexsYAA','003WI00000qveyjYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qvexfYAA','003WI00000qveyOYAQ','003WI00000qvey4YAA','003WI00000qveyoYAA','003WI00000qveyWYAQ','003WI00000qveygYAA','003WI00000qvexnYAA','003WI00000qvexSYAQ','003WI00000qwCfbYAE','003WI00000qvexvYAA','003WI00000qveyLYAQ','003WI00000qveyDYAQ','003WI00000qveyRYAQ','003WI00000qveypYAA','003WI00000qvey7YAA','003WI00000qvexiYAA','003WI00000qvexKYAQ','003WI00000qveyZYAQ','003WI00000qvexaYAA','003WI00000qvexqYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qvexNYAQ','003WI00000qvexVYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qveyUYAQ','003WI00000qvey2YAA','003WI00000qvexlYAA','003WI00000qvexdYAA','003WI00000qvextYAA','003WI00000qvexQYAQ','003WI00000qveymYAA','003WI00000qveyJYAQ','003WI00000qveyeYAA','003WI00000qveyBYAQ') order by Id desc\",\n                \"apiCalls\": 16,\n                \"durationMs\": 756,\n                \"records\": {\n                    \"total\": 100,\n                    \"success\": 100,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 100,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"ContactShare\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ContactShare where ContactId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 102,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Contract\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Contract where CustomerSignedId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 5,\n                \"durationMs\": 134,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"CreditMemo\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from CreditMemo where BillingAccountId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 59,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"EmailMessage\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from EmailMessage where RelatedToId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 9,\n                \"durationMs\": 299,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"EmailMessageRelation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id,EmailMessageId from EmailMessageRelation where RelationId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 2,\n                \"durationMs\": 81,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Event\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Event where IsDeleted = false and WhoId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 9,\n                \"durationMs\": 398,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"FeedComment\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from FeedComment where FeedItemId in('0D5WI00000rGD6k0AG','0D5WI00000rGD6l0AG','0D5WI00000rGD6m0AG','0D5WI00000rGD6n0AG','0D5WI00000rGD6o0AG','0D5WI00000rGD6p0AG','0D5WI00000rGD6q0AG','0D5WI00000rGD6r0AG','0D5WI00000rGD6s0AG','0D5WI00000rGD6t0AG','0D5WI00000rGD6u0AG','0D5WI00000rGD6v0AG','0D5WI00000rGD6w0AG','0D5WI00000rGD6x0AG','0D5WI00000rGD6y0AG','0D5WI00000rGD6z0AG','0D5WI00000rGD700AG','0D5WI00000rGD710AG','0D5WI00000rGD720AG','0D5WI00000rGD730AG','0D5WI00000rGD740AG','0D5WI00000rGD750AG','0D5WI00000rGD760AG','0D5WI00000rGD770AG','0D5WI00000rGD780AG','0D5WI00000rGD790AG','0D5WI00000rGD7a0AG','0D5WI00000rGD7A0AW','0D5WI00000rGD7b0AG','0D5WI00000rGD7B0AW','0D5WI00000rGD7c0AG','0D5WI00000rGD7C0AW','0D5WI00000rGD7D0AW','0D5WI00000rGD7E0AW','0D5WI00000rGD7F0AW','0D5WI00000rGD7G0AW','0D5WI00000rGD7H0AW','0D5WI00000rGD7I0AW','0D5WI00000rGD7J0AW','0D5WI00000rGD7K0AW','0D5WI00000rGD7L0AW','0D5WI00000rGD7M0AW','0D5WI00000rGD7N0AW','0D5WI00000rGD7O0AW','0D5WI00000rGD7P0AW','0D5WI00000rGD7Q0AW','0D5WI00000rGD7R0AW','0D5WI00000rGD7S0AW','0D5WI00000rGD7T0AW','0D5WI00000rGD7U0AW','0D5WI00000rGD7V0AW','0D5WI00000rGD7W0AW','0D5WI00000rGD7X0AW','0D5WI00000rGD7Y0AW','0D5WI00000rGD7Z0AW','0D5WI00000rGfGn0AK','0D5WI00000rGfGo0AK','0D5WI00000rGfGp0AK','0D5WI00000rGfGq0AK','0D5WI00000rGfGr0AK','0D5WI00000rGfGs0AK','0D5WI00000rGfGt0AK','0D5WI00000rGfGu0AK','0D5WI00000rGfGv0AK','0D5WI00000rGfGw0AK','0D5WI00000rGfGx0AK','0D5WI00000rGfGy0AK','0D5WI00000rGfGz0AK','0D5WI00000rGfH00AK','0D5WI00000rGfH10AK','0D5WI00000rGfH20AK','0D5WI00000rGfH30AK','0D5WI00000rGfH40AK','0D5WI00000rGfH50AK','0D5WI00000rGfH60AK','0D5WI00000rGfH70AK','0D5WI00000rGfH80AK','0D5WI00000rGfH90AK','0D5WI00000rGfHA0A0','0D5WI00000rGfHB0A0','0D5WI00000rGfHC0A0','0D5WI00000rGfHD0A0','0D5WI00000rGfHE0A0','0D5WI00000rGfHF0A0','0D5WI00000rGfHG0A0','0D5WI00000rGfHH0A0','0D5WI00000rGfHI0A0','0D5WI00000rGfHJ0A0','0D5WI00000rGfHK0A0','0D5WI00000rGfHL0A0','0D5WI00000rGfHM0A0','0D5WI00000rGfHN0A0','0D5WI00000rGfHO0A0','0D5WI00000rGfHP0A0','0D5WI00000rGfHQ0A0','0D5WI00000rGfHR0A0','0D5WI00000rGfHS0A0','0D5WI00000rGfHT0A0','0D5WI00000rGfHU0A0','0D5WI00000rGfHV0A0') order by Id desc\",\n                \"apiCalls\": 5,\n                \"durationMs\": 87,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"FeedItem\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,ParentId,Type,CreatedById,CreatedDate,IsDeleted,LastModifiedDate,SystemModstamp,Revision,LastEditById,LastEditDate,CommentCount,LikeCount,Title,Body,LinkUrl,IsRichText,RelatedRecordId,InsertedById,NetworkScope,Visibility,BestCommentId,HasContent,HasLink,HasFeedEntity,HasVerifiedComment,IsClosed,Status from FeedItem where id in('0D5WI00000rGfHQ0A0','0D5WI00000rGD7X0AW','0D5WI00000rGD6o0AG','0D5WI00000rGD750AG','0D5WI00000rGD7c0AG','0D5WI00000rGD7E0AW','0D5WI00000rGfH30AK','0D5WI00000rGfHF0A0','0D5WI00000rGD6w0AG','0D5WI00000rGfGx0AK','0D5WI00000rGD7P0AW','0D5WI00000rGfHT0A0','0D5WI00000rGfGp0AK','0D5WI00000rGD6l0AG','0D5WI00000rGfHN0A0','0D5WI00000rGD7U0AW','0D5WI00000rGD720AG','0D5WI00000rGfHA0A0','0D5WI00000rGD7J0AW','0D5WI00000rGD7B0AW','0D5WI00000rGfH60AK','0D5WI00000rGD7M0AW','0D5WI00000rGfHI0A0','0D5WI00000rGD6t0AG','0D5WI00000rGfGu0AK','0D5WI00000rGD6m0AG','0D5WI00000rGfH90AK','0D5WI00000rGD7V0AW','0D5WI00000rGfHO0A0','0D5WI00000rGD730AG','0D5WI00000rGfH10AK','0D5WI00000rGD7K0AW','0D5WI00000rGD7a0AG','0D5WI00000rGD7C0AW','0D5WI00000rGD7N0AW','0D5WI00000rGfGv0AK','0D5WI00000rGfHD0A0','0D5WI00000rGD700AG','0D5WI00000rGD6u0AG','0D5WI00000rGfGn0AK','0D5WI00000rGD780AG','0D5WI00000rGD6r0AG','0D5WI00000rGfHL0A0','0D5WI00000rGD7H0AW','0D5WI00000rGfH40AK','0D5WI00000rGD6z0AG','0D5WI00000rGfHG0A0','0D5WI00000rGD7S0AW','0D5WI00000rGfGs0AK','0D5WI00000rGD790AG','0D5WI00000rGfH70AK','0D5WI00000rGD6k0AG','0D5WI00000rGfHM0A0','0D5WI00000rGD6s0AG','0D5WI00000rGD7I0AW','0D5WI00000rGfHB0A0','0D5WI00000rGD7A0AW','0D5WI00000rGD7L0AW','0D5WI00000rGfHJ0A0','0D5WI00000rGD7T0AW','0D5WI00000rGfGt0AK','0D5WI00000rGfHR0A0','0D5WI00000rGD7Y0AW','0D5WI00000rGD6p0AG','0D5WI00000rGD760AG','0D5WI00000rGfH20AK','0D5WI00000rGD7F0AW','0D5WI00000rGfGy0AK','0D5WI00000rGD6x0AG','0D5WI00000rGfHE0A0','0D5WI00000rGD7Q0AW','0D5WI00000rGD710AG','0D5WI00000rGfHU0A0','0D5WI00000rGfGq0AK','0D5WI00000rGD7Z0AW','0D5WI00000rGfHS0A0','0D5WI00000rGD770AG','0D5WI00000rGD6q0AG','0D5WI00000rGfH50AK','0D5WI00000rGD7G0AW','0D5WI00000rGD6y0AG','0D5WI00000rGfGz0AK','0D5WI00000rGfHH0A0','0D5WI00000rGD7R0AW','0D5WI00000rGfGr0AK','0D5WI00000rGfHV0A0','0D5WI00000rGD6n0AG','0D5WI00000rGfH80AK','0D5WI00000rGfHP0A0','0D5WI00000rGD7W0AW','0D5WI00000rGD740AG','0D5WI00000rGD7b0AG','0D5WI00000rGfHC0A0','0D5WI00000rGfH00AK','0D5WI00000rGD7D0AW','0D5WI00000rGD7O0AW','0D5WI00000rGfGw0AK','0D5WI00000rGD6v0AG','0D5WI00000rGfHK0A0','0D5WI00000rGfGo0AK') order by Id desc\",\n                \"apiCalls\": 14,\n                \"durationMs\": 798,\n                \"records\": {\n                    \"total\": 100,\n                    \"success\": 100,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 100,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"FeedRevision\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from FeedRevision where FeedEntityId in('0D5WI00000rGD6k0AG','0D5WI00000rGD6l0AG','0D5WI00000rGD6m0AG','0D5WI00000rGD6n0AG','0D5WI00000rGD6o0AG','0D5WI00000rGD6p0AG','0D5WI00000rGD6q0AG','0D5WI00000rGD6r0AG','0D5WI00000rGD6s0AG','0D5WI00000rGD6t0AG','0D5WI00000rGD6u0AG','0D5WI00000rGD6v0AG','0D5WI00000rGD6w0AG','0D5WI00000rGD6x0AG','0D5WI00000rGD6y0AG','0D5WI00000rGD6z0AG','0D5WI00000rGD700AG','0D5WI00000rGD710AG','0D5WI00000rGD720AG','0D5WI00000rGD730AG','0D5WI00000rGD740AG','0D5WI00000rGD750AG','0D5WI00000rGD760AG','0D5WI00000rGD770AG','0D5WI00000rGD780AG','0D5WI00000rGD790AG','0D5WI00000rGD7a0AG','0D5WI00000rGD7A0AW','0D5WI00000rGD7b0AG','0D5WI00000rGD7B0AW','0D5WI00000rGD7c0AG','0D5WI00000rGD7C0AW','0D5WI00000rGD7D0AW','0D5WI00000rGD7E0AW','0D5WI00000rGD7F0AW','0D5WI00000rGD7G0AW','0D5WI00000rGD7H0AW','0D5WI00000rGD7I0AW','0D5WI00000rGD7J0AW','0D5WI00000rGD7K0AW','0D5WI00000rGD7L0AW','0D5WI00000rGD7M0AW','0D5WI00000rGD7N0AW','0D5WI00000rGD7O0AW','0D5WI00000rGD7P0AW','0D5WI00000rGD7Q0AW','0D5WI00000rGD7R0AW','0D5WI00000rGD7S0AW','0D5WI00000rGD7T0AW','0D5WI00000rGD7U0AW','0D5WI00000rGD7V0AW','0D5WI00000rGD7W0AW','0D5WI00000rGD7X0AW','0D5WI00000rGD7Y0AW','0D5WI00000rGD7Z0AW','0D5WI00000rGfGn0AK','0D5WI00000rGfGo0AK','0D5WI00000rGfGp0AK','0D5WI00000rGfGq0AK','0D5WI00000rGfGr0AK','0D5WI00000rGfGs0AK','0D5WI00000rGfGt0AK','0D5WI00000rGfGu0AK','0D5WI00000rGfGv0AK','0D5WI00000rGfGw0AK','0D5WI00000rGfGx0AK','0D5WI00000rGfGy0AK','0D5WI00000rGfGz0AK','0D5WI00000rGfH00AK','0D5WI00000rGfH10AK','0D5WI00000rGfH20AK','0D5WI00000rGfH30AK','0D5WI00000rGfH40AK','0D5WI00000rGfH50AK','0D5WI00000rGfH60AK','0D5WI00000rGfH70AK','0D5WI00000rGfH80AK','0D5WI00000rGfH90AK','0D5WI00000rGfHA0A0','0D5WI00000rGfHB0A0','0D5WI00000rGfHC0A0','0D5WI00000rGfHD0A0','0D5WI00000rGfHE0A0','0D5WI00000rGfHF0A0','0D5WI00000rGfHG0A0','0D5WI00000rGfHH0A0','0D5WI00000rGfHI0A0','0D5WI00000rGfHJ0A0','0D5WI00000rGfHK0A0','0D5WI00000rGfHL0A0','0D5WI00000rGfHM0A0','0D5WI00000rGfHN0A0','0D5WI00000rGfHO0A0','0D5WI00000rGfHP0A0','0D5WI00000rGfHQ0A0','0D5WI00000rGfHR0A0','0D5WI00000rGfHS0A0','0D5WI00000rGfHT0A0','0D5WI00000rGfHU0A0','0D5WI00000rGfHV0A0') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 80,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"FeedSignal\",\n                \"isChild\": true,\n                \"querySupported\": false,\n                \"query\": null,\n                \"apiCalls\": 4,\n                \"durationMs\": 76,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"ForecastingItem__hd\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ForecastingItem__hd where ParentId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 5,\n                \"durationMs\": 208,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"ForecastingSrcRecJudgment\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ForecastingSrcRecJudgment where ReferenceObjectId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 55,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Invoice\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Invoice where BillingAccountId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 89,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"ListEmailIndividualRecipient\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ListEmailIndividualRecipient where RecipientId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 54,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"MatchingInformation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from MatchingInformation where SFDCIdId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 55,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"NetworkFeedResponseMetric\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from NetworkFeedResponseMetric where FeedItemId in('0D5WI00000rGD6k0AG','0D5WI00000rGD6l0AG','0D5WI00000rGD6m0AG','0D5WI00000rGD6n0AG','0D5WI00000rGD6o0AG','0D5WI00000rGD6p0AG','0D5WI00000rGD6q0AG','0D5WI00000rGD6r0AG','0D5WI00000rGD6s0AG','0D5WI00000rGD6t0AG','0D5WI00000rGD6u0AG','0D5WI00000rGD6v0AG','0D5WI00000rGD6w0AG','0D5WI00000rGD6x0AG','0D5WI00000rGD6y0AG','0D5WI00000rGD6z0AG','0D5WI00000rGD700AG','0D5WI00000rGD710AG','0D5WI00000rGD720AG','0D5WI00000rGD730AG','0D5WI00000rGD740AG','0D5WI00000rGD750AG','0D5WI00000rGD760AG','0D5WI00000rGD770AG','0D5WI00000rGD780AG','0D5WI00000rGD790AG','0D5WI00000rGD7a0AG','0D5WI00000rGD7A0AW','0D5WI00000rGD7b0AG','0D5WI00000rGD7B0AW','0D5WI00000rGD7c0AG','0D5WI00000rGD7C0AW','0D5WI00000rGD7D0AW','0D5WI00000rGD7E0AW','0D5WI00000rGD7F0AW','0D5WI00000rGD7G0AW','0D5WI00000rGD7H0AW','0D5WI00000rGD7I0AW','0D5WI00000rGD7J0AW','0D5WI00000rGD7K0AW','0D5WI00000rGD7L0AW','0D5WI00000rGD7M0AW','0D5WI00000rGD7N0AW','0D5WI00000rGD7O0AW','0D5WI00000rGD7P0AW','0D5WI00000rGD7Q0AW','0D5WI00000rGD7R0AW','0D5WI00000rGD7S0AW','0D5WI00000rGD7T0AW','0D5WI00000rGD7U0AW','0D5WI00000rGD7V0AW','0D5WI00000rGD7W0AW','0D5WI00000rGD7X0AW','0D5WI00000rGD7Y0AW','0D5WI00000rGD7Z0AW','0D5WI00000rGfGn0AK','0D5WI00000rGfGo0AK','0D5WI00000rGfGp0AK','0D5WI00000rGfGq0AK','0D5WI00000rGfGr0AK','0D5WI00000rGfGs0AK','0D5WI00000rGfGt0AK','0D5WI00000rGfGu0AK','0D5WI00000rGfGv0AK','0D5WI00000rGfGw0AK','0D5WI00000rGfGx0AK','0D5WI00000rGfGy0AK','0D5WI00000rGfGz0AK','0D5WI00000rGfH00AK','0D5WI00000rGfH10AK','0D5WI00000rGfH20AK','0D5WI00000rGfH30AK','0D5WI00000rGfH40AK','0D5WI00000rGfH50AK','0D5WI00000rGfH60AK','0D5WI00000rGfH70AK','0D5WI00000rGfH80AK','0D5WI00000rGfH90AK','0D5WI00000rGfHA0A0','0D5WI00000rGfHB0A0','0D5WI00000rGfHC0A0','0D5WI00000rGfHD0A0','0D5WI00000rGfHE0A0','0D5WI00000rGfHF0A0','0D5WI00000rGfHG0A0','0D5WI00000rGfHH0A0','0D5WI00000rGfHI0A0','0D5WI00000rGfHJ0A0','0D5WI00000rGfHK0A0','0D5WI00000rGfHL0A0','0D5WI00000rGfHM0A0','0D5WI00000rGfHN0A0','0D5WI00000rGfHO0A0','0D5WI00000rGfHP0A0','0D5WI00000rGfHQ0A0','0D5WI00000rGfHR0A0','0D5WI00000rGfHS0A0','0D5WI00000rGfHT0A0','0D5WI00000rGfHU0A0','0D5WI00000rGfHV0A0') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 81,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"NetworkModeration\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from NetworkModeration where EntityId in('0D5WI00000rGD6k0AG','0D5WI00000rGD6l0AG','0D5WI00000rGD6m0AG','0D5WI00000rGD6n0AG','0D5WI00000rGD6o0AG','0D5WI00000rGD6p0AG','0D5WI00000rGD6q0AG','0D5WI00000rGD6r0AG','0D5WI00000rGD6s0AG','0D5WI00000rGD6t0AG','0D5WI00000rGD6u0AG','0D5WI00000rGD6v0AG','0D5WI00000rGD6w0AG','0D5WI00000rGD6x0AG','0D5WI00000rGD6y0AG','0D5WI00000rGD6z0AG','0D5WI00000rGD700AG','0D5WI00000rGD710AG','0D5WI00000rGD720AG','0D5WI00000rGD730AG','0D5WI00000rGD740AG','0D5WI00000rGD750AG','0D5WI00000rGD760AG','0D5WI00000rGD770AG','0D5WI00000rGD780AG','0D5WI00000rGD790AG','0D5WI00000rGD7a0AG','0D5WI00000rGD7A0AW','0D5WI00000rGD7b0AG','0D5WI00000rGD7B0AW','0D5WI00000rGD7c0AG','0D5WI00000rGD7C0AW','0D5WI00000rGD7D0AW','0D5WI00000rGD7E0AW','0D5WI00000rGD7F0AW','0D5WI00000rGD7G0AW','0D5WI00000rGD7H0AW','0D5WI00000rGD7I0AW','0D5WI00000rGD7J0AW','0D5WI00000rGD7K0AW','0D5WI00000rGD7L0AW','0D5WI00000rGD7M0AW','0D5WI00000rGD7N0AW','0D5WI00000rGD7O0AW','0D5WI00000rGD7P0AW','0D5WI00000rGD7Q0AW','0D5WI00000rGD7R0AW','0D5WI00000rGD7S0AW','0D5WI00000rGD7T0AW','0D5WI00000rGD7U0AW','0D5WI00000rGD7V0AW','0D5WI00000rGD7W0AW','0D5WI00000rGD7X0AW','0D5WI00000rGD7Y0AW','0D5WI00000rGD7Z0AW','0D5WI00000rGfGn0AK','0D5WI00000rGfGo0AK','0D5WI00000rGfGp0AK','0D5WI00000rGfGq0AK','0D5WI00000rGfGr0AK','0D5WI00000rGfGs0AK','0D5WI00000rGfGt0AK','0D5WI00000rGfGu0AK','0D5WI00000rGfGv0AK','0D5WI00000rGfGw0AK','0D5WI00000rGfGx0AK','0D5WI00000rGfGy0AK','0D5WI00000rGfGz0AK','0D5WI00000rGfH00AK','0D5WI00000rGfH10AK','0D5WI00000rGfH20AK','0D5WI00000rGfH30AK','0D5WI00000rGfH40AK','0D5WI00000rGfH50AK','0D5WI00000rGfH60AK','0D5WI00000rGfH70AK','0D5WI00000rGfH80AK','0D5WI00000rGfH90AK','0D5WI00000rGfHA0A0','0D5WI00000rGfHB0A0','0D5WI00000rGfHC0A0','0D5WI00000rGfHD0A0','0D5WI00000rGfHE0A0','0D5WI00000rGfHF0A0','0D5WI00000rGfHG0A0','0D5WI00000rGfHH0A0','0D5WI00000rGfHI0A0','0D5WI00000rGfHJ0A0','0D5WI00000rGfHK0A0','0D5WI00000rGfHL0A0','0D5WI00000rGfHM0A0','0D5WI00000rGfHN0A0','0D5WI00000rGfHO0A0','0D5WI00000rGfHP0A0','0D5WI00000rGfHQ0A0','0D5WI00000rGfHR0A0','0D5WI00000rGfHS0A0','0D5WI00000rGfHT0A0','0D5WI00000rGfHU0A0','0D5WI00000rGfHV0A0') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 76,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"NetworkUserHistoryRecent\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": null,\n                \"apiCalls\": 5,\n                \"durationMs\": 104,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Note\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Note where ParentId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 7,\n                \"durationMs\": 183,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"ObjectRelatedUrl\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ObjectRelatedUrl where ParentId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 73,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Opportunity\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,IsDeleted,AccountId,Name,Description,StageName,Amount,Probability,CloseDate,Type,NextStep,LeadSource,IsClosed,IsWon,ForecastCategory,ForecastCategoryName,CampaignId,HasOpportunityLineItem,Pricebook2Id,OwnerId,CreatedDate,AgeInDays,CreatedById,LastModifiedDate,LastModifiedById,SystemModstamp,LastActivityDate,LastActivityInDays,PushCount,LastStageChangeDate,LastStageChangeInDays,FiscalQuarter,FiscalYear,Fiscal,ContactId,LastViewedDate,LastReferencedDate,SyncedQuoteId,ContractId,HasOpenActivity,HasOverdueTask,LastAmountChangedHistoryId,LastCloseDateChangedHistoryId,IsPriorityRecord,Budget_Confirmed__c,Discovery_Completed__c,ROI_Analysis_Completed__c,CRMforNonProfit__Contact__c,Loss_Reason__c,CRMforNonProfit__Darujme_cz_ID__c from Opportunity where id in('006WI00000JUhy7YAD','006WI00000JUhxiYAD','006WI00000JUhyeYAD','006WI00000JUhyGYAT','006WI00000JUhyRYAT','006WI00000JUhyxYAD','006WI00000JUhyZYAT','006WI00000JUhxVYAT','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhxaYAD','006WI00000JUhxqYAD','006WI00000JUhxyYAD','006WI00000JUhxnYAD','006WI00000JUhyDYAT','006WI00000JUhz0YAD','006WI00000JUhybYAD','006WI00000JUhyjYAD','006WI00000JUhy4YAD','006WI00000JUhysYAD','006WI00000JUhyWYAT','006WI00000JUhyLYAT','006WI00000JUhxfYAD','006WI00000JUhxSYAT','006WI00000JUhxvYAD','006WI00000JUhyAYAT','006WI00000JUhxkYAD','006WI00000JUhygYAD','006WI00000JUhyTYAT','006WI00000JUhy1YAD','006WI00000JUhy9YAD','006WI00000JUhyvYAD','006WI00000JUhxcYAD','006WI00000JUhynYAD','006WI00000JUhyIYAT','006WI00000JUhxsYAD','006WI00000JUhxXYAT','006WI00000JUhydYAD','006WI00000JUhyYYAT','006WI00000JUhyyYAD','006WI00000JUhyFYAT','006WI00000JUhxhYAD','006WI00000JUhyQYAT','006WI00000JUhy6YAD','006WI00000JUhyqYAD','006WI00000JUhxxYAD','006WI00000JUhyNYAT','006WI00000JUhxpYAD','006WI00000JUhz2YAD','006WI00000JUhxUYAT','006WI00000JUhxmYAD','006WI00000JUhyCYAT','006WI00000JUhyaYAD','006WI00000JUhyiYAD','006WI00000JUhytYAD','006WI00000JUhy3YAD','006WI00000JUhyVYAT','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhxeYAD','006WI00000JUhxRYAT','006WI00000JUhxuYAD','006WI00000JUhxZYAT','006WI00000JUhy8YAD','006WI00000JUhxjYAD','006WI00000JUhyfYAD','006WI00000JUhySYAT','006WI00000JUhywYAD','006WI00000JUhxbYAD','006WI00000JUhxWYAT','006WI00000JUhyoYAD','006WI00000JUhyPYAT','006WI00000JUhy0YAD','006WI00000JUhxrYAD','006WI00000JUhyHYAT','006WI00000JUhxzYAD','006WI00000JUhyzYAD','006WI00000JUhycYAD','006WI00000JUhxoYAD','006WI00000JUhz1YAD','006WI00000JUhyEYAT','006WI00000JUhxgYAD','006WI00000JUhykYAD','006WI00000JUhy5YAD','006WI00000JUhyrYAD','006WI00000JUhyXYAT','006WI00000JUhyMYAT','006WI00000JUhxTYAT','006WI00000JUhxwYAD','006WI00000JUhxlYAD','006WI00000JUhyBYAT','006WI00000JUhyhYAD','006WI00000JUhy2YAD','006WI00000JUhyUYAT','006WI00000JUhyuYAD','006WI00000JUhymYAD','006WI00000JUhxdYAD','006WI00000JUhyJYAT','006WI00000JUhxtYAD','006WI00000JUhxYYAT') order by Id desc\",\n                \"apiCalls\": 16,\n                \"durationMs\": 698,\n                \"records\": {\n                    \"total\": 100,\n                    \"success\": 100,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 100,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"OpportunityLineItem\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from OpportunityLineItem where OpportunityId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 68,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"OpportunityRelatedDeleteLog\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from OpportunityRelatedDeleteLog where OpportunityId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 166,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"OpportunityShare\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from OpportunityShare where OpportunityId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 96,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Opportunity__hd\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select Id,ParentId,IsDeleted,ValidFromDate,ValidToDate,CreatedDate,CreatedById,SystemModstamp,Amount__hpr,Amount__hst,CloseDate__hpr,CloseDate__hst,StageName__hpr,StageName__hst,Probability__hpr,Probability__hst,ForecastCategoryName__hpr,ForecastCategoryName__hst,NextStep__hpr,NextStep__hst from Opportunity__hd where id in('h00WI00000aLPvFYAW','h00WI00000aLPupYAG','h00WI00000aLPw2YAG','h00WI00000aLPvwYAG','h00WI00000aLPvYYAW','h00WI00000aLPwBYAW','h00WI00000aLPvoYAG','h00WI00000aLPuxYAG','h00WI00000aLPvVYAW','h00WI00000aLPv6YAG','h00WI00000aLPvaYAG','h00WI00000aLPvNYAW','h00WI00000aLPvgYAG','h00WI00000aLPvCYAW','h00WI00000aLPvzYAG','h00WI00000aLPuuYAG','h00WI00000aLPw7YAG','h00WI00000aLPumYAG','h00WI00000aLPwHYAW','h00WI00000aLPvrYAG','h00WI00000aLPvSYAW','h00WI00000aLPv3YAG','h00WI00000aLPvjYAG','h00WI00000aLPvKYAW','h00WI00000aLPurYAG','h00WI00000aLPw4YAG','h00WI00000aLPv8YAG','h00WI00000aLPwDYAW','h00WI00000aLPwKYAW','h00WI00000aLPujYAG','h00WI00000aLPuzYAG','h00WI00000aLPvPYAW','h00WI00000aLPv0YAG','h00WI00000aLPvuYAG','h00WI00000aLPvmYAG','h00WI00000aLPvHYAW','h00WI00000aLPvcYAG','h00WI00000aLPuoYAG','h00WI00000aLPvEYAW','h00WI00000aLPw1YAG','h00WI00000aLPvxYAG','h00WI00000aLPvXYAW','h00WI00000aLPwAYAW','h00WI00000aLPvpYAG','h00WI00000aLPuwYAG','h00WI00000aLPw9YAG','h00WI00000aLPvUYAW','h00WI00000aLPv5YAG','h00WI00000aLPvMYAW','h00WI00000aLPvhYAG','h00WI00000aLPutYAG','h00WI00000aLPw6YAG','h00WI00000aLPulYAG','h00WI00000aLPwFYAW','h00WI00000aLPwIYAW','h00WI00000aLPvRYAW','h00WI00000aLPvsYAG','h00WI00000aLPvkYAG','h00WI00000aLPvBYAW','h00WI00000aLPv2YAG','h00WI00000aLPveYAG','h00WI00000aLPvJYAW','h00WI00000aLPuqYAG','h00WI00000aLPw3YAG','h00WI00000aLPv7YAG','h00WI00000aLPvZYAW','h00WI00000aLPwCYAW','h00WI00000aLPvOYAW','h00WI00000aLPuyYAG','h00WI00000aLPvvYAG','h00WI00000aLPvbYAG','h00WI00000aLPvnYAG','h00WI00000aLPvGYAW','h00WI00000aLPvfYAG','h00WI00000aLPunYAG','h00WI00000aLPvDYAW','h00WI00000aLPw0YAG','h00WI00000aLPvyYAG','h00WI00000aLPvWYAW','h00WI00000aLPvqYAG','h00WI00000aLPwGYAW','h00WI00000aLPuvYAG','h00WI00000aLPw8YAG','h00WI00000aLPvTYAW','h00WI00000aLPv4YAG','h00WI00000aLPviYAG','h00WI00000aLPvLYAW','h00WI00000aLPv9YAG','h00WI00000aLPusYAG','h00WI00000aLPw5YAG','h00WI00000aLPwJYAW','h00WI00000aLPwEYAW','h00WI00000aLPukYAG','h00WI00000aLPvQYAW','h00WI00000aLPvtYAG','h00WI00000aLPvlYAG','h00WI00000aLPvAYAW','h00WI00000aLPv1YAG','h00WI00000aLPvdYAG','h00WI00000aLPvIYAW') order by Id desc\",\n                \"apiCalls\": 15,\n                \"durationMs\": 593,\n                \"records\": {\n                    \"total\": 100,\n                    \"success\": 100,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 100,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Order\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Order where AccountId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 49,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"PendingServiceRouting\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from PendingServiceRouting where WorkItemId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 9,\n                \"durationMs\": 288,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"PendingServiceRoutingInteractionInfo\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from PendingServiceRoutingInteractionInfo where TargetObjectId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 10,\n                \"durationMs\": 416,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Quote\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Quote where OpportunityId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 65,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"ScorecardAssociation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from ScorecardAssociation where TargetEntityId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 56,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"SocialPersona\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from SocialPersona where ParentId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 68,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"SurveyInvitation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from SurveyInvitation where ParticipantId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 4,\n                \"durationMs\": 179,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"Task\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from Task where IsDeleted = false and WhatId in('001WI000010nCHaYAM','001WI000010nCHbYAM','001WI000010nCHcYAM','001WI000010nCHdYAM','001WI000010nCHeYAM','001WI000010nCHfYAM','001WI000010nCHgYAM','001WI000010nCHhYAM','001WI000010nCHIYA2','001WI000010nCHiYAM','001WI000010nCHJYA2','001WI000010nCHjYAM','001WI000010nCHKYA2','001WI000010nCHkYAM','001WI000010nCHLYA2','001WI000010nCHlYAM','001WI000010nCHMYA2','001WI000010nCHmYAM','001WI000010nCHNYA2','001WI000010nCHnYAM','001WI000010nCHOYA2','001WI000010nCHoYAM','001WI000010nCHPYA2','001WI000010nCHpYAM','001WI000010nCHQYA2','001WI000010nCHqYAM','001WI000010nCHRYA2','001WI000010nCHrYAM','001WI000010nCHSYA2','001WI000010nCHsYAM','001WI000010nCHTYA2','001WI000010nCHtYAM','001WI000010nCHUYA2','001WI000010nCHuYAM','001WI000010nCHVYA2','001WI000010nCHvYAM','001WI000010nCHWYA2','001WI000010nCHwYAM','001WI000010nCHXYA2','001WI000010nCHxYAM','001WI000010nCHYYA2','001WI000010nCHyYAM','001WI000010nCHZYA2','001WI000010nCHzYAM','001WI000010nCI0YAM','001WI000010nCI1YAM','001WI000010nCI2YAM','001WI000010nCI3YAM','001WI000010nCI4YAM','001WI000010nCI5YAM','001WI000010nCI6YAM','001WI000010nCI7YAM','001WI000010nCI8YAM','001WI000010nCI9YAM','001WI000010nCIAYA2','001WI000010nCIaYAM','001WI000010nCIBYA2','001WI000010nCIbYAM','001WI000010nCICYA2','001WI000010nCIcYAM','001WI000010nCIDYA2','001WI000010nCIdYAM','001WI000010nCIEYA2','001WI000010nCIeYAM','001WI000010nCIFYA2','001WI000010nCIfYAM','001WI000010nCIGYA2','001WI000010nCIgYAM','001WI000010nCIHYA2','001WI000010nCIhYAM','001WI000010nCIIYA2','001WI000010nCIiYAM','001WI000010nCIJYA2','001WI000010nCIjYAM','001WI000010nCIKYA2','001WI000010nCIkYAM','001WI000010nCILYA2','001WI000010nCIlYAM','001WI000010nCIMYA2','001WI000010nCImYAM','001WI000010nCINYA2','001WI000010nCInYAM','001WI000010nCIOYA2','001WI000010nCIoYAM','001WI000010nCIPYA2','001WI000010nCIpYAM','001WI000010nCIQYA2','001WI000010nCIqYAM','001WI000010nCIRYA2','001WI000010nCISYA2','001WI000010nCITYA2','001WI000010nCIUYA2','001WI000010nCIVYA2','001WI000010nCIWYA2','001WI000010nCIXYA2','001WI000010nCIYYA2','001WI000010nCIZYA2','001WI000010oMHlYAM','001WI000010oMHmYAM','001WI000010oMHnYAM') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 95,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"TaskRelation\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from TaskRelation where RelationId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 7,\n                \"durationMs\": 174,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"UserDefinedLabelAssignment\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from UserDefinedLabelAssignment where ItemId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 9,\n                \"durationMs\": 228,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"UserEmailPreferredPerson\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from UserEmailPreferredPerson where PersonRecordId in('003WI00000qvexaYAA','003WI00000qvexbYAA','003WI00000qvexcYAA','003WI00000qvexdYAA','003WI00000qvexeYAA','003WI00000qvexfYAA','003WI00000qvexgYAA','003WI00000qvexhYAA','003WI00000qvexiYAA','003WI00000qvexjYAA','003WI00000qvexJYAQ','003WI00000qvexkYAA','003WI00000qvexKYAQ','003WI00000qvexlYAA','003WI00000qvexLYAQ','003WI00000qvexmYAA','003WI00000qvexMYAQ','003WI00000qvexnYAA','003WI00000qvexNYAQ','003WI00000qvexoYAA','003WI00000qvexOYAQ','003WI00000qvexpYAA','003WI00000qvexPYAQ','003WI00000qvexqYAA','003WI00000qvexQYAQ','003WI00000qvexrYAA','003WI00000qvexRYAQ','003WI00000qvexsYAA','003WI00000qvexSYAQ','003WI00000qvextYAA','003WI00000qvexTYAQ','003WI00000qvexuYAA','003WI00000qvexUYAQ','003WI00000qvexvYAA','003WI00000qvexVYAQ','003WI00000qvexwYAA','003WI00000qvexWYAQ','003WI00000qvexxYAA','003WI00000qvexXYAQ','003WI00000qvexyYAA','003WI00000qvexYYAQ','003WI00000qvexzYAA','003WI00000qvexZYAQ','003WI00000qvey0YAA','003WI00000qvey1YAA','003WI00000qvey2YAA','003WI00000qvey3YAA','003WI00000qvey4YAA','003WI00000qvey5YAA','003WI00000qvey6YAA','003WI00000qvey7YAA','003WI00000qvey8YAA','003WI00000qvey9YAA','003WI00000qveyaYAA','003WI00000qveyAYAQ','003WI00000qveybYAA','003WI00000qveyBYAQ','003WI00000qveycYAA','003WI00000qveyCYAQ','003WI00000qveydYAA','003WI00000qveyDYAQ','003WI00000qveyeYAA','003WI00000qveyEYAQ','003WI00000qveyfYAA','003WI00000qveyFYAQ','003WI00000qveygYAA','003WI00000qveyGYAQ','003WI00000qveyhYAA','003WI00000qveyHYAQ','003WI00000qveyiYAA','003WI00000qveyIYAQ','003WI00000qveyjYAA','003WI00000qveyJYAQ','003WI00000qveykYAA','003WI00000qveyKYAQ','003WI00000qveylYAA','003WI00000qveyLYAQ','003WI00000qveymYAA','003WI00000qveyMYAQ','003WI00000qveynYAA','003WI00000qveyNYAQ','003WI00000qveyoYAA','003WI00000qveyOYAQ','003WI00000qveypYAA','003WI00000qveyPYAQ','003WI00000qveyqYAA','003WI00000qveyQYAQ','003WI00000qveyRYAQ','003WI00000qveySYAQ','003WI00000qveyTYAQ','003WI00000qveyUYAQ','003WI00000qveyVYAQ','003WI00000qveyWYAQ','003WI00000qveyXYAQ','003WI00000qveyYYAQ','003WI00000qveyZYAQ','003WI00000qwCfaYAE','003WI00000qwCfbYAE','003WI00000qwCfcYAE','003WI00000qwCfZYAU') order by Id desc\",\n                \"apiCalls\": 3,\n                \"durationMs\": 57,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            },\n            {\n                \"name\": \"UserPrioritizedRecord\",\n                \"isChild\": true,\n                \"querySupported\": true,\n                \"query\": \"select id from UserPrioritizedRecord where TargetId in('006WI00000JUhxaYAD','006WI00000JUhxbYAD','006WI00000JUhxcYAD','006WI00000JUhxdYAD','006WI00000JUhxeYAD','006WI00000JUhxfYAD','006WI00000JUhxgYAD','006WI00000JUhxhYAD','006WI00000JUhxiYAD','006WI00000JUhxjYAD','006WI00000JUhxkYAD','006WI00000JUhxlYAD','006WI00000JUhxmYAD','006WI00000JUhxnYAD','006WI00000JUhxoYAD','006WI00000JUhxpYAD','006WI00000JUhxqYAD','006WI00000JUhxrYAD','006WI00000JUhxRYAT','006WI00000JUhxsYAD','006WI00000JUhxSYAT','006WI00000JUhxtYAD','006WI00000JUhxTYAT','006WI00000JUhxuYAD','006WI00000JUhxUYAT','006WI00000JUhxvYAD','006WI00000JUhxVYAT','006WI00000JUhxwYAD','006WI00000JUhxWYAT','006WI00000JUhxxYAD','006WI00000JUhxXYAT','006WI00000JUhxyYAD','006WI00000JUhxYYAT','006WI00000JUhxzYAD','006WI00000JUhxZYAT','006WI00000JUhy0YAD','006WI00000JUhy1YAD','006WI00000JUhy2YAD','006WI00000JUhy3YAD','006WI00000JUhy4YAD','006WI00000JUhy5YAD','006WI00000JUhy6YAD','006WI00000JUhy7YAD','006WI00000JUhy8YAD','006WI00000JUhy9YAD','006WI00000JUhyaYAD','006WI00000JUhyAYAT','006WI00000JUhybYAD','006WI00000JUhyBYAT','006WI00000JUhycYAD','006WI00000JUhyCYAT','006WI00000JUhydYAD','006WI00000JUhyDYAT','006WI00000JUhyeYAD','006WI00000JUhyEYAT','006WI00000JUhyfYAD','006WI00000JUhyFYAT','006WI00000JUhygYAD','006WI00000JUhyGYAT','006WI00000JUhyhYAD','006WI00000JUhyHYAT','006WI00000JUhyiYAD','006WI00000JUhyIYAT','006WI00000JUhyjYAD','006WI00000JUhyJYAT','006WI00000JUhykYAD','006WI00000JUhyKYAT','006WI00000JUhylYAD','006WI00000JUhyLYAT','006WI00000JUhymYAD','006WI00000JUhyMYAT','006WI00000JUhynYAD','006WI00000JUhyNYAT','006WI00000JUhyoYAD','006WI00000JUhyOYAT','006WI00000JUhypYAD','006WI00000JUhyPYAT','006WI00000JUhyqYAD','006WI00000JUhyQYAT','006WI00000JUhyrYAD','006WI00000JUhyRYAT','006WI00000JUhysYAD','006WI00000JUhySYAT','006WI00000JUhytYAD','006WI00000JUhyTYAT','006WI00000JUhyuYAD','006WI00000JUhyUYAT','006WI00000JUhyvYAD','006WI00000JUhyVYAT','006WI00000JUhywYAD','006WI00000JUhyWYAT','006WI00000JUhyxYAD','006WI00000JUhyXYAT','006WI00000JUhyyYAD','006WI00000JUhyYYAT','006WI00000JUhyzYAD','006WI00000JUhyZYAT','006WI00000JUhz0YAD','006WI00000JUhz1YAD','006WI00000JUhz2YAD') order by Id desc\",\n                \"apiCalls\": 5,\n                \"durationMs\": 135,\n                \"records\": {\n                    \"total\": 0,\n                    \"success\": 0,\n                    \"failed\": 0,\n                    \"archivedSuccess\": 0,\n                    \"archivedFailed\": 0\n                }\n            }\n        ]\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:51:53\"\n}"}],"_postman_id":"5b18d9da-2a40-4327-8623-b1e037063f4e"},{"name":"Get Archive Logs","id":"0e90e2b1-af69-4827-b417-d853f8271638","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/archives//logs","description":"<p>Returns paginated live log lines for an archive job.</p>\n<p><strong>GET</strong> <code>/archives/&lt;archiveId&gt;/logs</code></p>\n<p><strong>Response — <code>data</code>:</strong> <code>id</code>, <code>status</code>, <code>generatedAt</code>, <code>cursor</code>, <code>hasMore</code>, <code>logs[]</code> (same shape as <em>Get Backup Logs</em>).</p>\n<p><strong>Consumes:</strong> <code>&lt;archiveId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","archives","","logs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"aa014368-1a89-41f0-9c1c-9d5721bc331e","name":"archive_logs","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/archives//logs"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:52:01 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:52:01 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:52:01 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:52:01 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:52:01 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Live logs fetched successfully.\",\n    \"data\": {\n        \"id\": \"16882884-b70f-3f58-21d9-b1a0cd3f96b5\",\n        \"status\": \"COMPLETED\",\n        \"generatedAt\": \"2026-06-03T11:52:01.062631150Z\",\n        \"cursor\": 240,\n        \"hasMore\": false,\n        \"logs\": [\n            \"16-Mar-2026 11:24:58[UTC] Backup has been initiated...\",\n            \"16-Mar-2026 11:24:58[UTC] Triggered By: vaultuser test\",\n            \"16-Mar-2026 11:24:58[UTC] Backup Start Time: 16-Mar-2026 11-24-58\",\n            \"16-Mar-2026 11:24:58[UTC] Exclude deleted records: No\",\n            \"16-Mar-2026 11:24:58[UTC] Synthetic backup enabled: No\",\n            \"16-Mar-2026 11:24:59[UTC] Backup has been initiated...\",\n            \"16-Mar-2026 11:24:59[UTC] Fetching records of Account  from Salesforce...\",\n            \"16-Mar-2026 11:25:00[UTC] Started Fetching records for Account\",\n            \"16-Mar-2026 11:25:00[UTC] Fetched 100 records from parent: Account\",\n            \"16-Mar-2026 11:25:00[UTC] Last record id of the object : Account is : 001WI000010nCHIYA2\",\n            \"16-Mar-2026 11:25:00[UTC] 001WI000010nCHIYA2 - This Id helps you identify the next chunk corresponding to the filter applied on the object along with a limit. For example, if you applied a filter on the object something like CreatedDate older than 1 year LIMIT 1000000 and if there are more than 1 million records corresponding to this filter in your object, then the next chunk of 1 million records can be identified by specifying the filter as CreatedDate older than 1 year and Id < 001WI000010nCHIYA2  LIMIT 1000000 \",\n            \"16-Mar-2026 11:25:00[UTC] Fetched a total of 100 records from Account\",\n            \"16-Mar-2026 11:25:00[UTC] Fetched all childs of Account\",\n            \"16-Mar-2026 11:25:00[UTC] hierarchial process started...\",\n            \"16-Mar-2026 11:25:16[UTC] The Child list of : Account is: [AssociatedLocationChangeEvent, NetworkFeedResponseMetric, FlowExecutionErrorEvent, Task, Invoice, VideoCall, Attachment, RecordActionHistory, MessagingEndUser, TaskRelationChangeEvent, ContractChangeEvent, MessagingSessionChangeEvent, WorkOrder, FeedItem, ProcessInstanceChangeEvent, FeedComment, SocialPersona, AgentWork, Asset, TaskRelation, CampaignMember, FulfillmentOrder, PaymentAuthAdjustment, Order, AccountContactRelationChangeEvent, EmailMessage, AIRecordInsight, AIInsightValue, AgentWorkChangeEvent, WebCartChangeEvent, AssociatedLocation, CRMforNonProfit__Pledge__c, ContentDocumentLinkChangeEvent, ReturnOrder, ApprovalWorkItem, Payment, RefundLinePayment, AccountChangeEvent, WorkOrderChangeEvent, Refund, CRMforNonProfit__NNOSettings__c, Note, PaymentMethod, FlowOrchestrationWorkItem, PaymentLineInvoice, VideoCallChangeEvent, Contract, ScorecardAssociation, VoiceCall, UserDefinedLabelAssignment, AccountTeamMember, PendingOrderSummaryChangeEvent, VoiceCallChangeEvent, CardPaymentMethod, CRMforNonProfit__Transaction__c, EventWhoRelation, ApprovalSubmission, DeclinedEventRelation, MessagingEndUserChangeEvent, ObjectRelatedUrl, Case, SocialPost, ReturnOrderChangeEvent, ContentVersionChangeEvent, DigitalWallet, ContentVersion, Opportunity, CreditMemo, Lead, TaskWhoRelation, SurveySubjectChangeEvent, PendingServiceRoutingInteractionInfo, NetworkSelfRegistration, SocialPostChangeEvent, AlternativePaymentMethod, ObjectRelatedUrlChangeEvent, EmailMessageChangeEvent, AcceptedEventRelation, UserPrioritizedRecord, WebCart, PendingOrderSummary, AuthProvider, FulfillmentOrderChangeEvent, Contact, Quote, UndecidedEventRelation, CollaborationGroupRecordChangeEvent, PaymentAuthorization, PendingServiceRoutingChangeEvent, AccountShare, MessagingSession, UserChangeEvent, Event, AccountContactRelation, SurveySubject, PendingServiceRouting]\",\n            \"16-Mar-2026 11:25:16[UTC] Task is related to Account through the fields :[WhatId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:16[UTC] Started process of child: Task\",\n            \"16-Mar-2026 11:25:17[UTC] Invoice is related to Account through the fields :[BillingAccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:17[UTC] Started process of child: Invoice\",\n            \"16-Mar-2026 11:25:18[UTC] Attachment is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:18[UTC] Started process of child: Attachment\",\n            \"16-Mar-2026 11:25:19[UTC] FeedItem is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:19[UTC] Started process of child: FeedItem\",\n            \"16-Mar-2026 11:25:19[UTC] Started process of child: FeedComment\",\n            \"16-Mar-2026 11:25:20[UTC] SocialPersona is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:20[UTC] Started process of child: SocialPersona\",\n            \"16-Mar-2026 11:25:20[UTC] AgentWork is related to Account through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:20[UTC] Started process of child: AgentWork\",\n            \"16-Mar-2026 11:25:21[UTC] Asset is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:21[UTC] Started process of child: Asset\",\n            \"16-Mar-2026 11:25:22[UTC] TaskRelation is related to Account through the fields :[RelationId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:22[UTC] Started process of child: TaskRelation\",\n            \"16-Mar-2026 11:25:23[UTC] Order is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:23[UTC] Started process of child: Order\",\n            \"16-Mar-2026 11:25:23[UTC] Started process of child: EmailMessage\",\n            \"16-Mar-2026 11:25:25[UTC] AIInsightValue is related to Account through the fields :[SobjectLookupValueId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:25[UTC] Started process of child: AIInsightValue\",\n            \"16-Mar-2026 11:25:26[UTC] AssociatedLocation is related to Account through the fields :[ParentRecordId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:26[UTC] Started process of child: AssociatedLocation\",\n            \"16-Mar-2026 11:25:28[UTC] CRMforNonProfit__NNOSettings__c is related to Account through the fields :[CRMforNonProfit__DefaultAccount__c] with Restricted delete enabled\",\n            \"16-Mar-2026 11:25:28[UTC] Started process of child: CRMforNonProfit__NNOSettings__c\",\n            \"16-Mar-2026 11:25:29[UTC] Note is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:29[UTC] Started process of child: Note\",\n            \"16-Mar-2026 11:25:30[UTC] Contract is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:30[UTC] Started process of child: Contract\",\n            \"16-Mar-2026 11:25:30[UTC] ScorecardAssociation is related to Account through the fields :[TargetEntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:30[UTC] Started process of child: ScorecardAssociation\",\n            \"16-Mar-2026 11:25:31[UTC] UserDefinedLabelAssignment is related to Account through the fields :[ItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:31[UTC] Started process of child: UserDefinedLabelAssignment\",\n            \"16-Mar-2026 11:25:32[UTC] AccountTeamMember is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:32[UTC] Started process of child: AccountTeamMember\",\n            \"16-Mar-2026 11:25:32[UTC] ObjectRelatedUrl is related to Account through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:32[UTC] Started process of child: ObjectRelatedUrl\",\n            \"16-Mar-2026 11:25:33[UTC] Case is related to Account through the fields :[AccountId] with Restricted delete enabled\",\n            \"16-Mar-2026 11:25:33[UTC] Started process of child: Case\",\n            \"16-Mar-2026 11:25:34[UTC] Started Fetching records for Case\",\n            \"16-Mar-2026 11:25:34[UTC] Fetched 100 ids from child: Case\",\n            \"16-Mar-2026 11:25:35[UTC] ContentDocumentLink is related to Account through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:36[UTC] Started process of child: ContentVersion\",\n            \"16-Mar-2026 11:25:36[UTC] Opportunity is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:36[UTC] Started process of child: Opportunity\",\n            \"16-Mar-2026 11:25:36[UTC] Started Fetching records for Opportunity\",\n            \"16-Mar-2026 11:25:36[UTC] Fetched 100 ids from child: Opportunity\",\n            \"16-Mar-2026 11:25:37[UTC] CreditMemo is related to Account through the fields :[BillingAccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:37[UTC] Started process of child: CreditMemo\",\n            \"16-Mar-2026 11:25:38[UTC] PendingServiceRoutingInteractionInfo is related to Account through the fields :[PrimaryRecordId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:38[UTC] PendingServiceRoutingInteractionInfo is related to Account through the fields :[TargetObjectId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:38[UTC] Started process of child: PendingServiceRoutingInteractionInfo\",\n            \"16-Mar-2026 11:25:40[UTC] UserPrioritizedRecord is related to Account through the fields :[TargetId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:40[UTC] Started process of child: UserPrioritizedRecord\",\n            \"16-Mar-2026 11:25:41[UTC] Contact is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:41[UTC] Started process of child: Contact\",\n            \"16-Mar-2026 11:25:41[UTC] Started Fetching records for Contact\",\n            \"16-Mar-2026 11:25:41[UTC] Fetched 100 ids from child: Contact\",\n            \"16-Mar-2026 11:25:42[UTC] AccountShare is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:42[UTC] Started process of child: AccountShare\",\n            \"16-Mar-2026 11:25:43[UTC] Event is related to Account through the fields :[WhatId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:43[UTC] Started process of child: Event\",\n            \"16-Mar-2026 11:25:44[UTC] AccountContactRelation is related to Account through the fields :[AccountId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:44[UTC] Started process of child: AccountContactRelation\",\n            \"16-Mar-2026 11:25:44[UTC] Started Fetching records for AccountContactRelation\",\n            \"16-Mar-2026 11:25:44[UTC] Fetched 100 ids from child: AccountContactRelation\",\n            \"16-Mar-2026 11:25:44[UTC] PendingServiceRouting is related to Account through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:44[UTC] Started process of child: PendingServiceRouting\",\n            \"16-Mar-2026 11:25:46[UTC] The Child list of : Case is: [NetworkFeedResponseMetric, FlowExecutionErrorEvent, Task, VideoCall, Attachment, RecordActionHistory, TaskRelationChangeEvent, MessagingSessionChangeEvent, WorkOrder, FeedItem, ProcessInstanceChangeEvent, FeedComment, AgentWork, CaseHistory2ChangeEvent, TaskRelation, EmailMessage, AIRecordInsight, AIInsightValue, AgentWorkChangeEvent, CaseShare, ContentDocumentLinkChangeEvent, ReturnOrder, ListEmailChangeEvent, ApprovalWorkItem, WorkOrderChangeEvent, CaseHistory2, NetworkUserHistoryRecent, FlowOrchestrationWorkItem, VideoCallChangeEvent, VoiceCall, UserDefinedLabelAssignment, VoiceCallChangeEvent, ApprovalSubmission, ForecastingItem__hd, ProcessExceptionChangeEvent, SocialPost, ReturnOrderChangeEvent, ContentVersionChangeEvent, ContentVersion, SurveySubjectChangeEvent, PendingServiceRoutingInteractionInfo, SocialPostChangeEvent, EmailMessageChangeEvent, ProcessException, ListEmail, CollaborationGroupRecordChangeEvent, PendingServiceRoutingChangeEvent, MessagingSession, Event, Opportunity__hd, SurveySubject, PendingServiceRouting]\",\n            \"16-Mar-2026 11:25:46[UTC] Attachment is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:47[UTC] FeedItem is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:47[UTC] Started Fetching records for FeedItem\",\n            \"16-Mar-2026 11:25:48[UTC] Fetched 100 ids from child: FeedItem\",\n            \"16-Mar-2026 11:25:48[UTC] AgentWork is related to Case through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:49[UTC] TaskRelation is related to Case through the fields :[RelationId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:50[UTC] EmailMessage is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:52[UTC] AIInsightValue is related to Case through the fields :[SobjectLookupValueId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:53[UTC] CaseShare is related to Case through the fields :[CaseId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:54[UTC] CaseHistory2 is related to Case through the fields :[CaseId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:54[UTC] Started Fetching records for CaseHistory2\",\n            \"16-Mar-2026 11:25:54[UTC] Fetched 100 ids from child: CaseHistory2\",\n            \"16-Mar-2026 11:25:55[UTC] NetworkUserHistoryRecent is related to Case through the fields :[RecordId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:56[UTC] UserDefinedLabelAssignment is related to Case through the fields :[ItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:57[UTC] ForecastingItem__hd is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:58[UTC] ContentDocumentLink is related to Case through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:59[UTC] PendingServiceRoutingInteractionInfo is related to Case through the fields :[PrimaryRecordId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:25:59[UTC] PendingServiceRoutingInteractionInfo is related to Case through the fields :[TargetObjectId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:00[UTC] Event is related to Case through the fields :[WhatId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:01[UTC] Opportunity__hd is related to Case through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:01[UTC] PendingServiceRouting is related to Case through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:03[UTC] The Child list of : Opportunity is: [NetworkFeedResponseMetric, FlowExecutionErrorEvent, Task, VideoCall, OpportunityLineItem, Attachment, RecordActionHistory, TaskRelationChangeEvent, MessagingSessionChangeEvent, FeedItem, OpportunityLineItemChangeEvent, OpportunityShare, ProcessInstanceChangeEvent, FeedComment, AgentWork, TaskRelation, RecentFieldChange, EmailMessage, AIRecordInsight, QuoteChangeEvent, OpportunityContactRoleChangeEvent, AIInsightValue, AgentWorkChangeEvent, ForecastingSrcRecJudgment, ContentDocumentLinkChangeEvent, ListEmailChangeEvent, ApprovalWorkItem, Note, FlowOrchestrationWorkItem, VideoCallChangeEvent, VoiceCall, UserDefinedLabelAssignment, VoiceCallChangeEvent, CRMforNonProfit__Transaction__c, OpportunityRelatedDeleteLog, ApprovalSubmission, ForecastingItem__hd, ContentVersionChangeEvent, ContentVersion, Lead, SurveySubjectChangeEvent, ForecastingFact, PendingServiceRoutingInteractionInfo, FieldChangeSnapshot, EmailMessageChangeEvent, UserPrioritizedRecord, Quote, ListEmail, CollaborationGroupRecordChangeEvent, PendingServiceRoutingChangeEvent, MessagingSession, Event, Opportunity__hd, SurveySubject, PendingServiceRouting]\",\n            \"16-Mar-2026 11:26:03[UTC] OpportunityLineItem is related to Opportunity through the fields :[OpportunityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:04[UTC] Attachment is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:05[UTC] FeedItem is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:05[UTC] OpportunityShare is related to Opportunity through the fields :[OpportunityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:06[UTC] AgentWork is related to Opportunity through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:08[UTC] TaskRelation is related to Opportunity through the fields :[RelationId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:09[UTC] AIInsightValue is related to Opportunity through the fields :[SobjectLookupValueId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:10[UTC] ForecastingSrcRecJudgment is related to Opportunity through the fields :[ReferenceObjectId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:10[UTC] Note is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:11[UTC] UserDefinedLabelAssignment is related to Opportunity through the fields :[ItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:12[UTC] OpportunityRelatedDeleteLog is related to Opportunity through the fields :[OpportunityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:13[UTC] ForecastingItem__hd is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:14[UTC] ContentDocumentLink is related to Opportunity through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:15[UTC] PendingServiceRoutingInteractionInfo is related to Opportunity through the fields :[PrimaryRecordId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:15[UTC] PendingServiceRoutingInteractionInfo is related to Opportunity through the fields :[TargetObjectId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:16[UTC] UserPrioritizedRecord is related to Opportunity through the fields :[TargetId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:17[UTC] Quote is related to Opportunity through the fields :[OpportunityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:18[UTC] Event is related to Opportunity through the fields :[WhatId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:18[UTC] Opportunity__hd is related to Opportunity through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:18[UTC] Started Fetching records for Opportunity__hd\",\n            \"16-Mar-2026 11:26:18[UTC] Fetched 100 ids from child: Opportunity__hd\",\n            \"16-Mar-2026 11:26:19[UTC] PendingServiceRouting is related to Opportunity through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:21[UTC] The Child list of : Contact is: [NetworkFeedResponseMetric, FlowExecutionErrorEvent, Task, Invoice, VideoCall, Attachment, RecordActionHistory, ListEmailSentResult, MessagingEndUser, TaskRelationChangeEvent, ContractChangeEvent, MessagingSessionChangeEvent, CampaignMemberChangeEvent, WorkOrder, CRMforNonProfit__Contact_to_Process__c, FeedItem, ProcessInstanceChangeEvent, FeedComment, SocialPersona, AgentWork, Asset, TaskRelation, CampaignMember, FulfillmentOrder, SurveyResponseChangeEvent, UserEmailPreferredPerson, Order, AccountContactRelationChangeEvent, EmailMessage, AIRecordInsight, QuoteChangeEvent, OpportunityContactRoleChangeEvent, ListEmailSentResultChangeEvent, AIInsightValue, AgentWorkChangeEvent, ConversationParticipant, CRMforNonProfit__Pledge__c, ContentDocumentLinkChangeEvent, ReturnOrder, ListEmailChangeEvent, ApprovalWorkItem, WorkOrderChangeEvent, CRMforNonProfit__NNOSettings__c, Note, UserEmailPreferredPersonChangeEvent, FlowOrchestrationWorkItem, VideoCallChangeEvent, Contract, VoiceCall, UserDefinedLabelAssignment, PendingOrderSummaryChangeEvent, VoiceCallChangeEvent, MatchingInformation, CRMforNonProfit__Transaction__c, SurveyInvitation, EventWhoRelation, ApprovalSubmission, DeclinedEventRelation, ListEmailIndividualRecipient, MessagingEndUserChangeEvent, VideoCallParticipant, ObjectRelatedUrl, Case, SocialPost, ReturnOrderChangeEvent, ContentVersionChangeEvent, ContentVersion, EmailMessageRelation, Opportunity, CreditMemo, Lead, TaskWhoRelation, SurveySubjectChangeEvent, SurveyInvitationChangeEvent, PendingServiceRoutingInteractionInfo, SocialPostChangeEvent, ObjectRelatedUrlChangeEvent, AcceptedEventRelation, EmailBounceEvent, SurveyResponse, UserPrioritizedRecord, PendingOrderSummary, FulfillmentOrderChangeEvent, Quote, UndecidedEventRelation, ListEmail, CollaborationGroupRecordChangeEvent, PendingServiceRoutingChangeEvent, ContactShare, MessagingSession, UserChangeEvent, Event, AccountContactRelation, SurveySubject, PendingServiceRouting, VideoCallParticipantChangeEvent]\",\n            \"16-Mar-2026 11:26:21[UTC] Attachment is related to Contact through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:22[UTC] CRMforNonProfit__Contact_to_Process__c is related to Contact through the fields :[CRMforNonProfit__Contact1__c] with Restricted delete enabled\",\n            \"16-Mar-2026 11:26:23[UTC] FeedItem is related to Contact through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:23[UTC] CampaignMember is related to Contact through the fields :[ContactId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:24[UTC] UserEmailPreferredPerson is related to Contact through the fields :[PersonRecordId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:25[UTC] CRMforNonProfit__Pledge__c is related to Contact through the fields :[CRMforNonProfit__Contact__c] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:26[UTC] CRMforNonProfit__NNOSettings__c is related to Contact through the fields :[CRMforNonProfit__DefaultContact__c] with Restricted delete enabled\",\n            \"16-Mar-2026 11:26:27[UTC] Note is related to Contact through the fields :[ParentId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:27[UTC] Contract is related to Contact through the fields :[CustomerSignedId] with Restricted delete enabled\",\n            \"16-Mar-2026 11:26:28[UTC] UserDefinedLabelAssignment is related to Contact through the fields :[ItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:29[UTC] MatchingInformation is related to Contact through the fields :[SFDCIdId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:29[UTC] CRMforNonProfit__Transaction__c is related to Contact through the fields :[CRMforNonProfit__Contact__c] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:30[UTC] SurveyInvitation is related to Contact through the fields :[ContactId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:30[UTC] SurveyInvitation is related to Contact through the fields :[ParticipantId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:32[UTC] ListEmailIndividualRecipient is related to Contact through the fields :[RecipientId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:33[UTC] ContentDocumentLink is related to Contact through the fields :[LinkedEntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:34[UTC] EmailMessageRelation is related to Contact through the fields :[RelationId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:35[UTC] ContactShare is related to Contact through the fields :[ContactId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:35[UTC] Event is related to Contact through the fields :[WhoId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:36[UTC] AccountContactRelation is related to Contact through the fields :[ContactId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:36[UTC] Started Fetching records for AccountContactRelation\",\n            \"16-Mar-2026 11:26:36[UTC] Fetched 100 ids from child: AccountContactRelation\",\n            \"16-Mar-2026 11:26:37[UTC] PendingServiceRouting is related to Contact through the fields :[WorkItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:38[UTC] The Child list of : AccountContactRelation is: [FlowExecutionErrorEvent, AIRecordInsight, AIInsightValue]\",\n            \"16-Mar-2026 11:26:39[UTC] The Child list of : FeedItem is: [NetworkFeedResponseMetric, FeedSignal, FlowExecutionErrorEvent, Announcement, FeedComment, FeedRevision, NetworkUserHistoryRecent, FeedAttachment, WorkThanks, NetworkModeration, WorkThanksChangeEvent]\",\n            \"16-Mar-2026 11:26:39[UTC] NetworkFeedResponseMetric is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:40[UTC] FeedSignal is related to FeedItem through the fields :[FeedEntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:40[UTC] FeedSignal is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:42[UTC] Announcement is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:42[UTC] FeedComment is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:43[UTC] FeedRevision is related to FeedItem through the fields :[FeedEntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:44[UTC] NetworkUserHistoryRecent is related to FeedItem through the fields :[FeedItemId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:45[UTC] FeedAttachment is related to FeedItem through the fields :[FeedEntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:45[UTC] NetworkModeration is related to FeedItem through the fields :[EntityId] with Cascade delete enabled\",\n            \"16-Mar-2026 11:26:48[UTC] ------------>End the child of Account<------------\",\n            \"16-Mar-2026 11:26:48[UTC] ------------>Start the parent of Account<------------\",\n            \"16-Mar-2026 11:26:48[UTC] The Parent list of : Account is: []\",\n            \"16-Mar-2026 11:26:49[UTC] ------------>Start the Individual parent of Account<------------\",\n            \"16-Mar-2026 11:26:49[UTC] The Parent list of : CaseHistory2 is: [Case]\",\n            \"16-Mar-2026 11:26:50[UTC] Case is the required parent of CaseHistory2 related through the fields: [CaseId]\",\n            \"16-Mar-2026 11:26:50[UTC] Started process of child: Case\",\n            \"16-Mar-2026 11:26:50[UTC] Started Fetching records for Case\",\n            \"16-Mar-2026 11:26:50[UTC] Fetched 100 ids from child: Case\",\n            \"16-Mar-2026 11:26:52[UTC] The Parent list of : Opportunity__hd is: [Opportunity]\",\n            \"16-Mar-2026 11:26:52[UTC] Opportunity is the required parent of Opportunity__hd related through the fields: [ParentId]\",\n            \"16-Mar-2026 11:26:52[UTC] Started process of child: Opportunity\",\n            \"16-Mar-2026 11:26:52[UTC] Started Fetching records for Opportunity\",\n            \"16-Mar-2026 11:26:52[UTC] Fetched 100 ids from child: Opportunity\",\n            \"16-Mar-2026 11:26:54[UTC] The Parent list of : Case is: []\",\n            \"16-Mar-2026 11:26:55[UTC] The Parent list of : Opportunity is: []\",\n            \"16-Mar-2026 11:26:55[UTC] The Parent list of : Contact is: []\",\n            \"16-Mar-2026 11:26:56[UTC] The Parent list of : AccountContactRelation is: [Account, Contact]\",\n            \"16-Mar-2026 11:26:56[UTC] Account is the required parent of AccountContactRelation related through the fields: [AccountId]\",\n            \"16-Mar-2026 11:26:56[UTC] Started process of child: Account\",\n            \"16-Mar-2026 11:26:56[UTC] Started Fetching records for Account\",\n            \"16-Mar-2026 11:26:56[UTC] Fetched 100 ids from child: Account\",\n            \"16-Mar-2026 11:26:57[UTC] Contact is the required parent of AccountContactRelation related through the fields: [ContactId]\",\n            \"16-Mar-2026 11:26:57[UTC] Started process of child: Contact\",\n            \"16-Mar-2026 11:26:57[UTC] Started Fetching records for Contact\",\n            \"16-Mar-2026 11:26:57[UTC] Fetched 100 ids from child: Contact\",\n            \"16-Mar-2026 11:27:00[UTC] The Parent list of : Account is: []\",\n            \"16-Mar-2026 11:27:00[UTC] ------------>End the Individual parent of Account<------------\",\n            \"16-Mar-2026 11:27:00[UTC] Fetching records wrote in to csv files processs started...\",\n            \"16-Mar-2026 11:27:01[UTC] Started Fetching records for Account\",\n            \"16-Mar-2026 11:27:01[UTC] Fetched 100 records from child: Account\",\n            \"16-Mar-2026 11:27:02[UTC] Started Fetching records for FeedItem\",\n            \"16-Mar-2026 11:27:02[UTC] Fetched 100 records from child: FeedItem\",\n            \"16-Mar-2026 11:27:06[UTC] Started Fetching records for CaseHistory2\",\n            \"16-Mar-2026 11:27:06[UTC] Fetched 100 records from child: CaseHistory2\",\n            \"16-Mar-2026 11:27:09[UTC] Started Fetching records for Case\",\n            \"16-Mar-2026 11:27:09[UTC] Fetched 100 records from child: Case\",\n            \"16-Mar-2026 11:27:10[UTC] Started Fetching records for Opportunity\",\n            \"16-Mar-2026 11:27:10[UTC] Fetched 100 records from child: Opportunity\",\n            \"16-Mar-2026 11:27:11[UTC] Started Fetching records for Contact\",\n            \"16-Mar-2026 11:27:11[UTC] Fetched 100 records from child: Contact\",\n            \"16-Mar-2026 11:27:13[UTC] Started Fetching records for AccountContactRelation\",\n            \"16-Mar-2026 11:27:13[UTC] Fetched 100 records from child: AccountContactRelation\",\n            \"16-Mar-2026 11:27:14[UTC] Started Fetching records for Opportunity__hd\",\n            \"16-Mar-2026 11:27:14[UTC] Fetched 100 records from child: Opportunity__hd\",\n            \"16-Mar-2026 11:27:14[UTC] Account hierarchial process completed!\",\n            \"16-Mar-2026 11:27:15[UTC] Backup process completed\",\n            \"16-Mar-2026 11:27:15[UTC] Archival is enabled, separating the records with files...\",\n            \"16-Mar-2026 11:27:16[UTC] Archival is enabled, separating the records with files completed...\",\n            \"16-Mar-2026 11:27:28[UTC] Transferring retrieved metadata/data to backup environment\",\n            \"16-Mar-2026 11:27:28[UTC] Data Transfer percentage: 0.0\",\n            \"16-Mar-2026 11:27:38[UTC] Data Transfer percentage: 100\",\n            \"16-Mar-2026 11:27:45[UTC] ------------>Archival initiated<------------\",\n            \"16-Mar-2026 11:27:45[UTC] Archive has been initiated at : 2026-03-16T11:27:45.879+0000\",\n            \"16-Mar-2026 11:27:45[UTC] Respect restricted delete and prevent child record deletion : No\",\n            \"16-Mar-2026 11:27:45[UTC] Disable workflows : No\",\n            \"16-Mar-2026 11:27:45[UTC] Disable triggers : No\",\n            \"16-Mar-2026 11:27:45[UTC] Disable validation rules : No\",\n            \"16-Mar-2026 11:27:45[UTC] Disable flows : No\",\n            \"16-Mar-2026 11:27:46[UTC] Bulk V2 enabled: false\",\n            \"16-Mar-2026 11:27:47[UTC] Checking salesforce automation controls\",\n            \"16-Mar-2026 11:27:47[UTC] Batch concurrencyMode: Parallel created...\",\n            \"16-Mar-2026 11:27:47[UTC] Created bulk load job with Id: 750WI00000PTwBtYAL for objectName: Case\",\n            \"16-Mar-2026 11:27:47[UTC] Deletion job of Case created...\",\n            \"16-Mar-2026 11:27:47[UTC] SalesForce job batch Size 3000\",\n            \"16-Mar-2026 11:27:48[UTC] Total batches created: 1\",\n            \"16-Mar-2026 11:27:58[UTC] Batch 1 result: Records Processed 100 Records Failed 0\",\n            \"16-Mar-2026 11:27:59[UTC] Bulk V2 enabled: false\",\n            \"16-Mar-2026 11:28:00[UTC] Checking salesforce automation controls\",\n            \"16-Mar-2026 11:28:01[UTC] Batch concurrencyMode: Parallel created...\",\n            \"16-Mar-2026 11:28:01[UTC] Created bulk load job with Id: 750WI00000PTlMyYAL for objectName: Account\",\n            \"16-Mar-2026 11:28:01[UTC] Deletion job of Account created...\",\n            \"16-Mar-2026 11:28:01[UTC] SalesForce job batch Size 3000\",\n            \"16-Mar-2026 11:28:01[UTC] Total batches created: 1\",\n            \"16-Mar-2026 11:28:42[UTC] Batch 1 result: Records Processed 100 Records Failed 0\",\n            \"16-Mar-2026 11:28:43[UTC] Archive has been completed at : 2026-03-16T11:28:43.438+0000\"\n        ]\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:52:01\"\n}"}],"_postman_id":"0e90e2b1-af69-4827-b417-d853f8271638"},{"name":"Download Archive Logs","id":"16fba755-d112-4989-bdc5-75de8053489d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/archives//logs/download","description":"<p>Downloads the archive job log file (binary ZIP).</p>\n<p><strong>GET</strong> <code>/archives/&lt;archiveId&gt;/logs/download</code></p>\n<p><strong>Response:</strong> binary <code>.zip</code> (not JSON).</p>\n<p><strong>Consumes:</strong> <code>&lt;archiveId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","archives","","logs","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"438f10e9-79fc-4432-8935-28dfdecffa09","name":"archive_logs_down","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/archives//logs/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:52:17 GMT"},{"key":"content-type","value":"application/zip"},{"key":"content-length","value":"4242"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"content-disposition","value":"attachment; filename=\"16-Mar-2026 11-24-58.zip\""},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:52:17 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:52:17 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:52:17 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:52:17 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"PK\u0003\u0004\u0014\u0000\b\b\b\u0000�^�\\\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0018\u0000\u0000\u000016-Mar-2026 11-24-58.txt�][sۺ\u0011~�@�k��u��9�\u0019_[ulǵ�d�d�x \u0012�xL�*\t*���]�\u0000� @B��y�$6w��b�7\u0000d|���ӳ��\u0018��ӳ�t4�����7t���d�V8F\u000bB\u0002�\u0005\u001e�0%�O���o${���D�EW\u001fS�ŉO��D���jȄ�9�\u0011E/ޚLQ��ӳ��h��p���\u0013� ��\u0004P��8a��S�\u0018j��\u001f\u0001]\u0011�9h�\" \u0001^��m\"��S� �#�Yy�R�C�\u001b�t�0\t(BoQ�Fs��-�\u001c��4��z\u00027S\u0014���\u0011h%K\r9'\u0003�~��S2�\u001b\u001c��N[���1\u0015��s�H@�(\\�N\u001c�2\u0006ȋ�?�^�۬\u0007����\u001f�_/�4��\u000f�S��\u0002F3\u0017�����G��L\u0000�}p�\u0001�I��J�w\u0004�\"\u0012o��ej�!����S0B���\u001e\f;\f�`�\u001f?<�B\u0018��ڣ��\u001d�����ON���%Jj,ٕ���P>\u0017��N�uD�A��_(�]�\u0004V8@}�Ap��g\u000f�\u0017�~�\u0007��eB�YD\u0010�\u0000Z��x~���\u0007��<)\u0006\b�\u0011���A�\u0004�\u0013�2�j\b�J�\u0015d-��*\u001b��\u0003�\u001b ���\u0016c���p`�~QMee�-l\u0014�\u0018)�9쪹��t��0|�/-:\r��#\u0011��\u0002$o��!q��tѩWf,\u001c (�\t\u00023�\u0015\u0002�a��_�q�pgq\u001f:��$\\���v\u000b�?A���\b��;B�g>�1y 4�\u0013t�?n\u0012'aD�Q\u0014F��\u0005��'h\u0016lC�\u0001{�\n�\u0018^ÈO�%��Y��S�\\s�\u000e��\u0007`\u000b��\u0013�\u0000\u0003�K�����\u0002�:e�L�:��0�\u0011vh�\u0019�\u001c�Q��\u0006\u0003�\u001c��+\u001bό��\tzJ�9\u000b@��CJ\u0004��p��35�O$��\u0000�P��S�\u0011�\u0019Ǆ��\u0002<X��[\u0006\u000fd��\u0012\u0013\u001f\f�g�\u0004�'���w��ե�{\u0012�T����$6J\u0018�R\u0003�k���A͗�T�0\u0012o���\u0007�_���\u0002�R��\u001a����M�x�\u001f��?�\u0001(�ͣ��O\u0010�����I�\u0002\boB'ac�����gB�(�\u0003ۀ\u0001o�ϐ�)H\u0015��{K\u0002\u0017�I�#�\u0006�<V�0b\u0005����sB)\u0018E��>��dB��W��\u001a�gX`�\u0017D|�5x\fVݦ�&\t�\u00023A\u001c\f�-T�u��\u0011�+�\u0019�\ry\u0003��=^\u0010\u001f�\u0003c)���൴�'��+\u001f�<Y�q�Q��q.�\u0001\u0000�qִ�\u0012� �|\u0015r�p�o�0�d9a�d����:A7��\u0019v�t�hu���|�A�?L�/����$[Xa\\���f�\u001f_a�UW�����!���ړ u�\t#�@F\u0004�\u0005\u0002��.��\t�'�M\u0017mi��$ڒ\u000f\u0018+\u0003[\u0012$�`N�-(�9L�I�@Z��o\u0016���Ü\u0013��,=iN�a��\u001a\u000bb\u0001<�%����q��9\u000e���̰�x��0���\u000f�˙��V����\u0017�&����<Xm����+���K�B�vk8�C�ǋ0U�ߣ0٤Pʚ�=#\u0000�C�*�_\u001d;[8�\u0015$-�X�*���\u0012]��Vl�\u0001�o��\u000b��R�(�C�\u001d��KW0��J$2�%\u0002���V������\u000f\u0016���\nBV\u0002\u001ai2\t��\u0001�z�bL9\u000e\u0015�yJ(�Z\u0017�W,_\u000b��\u0019\u000b��&�\u0002��V\u0014Ky2�\u0005�\u0013/),\u0010OL�s<*��J\u0013��@�0A�h��Ev��?��a1m:ƨ�z&�%H\u001a\u000eY��i\r���\u0010�3@*�\u0000͒�.��װ���˰�(�r�(�m\u0017Ȓ�\u0002�Y\u001b_)��\u0018\fR\u0006<\u0002\u001eG�\u0003\u0013d�Ŋ��E�\u0018��M�*�.�����}\u0018�'\u001bNm�����J�T,���\u00146�=����\u000f�\u0018���TlD\u001c2�9]�Uc\u0005�\t�\n\"�&��̪#�a<��5�K�\bT<ELb\u0015�QB�1\u00062$\np� <��\u0018\u0018㇄�#V\u0014�]п�hI�m@��:�\u0010T�T�Dlj.��\f�.�\u000f��\u0019���\b]���q��\u00188k�4\\���1\u0016�y\u0004UT*&\"����.z��I\u0007�0�Ш\b�-vg\f�ŭ\u0019O��\rbG��t\u0005���=O\\kOb���F��E��t��f�^@Ԃ^9��X�f��A\u0014�y��텁����R��ܥMǯ��<�X�� \u000f\u0005+�٩��Gլ�6x\u0015���<��Z����}dCc6������]����1�\u0010hZЪ#��\\\u001b<��ˉ\u000e��\u001eGcms\u001c\u000eI�@Dj�V>|�wh���\\r8,����>���-�]\u0001ׂ��\u0014J{n:���L�\u0002��V4+Z\tN�Is�@$�S����@��\u0002��\u0002\u000ex\u0002���φ+���\bʇ\u0000��C�d�-�N\u001b����\u0003(�ն�����\u0011f��,މ\u001f�PR\r5o��7�[n��w�U{�w�#\u0010�\u0002侾��lRo��Ъ\u0019��\\�b�u˸ag�q��:��T��`5n��7O�.~������$�ޤq\u001b�����\u0000���M��\t�F&�&�pb�E-ț6��\u0007�C��0��4����\u0019�\\��h\u000e>�#����G���csdThH�2�f��7\u0016�<\u0019\u001e�$��ƒx4<L�,\u001d\u000b��j\n�\u001d�ܮ�\u001f�;���!�-�t���{��6�+h}S�Y�n\u001dEyjޢ��Q�n\u001d��`ڥ\u001d4�N,�j`M��(�AV�֡=�1�r�Tu��� �\\�������\n\\�9X��\u001f�H�+3�������@����%[����$���*��xl�%[\u0004�_9�٪�+x�y��&�r],B\u001aK���_z\u001a��U��\u0010rA�b;��p١\u0006�P¥���\u000b�\u0002�;�X��*��\u0019�\u0003��W���k8�+N����x��R,䊛,�-��,<`�0��Z�(�:T��%���V]�q�>�ןF�;�ȉ�\f5J��FA�E���(��p<��j9{9�tW�\u001b\u0001�t�m�(\u0011)\u000eq\u001dl5��\u001e\u00072\"����YmUV��Q\u0017hж�;��\f�\u0016vF\b��w\u0000dd]K���K�wXh�U{�BO´G�\u0012�\u0005\bї���q�Ϥ��5\u00077��W��׼�[��\u0016͸\n6\r��\u0007�����\u001f��5�E\b�hv�c�R��2uV1����8��oX�/=7m���?��W\u001a��\u0002�W��\u000b����G�V�\\��}�XN\u0014\u00117���+�V�\u0005Ŵ[�\u001e��\u0016��!�����m��x��\b���t�k�M�T6��ݏ��w�>����\u0007�:W\u0016ףu�E�j�$5Y�\u0018\u001e��\u0010v�ӝM�\f����\u0004�`���+�\u0003Ս�Ly%\u0003:�=�jK�����\u0014�ώ���j��ƿ��w��n>�+p7N\u0019��\\��%��o�Uo�\r������;�n��\u0016���]�\u001d��#\r\"\u001b�kJ&�4�\u000b�]\u00105q��\\\t\u001bg�\u0011��_\u001cD9��x1�wRB�K\u000b�ü6R��N��\u0014����A�\u001c��a\u0015�Q�\u00076����\r���X\u0003��r�\u001b{V����)��?�W@\u0002��\u001a�9X;ɍ��p']O\u001a�\u0000Y\u0016U��S�@]���n�g6K��2���i�d�$+9�Q��>�\u0017b�\u0005\u0000\u0011�t�i\u00170\u0019�\u0005�A��\u0016�n�KyWO��vӃ�~G�ʟ�Ԏc�#�i\u0013�DH�-����6�&\u000e4�6��Z^O\u0018���מ�y�S1ڹ���ɻh��\u001e�'m��7v�\fG�UE��\u0019C!�5�\u0003�g,�c_�\u001a�\f\u0002^��}����K\u000b$��}x��Gd��\"�=Ψ\u001eB(\u0000E���P\tI%4\u000e�b\u000f�b�\u0006!�� ����H��Y��Wރh�1�S�\u0005�8��-\u001eKr������\u001ev:\u001a|0\u001d\u0014Κ4� \u000e���\u0001��otB`-]�����\u0006.��CY�M��\u0014�j�,}\u001b8c���ڂ\u001f�\tiM��:^�3�W*\u001a��ٯ\u0005�\u000b\r��\u0019@�~�B(o_��b0X\u0011�w�7��J\f3��Y�\u0010\u00046�\u0011��m\u0018u��o��i;�\rc��\u0011Qj���\u000bc/�P���\u0019\u0012�ʫ\u0012�Z��\u0015\u001a�vo���w~+E����\u0014��\u001aH��7/By��4��\u001cJ��J�م(s[񻬍�c^xM~�=5HҚU~G\\#�x\u000f�\u0005m��\u000f��-�\u001f\u0015u�G'Zt{�Y^ jDw�C��ӫ\u001drr�W;�g�Cl�`N�\f��Q��v��.~D��\u001b��ŉ��\u0003$��־��<�$be�9y�1\f\u0006\n\u001c�x��ۣ9�\t��E�\u0005��w��0�0���\r�9m\u001b\b\n�~��C\u0017�r\u0016&\u0004\u0006.���%'7���à��05�rn-�H\u000b�mn�����l:L���t��π8!�,\f������9�\u0017�j4\u001a�K&g�v-D�u�b\u0002�\u0015S�\t��O�R�;G�/��D�x�p��ϲ�=� f;����#[P��P�b����b�<���֋B��\u0016s�7�HrF\u001b\u0012��\u001e/�\u0014�>�\u0014t\u0003#\u001d���NVϥ���K~��\u0014ʆ��#�oB!�>��HN{����E\u0012~��_��}\u0006GÖ5��ׅ��n\"���&\"�\u000f����kL��,�Q~�*g}��� \u0010�\u001d��ᏸ-\u0001M����yЧ�\u0014,a�ՒN\u000fJX�U⿣�g���ް�\f\n��\u0010�+�3���om!��Plu:l\u00078�c\r�+�C�\u001et�����`��)˯�'1|�_GR��a��>n\u001c\u000b��\u000f��~\u000f\u0017�\u001a��(�G���I���\u001fW���{�\u000b�\u000b*��} �!�I\u00017�\f\u0018_�\u000bh\u0007���+��.�p��\u001f\u0004\r\u001a�U�\u0003��&�<s\"�,X\n���o�y��w�ө8W\u001b�\u0003�˟�apO.Ra�>���\u001e&Y\u000ejk\u000f�,c��\u001er&\u001d���P�CSb�˨���r�\u0000v�����UL�v���b�u�k�9�pJ��\b?\r\u0007��;�\u0007PK\u0007\b&=o��\u000f\u0000\u0000%q\u0000\u0000PK\u0001\u0002\u0014\u0000\u0014\u0000\b\b\b\u0000�^�\\&=o��\u000f\u0000\u0000%q\u0000\u0000\u0018\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u000016-Mar-2026 11-24-58.txtPK\u0005\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u0000F\u0000\u0000\u00006\u0010\u0000\u0000\u0000\u0000"}],"_postman_id":"16fba755-d112-4989-bdc5-75de8053489d"},{"name":"Download Archive Criteria Object","id":"6216e2e5-88bc-48c6-810e-117991c73c63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/archives//criteria/Account/objects/Account/download","description":"<p>Generates a signed download URL for an object within an archive criteria branch.</p>\n<p><strong>GET</strong> <code>/archives/&lt;archiveId&gt;/criteria/Account/objects/Account/download</code></p>\n<p><strong>Response:</strong> <code>data</code> = signed download URL (string).</p>\n<p><strong>Consumes:</strong> <code>&lt;archiveId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","archives","","criteria","Account","objects","Account","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"3e1dc2a1-8a65-499a-aa20-766f31328284","name":"archive_down","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/archives//criteria/Account/objects/Account/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:51:44 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:51:44 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:51:44 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:51:44 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:51:44 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Download URL generated successfully.\",\n    \"data\": \"https://vault.example.com/ARVault/download/code/1c337d9a4bd0d86ea4f3041860028ad2f51207ba7783f\",\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:51:44\"\n}"}],"_postman_id":"6216e2e5-88bc-48c6-810e-117991c73c63"}],"id":"70c31e10-9b1f-4962-8116-d23bd29f2b6d","description":"<p>Read-only endpoints for an archive job identified by <code>&lt;archiveId&gt;</code>: status/summary, live logs, criteria, and object/log downloads.</p>\n","_postman_id":"70c31e10-9b1f-4962-8116-d23bd29f2b6d"},{"name":"Restores (GET)","item":[{"name":"Get Restore Job","id":"7fdbc867-f6dd-4c0a-9940-2ea5709be775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/restores/","description":"<p>Returns status and summary for a restore job.</p>\n<p><strong>GET</strong> <code>/restores/&lt;restoreId&gt;</code></p>\n<p><strong>Response — <code>data</code></strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>number</td>\n<td>Restore job id</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Job name</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>enum</td>\n<td><code>INPROGRESS</code> / <code>COMPLETED</code> / <code>PARTIALYFAILED</code> / <code>FAILED</code> / <code>STOPED</code></td>\n</tr>\n<tr>\n<td><code>summary.data.{success,failure}</code></td>\n<td>int</td>\n<td>Record counts (data)</td>\n</tr>\n<tr>\n<td><code>summary.metadata.{success,failure}</code></td>\n<td>int</td>\n<td>Record counts (metadata)</td>\n</tr>\n<tr>\n<td><code>objects</code></td>\n<td>object</td>\n<td>Per-object counts</td>\n</tr>\n<tr>\n<td><code>metadata.{Errors,Success}.{success,failure}</code></td>\n<td>int</td>\n<td>Metadata deploy counts</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores",""],"host":[""],"query":[],"variable":[]}},"response":[{"id":"7c00a339-9527-4753-9559-298874e85ea8","name":"restore_status","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/restores/"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:49:52 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:49:52 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:49:52 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:49:52 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:49:52 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Restore fetched successfully.\",\n    \"data\": {\n        \"id\": 529141,\n        \"name\": \"ResWithAllComChil4139\",\n        \"status\": \"INPROGRESS\",\n        \"summary\": {\n            \"data\": {\n                \"success\": 2,\n                \"failure\": 0\n            },\n            \"metadata\": {\n                \"success\": 0,\n                \"failure\": 0\n            }\n        },\n        \"objects\": {},\n        \"metadata\": {\n            \"Errors\": {\n                \"success\": 0,\n                \"failure\": 0\n            },\n            \"Success\": {\n                \"success\": 0,\n                \"failure\": 0\n            }\n        },\n        \"hierarchical\": true\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:49:52\"\n}"}],"_postman_id":"7fdbc867-f6dd-4c0a-9940-2ea5709be775"},{"name":"Get Restore Logs","id":"30d608d9-dbb1-4e73-920b-31edeb634159","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/restores//logs","description":"<p>Returns paginated live log lines for a restore job.</p>\n<p><strong>GET</strong> <code>/restores/&lt;restoreId&gt;/logs</code></p>\n<p><strong>Response — <code>data</code>:</strong> <code>id</code>, <code>status</code>, <code>generatedAt</code>, <code>cursor</code>, <code>hasMore</code>, <code>logs[]</code>.</p>\n<p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores","","logs"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"0f0a4762-bf1f-4a43-8aa0-4dbd6cd5bdae","name":"restore_logs","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/restores//logs"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:50:00 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:50:00 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:50:00 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:50:00 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:50:00 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Live logs fetched successfully.\",\n    \"data\": {\n        \"id\": \"382207\",\n        \"status\": \"INPROGRESS\",\n        \"generatedAt\": \"2026-06-03T11:50:00.363928788Z\",\n        \"cursor\": 156,\n        \"hasMore\": false,\n        \"logs\": [\n            \"15-May-2026 12:15:06[UTC] Restore has been initiated...\",\n            \"15-May-2026 12:15:07[UTC] ------------METADATA PROCESS------------\",\n            \"15-May-2026 12:15:07[UTC] Deployment process has been started for selected Metadata members...\",\n            \"15-May-2026 12:15:07[UTC] Selected metadata is being retrieved from Backup environment...\",\n            \"15-May-2026 12:15:08[UTC] Preparing consolidated metadata from selected backups...\",\n            \"15-May-2026 12:15:09[UTC] Deploying selected metadata to destination org...\",\n            \"15-May-2026 12:15:09[UTC] Metadata Connection has been established with Salesforce org...\",\n            \"15-May-2026 12:15:10[UTC] Metadata deploy has been initiated with id 0Afdn000009GrzGCAS\",\n            \"15-May-2026 12:15:11[UTC] Deployed metadata components: 0/0\",\n            \"15-May-2026 12:15:11[UTC] Metadata Current Deployment status: Success: 0 and Failed:0\",\n            \"15-May-2026 12:15:13[UTC] Deployed metadata components: 0/165\",\n            \"15-May-2026 12:15:13[UTC] Metadata Current Deployment status: Success: 0 and Failed:0\",\n            \"15-May-2026 12:15:17[UTC] Deployed metadata components: 28/196\",\n            \"15-May-2026 12:15:17[UTC] Metadata Current Deployment status: Success: 29 and Failed:168\",\n            \"15-May-2026 12:15:17[UTC] Metadata Current Deployment status: Success: 29 and Failed:168\",\n            \"15-May-2026 12:15:17[UTC] Metadata deployment has been failed...\",\n            \"15-May-2026 12:15:17[UTC] ------------DATA PROCESS------------\",\n            \"15-May-2026 12:15:17[UTC] Restoring process to destination org has been started for selected data...\",\n            \"15-May-2026 12:15:17[UTC] Identifying whether person accounts are enabled in the org\",\n            \"15-May-2026 12:15:17[UTC] Fetching user ids and mapping between source and destination based on mail prefix\",\n            \"15-May-2026 12:15:17[UTC] BulkV1 API enabled. \",\n            \"15-May-2026 12:15:17[UTC] Defaulting back to BulkV1 for Restore / Replicate operation.\",\n            \"15-May-2026 12:15:18[UTC] Selected childs of Account from schema map is {}\",\n            \"15-May-2026 12:15:18[UTC] ------------Account------------\",\n            \"15-May-2026 12:15:18[UTC] --------->Order of execution identified for selected object : Account <--------\",\n            \"15-May-2026 12:15:18[UTC] ------------>Schema identification process started for object: Account <---------------\",\n            \"15-May-2026 12:15:19[UTC] Consolidated file prepared for object... Account\",\n            \"15-May-2026 12:15:19[UTC] Fetching required parents of object: Account\",\n            \"15-May-2026 12:15:19[UTC] Required parents map for: Account\",\n            \"15-May-2026 12:15:19[UTC] []\",\n            \"15-May-2026 12:15:19[UTC] Data restoring process started for object: Account\",\n            \"15-May-2026 12:15:19[UTC] Copying required records from the backup file for the object: Account\",\n            \"15-May-2026 12:15:19[UTC] Cleaning up vault managed Ids map for object: Account \",\n            \"15-May-2026 12:15:20[UTC] Retrieving deleted records from Salesforce for object: Account\",\n            \"15-May-2026 12:15:20[UTC] Checking deleted IDs present in the selected backups for the object: Account\",\n            \"15-May-2026 12:15:20[UTC] Removing non-updatable fields from the data file for the object: Account\",\n            \"15-May-2026 12:15:20[UTC] Disable workflows : No\",\n            \"15-May-2026 12:15:20[UTC] Disable triggers : No\",\n            \"15-May-2026 12:15:20[UTC] Disable validation rules : No\",\n            \"15-May-2026 12:15:20[UTC] Disable flows : No\",\n            \"15-May-2026 12:15:20[UTC] Override data with blank values : No\",\n            \"15-May-2026 12:15:20[UTC] Prevent duplicate record creation using unique identifiers  : No\",\n            \"15-May-2026 12:15:20[UTC] Checking salesforce automation controls\",\n            \"15-May-2026 12:15:20[UTC] Replacing old ids with new ids for object: Account\",\n            \"15-May-2026 12:15:20[UTC] Mapping source and destination record type ids of object: Account\",\n            \"15-May-2026 12:15:21[UTC] Restoring data of Account object to Salesforce\",\n            \"15-May-2026 12:15:21[UTC] Storing data to salesforce destination org for object: Account\",\n            \"15-May-2026 12:15:21[UTC] Batch concurrencyMode: Parallel created...\",\n            \"15-May-2026 12:15:21[UTC] Created bulk load job with Id: 750dn00000QpkoDAAR for objectName: Account\",\n            \"15-May-2026 12:15:21[UTC] SalesForce job batch Size 10000\",\n            \"15-May-2026 12:15:22[UTC] 1 batches created...\",\n            \"15-May-2026 12:15:22[UTC] Batch 751dn00000Ut4jWAAR result: Records Processed 2 Records Failed 0\",\n            \"15-May-2026 12:15:22[UTC] Success count for the object: Account : 2\",\n            \"15-May-2026 12:15:22[UTC] Failure count for the object: Account : 0\",\n            \"15-May-2026 12:15:22[UTC] Submitting Document Url Ids using BulkV1\",\n            \"15-May-2026 12:15:22[UTC] Updating parent ids related to self references in object: Account\",\n            \"15-May-2026 12:15:22[UTC] Loading data for common child objects like attachments, feed items, etc.\",\n            \"15-May-2026 12:15:22[UTC] Reading parent ids for loading related children like Attachments, ContentVersion, Feed items, etc;\",\n            \"15-May-2026 12:15:23[UTC] Consolidated file prepared for object... Task\",\n            \"15-May-2026 12:15:23[UTC] Updating user id references in Task\",\n            \"15-May-2026 12:15:23[UTC] Retrieving deleted records from Salesforce for object: Task\",\n            \"15-May-2026 12:15:23[UTC] Checking deleted IDs present in the selected backups for the object: Task\",\n            \"15-May-2026 12:15:24[UTC] Disable workflows : No\",\n            \"15-May-2026 12:15:24[UTC] Disable triggers : No\",\n            \"15-May-2026 12:15:24[UTC] Disable validation rules : No\",\n            \"15-May-2026 12:15:24[UTC] Disable flows : No\",\n            \"15-May-2026 12:15:24[UTC] Checking salesforce automation controls\",\n            \"15-May-2026 12:15:24[UTC] Consolidated file prepared for object... FeedItem\",\n            \"15-May-2026 12:15:24[UTC] Total FeedItem records identified: 0\",\n            \"15-May-2026 12:15:24[UTC] 0 out of 0 FeedItem records with type other than ContentPost,LinkPost,QuestionPost,PollPost,TextPost has been ignored\",\n            \"15-May-2026 12:15:24[UTC] Updating user id references in FeedItem\",\n            \"15-May-2026 12:15:25[UTC] Disable workflows : No\",\n            \"15-May-2026 12:15:25[UTC] Disable triggers : No\",\n            \"15-May-2026 12:15:25[UTC] Disable validation rules : No\",\n            \"15-May-2026 12:15:25[UTC] Disable flows : No\",\n            \"15-May-2026 12:15:25[UTC] Checking salesforce automation controls\",\n            \"15-May-2026 12:15:26[UTC] Consolidated file prepared for object... ContentDocumentLink\",\n            \"15-May-2026 12:15:26[UTC] Consolidated file prepared for object... ContentVersion\",\n            \"15-May-2026 12:15:27[UTC] Consolidated file prepared for object... Note\",\n            \"15-May-2026 12:15:27[UTC] Updating user id references in Note\",\n            \"15-May-2026 12:15:27[UTC] Retrieving deleted records from Salesforce for object: Note\",\n            \"15-May-2026 12:15:27[UTC] Checking deleted IDs present in the selected backups for the object: Note\",\n            \"15-May-2026 12:15:28[UTC] Disable workflows : No\",\n            \"15-May-2026 12:15:28[UTC] Disable triggers : No\",\n            \"15-May-2026 12:15:28[UTC] Disable validation rules : No\",\n            \"15-May-2026 12:15:28[UTC] Disable flows : No\",\n            \"15-May-2026 12:15:28[UTC] Checking salesforce automation controls\",\n            \"15-May-2026 12:15:28[UTC] Consolidated file prepared for object... Event\",\n            \"15-May-2026 12:15:28[UTC] Updating user id references in Event\",\n            \"15-May-2026 12:15:29[UTC] Retrieving deleted records from Salesforce for object: Event\",\n            \"15-May-2026 12:15:29[UTC] Checking deleted IDs present in the selected backups for the object: Event\",\n            \"15-May-2026 12:15:29[UTC] Disable workflows : No\",\n            \"15-May-2026 12:15:29[UTC] Disable triggers : No\",\n            \"15-May-2026 12:15:29[UTC] Disable validation rules : No\",\n            \"15-May-2026 12:15:29[UTC] Disable flows : No\",\n            \"15-May-2026 12:15:29[UTC] Checking salesforce automation controls\",\n            \"15-May-2026 12:15:30[UTC] Consolidated file prepared for object... Attachment\",\n            \"15-May-2026 12:15:30[UTC] Updating user id references in Attachment\",\n            \"15-May-2026 12:15:30[UTC] Retrieving deleted records from Salesforce for object: Attachment\",\n            \"15-May-2026 12:15:30[UTC] Checking deleted IDs present in the selected backups for the object: Attachment\",\n            \"15-May-2026 12:15:30[UTC] Downloading attachment files from Storage \",\n            \"15-May-2026 12:15:31[UTC] Downloading 0 files from storage to load: Attachment\",\n            \"15-May-2026 12:15:31[UTC] Disable workflows : No\",\n            \"15-May-2026 12:15:31[UTC] Disable triggers : No\",\n            \"15-May-2026 12:15:31[UTC] Disable validation rules : No\",\n            \"15-May-2026 12:15:31[UTC] Disable flows : No\",\n            \"15-May-2026 12:15:31[UTC] Checking salesforce automation controls\",\n            \"15-May-2026 12:15:31[UTC] Checking salesforce automation controls\",\n            \"15-May-2026 12:15:31[UTC] Updating self lookups for object: Account\",\n            \"15-May-2026 12:15:32[UTC] Batch concurrencyMode: Parallel created...\",\n            \"15-May-2026 12:15:32[UTC] Created bulk load job with Id: 750dn00000QpDahAAF for objectName: Account\",\n            \"15-May-2026 12:15:32[UTC] SalesForce job batch Size 10000\",\n            \"15-May-2026 12:15:32[UTC] Created bulk job with ID:750dn00000QpDahAAF for updating self references in Account\",\n            \"15-May-2026 12:15:32[UTC] Total batches created: 1\",\n            \"15-May-2026 12:15:32[UTC] Batch 1 result: Records Processed 2 Records Failed 0\",\n            \"15-May-2026 12:15:32[UTC] Update circular references for object:EmailMessage\",\n            \"15-May-2026 12:15:32[UTC] Restore/Replicate operation has been completed...\",\n            \"01-Jun-2026 12:30:08[UTC] Restore has been initiated... Retry Count: 1\",\n            \"01-Jun-2026 12:30:09[UTC] ------------METADATA PROCESS------------ Retry Count: 1\",\n            \"01-Jun-2026 12:30:09[UTC] Deployment process has been started for selected Metadata members...\",\n            \"01-Jun-2026 12:30:09[UTC] Selected metadata is being retrieved from Backup environment...\",\n            \"01-Jun-2026 12:30:09[UTC] Deploying selected metadata to destination org...\",\n            \"01-Jun-2026 12:30:09[UTC] Metadata Connection has been established with Salesforce org...\",\n            \"01-Jun-2026 12:30:10[UTC] Metadata deploy has been initiated with id 0Afdn000009NFPNCA4\",\n            \"01-Jun-2026 12:30:11[UTC] Deployed metadata components: 0/0\",\n            \"01-Jun-2026 12:30:11[UTC] Metadata Current Deployment status: Success: 0 and Failed:0\",\n            \"01-Jun-2026 12:30:13[UTC] Deployed metadata components: 0/165\",\n            \"01-Jun-2026 12:30:13[UTC] Metadata Current Deployment status: Success: 0 and Failed:0\",\n            \"01-Jun-2026 12:30:17[UTC] Deployed metadata components: 28/196\",\n            \"01-Jun-2026 12:30:17[UTC] Metadata Current Deployment status: Success: 29 and Failed:168\",\n            \"01-Jun-2026 12:30:17[UTC] Metadata Current Deployment status: Success: 29 and Failed:168\",\n            \"01-Jun-2026 12:30:17[UTC] Metadata deployment has been failed...\",\n            \"01-Jun-2026 12:30:17[UTC] Syncing previous data...\",\n            \"01-Jun-2026 12:30:17[UTC] Syncing previous data for criteria policy: Account\",\n            \"01-Jun-2026 12:30:17[UTC] Syncing previous data as current dataset is empty\",\n            \"01-Jun-2026 12:30:17[UTC] Syncing previous data completed\",\n            \"01-Jun-2026 12:30:17[UTC] Restore/Replicate operation has been completed...\",\n            \"03-Jun-2026 11:49:43[UTC] Restore has been initiated... Retry Count: 2\",\n            \"03-Jun-2026 11:49:44[UTC] ------------METADATA PROCESS------------ Retry Count: 2\",\n            \"03-Jun-2026 11:49:44[UTC] Deployment process has been started for selected Metadata members...\",\n            \"03-Jun-2026 11:49:44[UTC] Selected metadata is being retrieved from Backup environment...\",\n            \"03-Jun-2026 11:49:44[UTC] Deploying selected metadata to destination org...\",\n            \"03-Jun-2026 11:49:44[UTC] Metadata Connection has been established with Salesforce org...\",\n            \"03-Jun-2026 11:49:44[UTC] Metadata deploy has been initiated with id 0Afdn000009OJNhCAO\",\n            \"03-Jun-2026 11:49:45[UTC] Deployed metadata components: 0/0\",\n            \"03-Jun-2026 11:49:45[UTC] Metadata Current Deployment status: Success: 0 and Failed:0\",\n            \"03-Jun-2026 11:49:47[UTC] Deployed metadata components: 0/0\",\n            \"03-Jun-2026 11:49:47[UTC] Metadata Current Deployment status: Success: 0 and Failed:0\",\n            \"03-Jun-2026 11:49:51[UTC] Metadata Current Deployment status: Success: 0 and Failed:0\",\n            \"03-Jun-2026 11:49:59[UTC] Deployed metadata components: 28/196\",\n            \"03-Jun-2026 11:49:59[UTC] Metadata Current Deployment status: Success: 0 and Failed:0\",\n            \"03-Jun-2026 11:50:00[UTC] Metadata Current Deployment status: Success: 29 and Failed:168\",\n            \"03-Jun-2026 11:50:00[UTC] Metadata deployment has been failed...\",\n            \"03-Jun-2026 11:50:00[UTC] Syncing previous data...\",\n            \"03-Jun-2026 11:50:00[UTC] Syncing previous data for criteria policy: Account\",\n            \"03-Jun-2026 11:50:00[UTC] Syncing previous data as current dataset is empty\"\n        ]\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:50:00\"\n}"}],"_postman_id":"30d608d9-dbb1-4e73-920b-31edeb634159"},{"name":"Download Restore Logs","id":"2de82fdd-224b-4ae6-ac61-afe4dfa237fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/restores//logs/download","description":"<p>Downloads the restore job log file (binary ZIP).</p>\n<p><strong>GET</strong> <code>/restores/&lt;restoreId&gt;/logs/download</code></p>\n<p><strong>Response:</strong> binary <code>.zip</code> (not JSON).</p>\n<p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores","","logs","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"b31d152d-7468-4690-aeb3-f1846a95f06a","name":"restore_logs_down","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/restores//logs/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:50:12 GMT"},{"key":"content-type","value":"application/zip"},{"key":"content-length","value":"2124"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"content-disposition","value":"attachment; filename=\"529141.zip\""},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:50:12 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:50:12 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:50:12 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:50:12 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"PK\u0003\u0004\u0014\u0000\b\b\b\u0000F^�\\\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\n\u0000\u0000\u0000529141.txt�Z�n�8\u0010}߯�\u00074��Kb{\u0017\u000b�vR�h.���C�\u0007Z�cՒ�RTRw���3�Ŋ,Q�m�y�c͙���̐�58����n�{N���\u001a�;�_�\u001e���\u0003�$\u0017��hD\u0016�\u0005�\r\\�Rɜ���?�]�����ws�8�M\u001e'���nz9�\u0017��@�X���\u0002IB�m\u0016E�(\"I\u0005�@�\\��y��\u000f7LR�JJ|�/���\u0011�33?3s\u0011�\r��`R��\u0005�\u0005��{j�㐰��\u0015<��j��\t�`!\u0015\bd� ���7~\u0014h\u001e�B��\u0005;*�\u0002!���%'\u000e̒\u001bP��p����4�A\u0000Xh�'\u0016���s�\u0015xxu�̩�\"H��ꑭN\t�Q�V�&�t\u001dҙ,����\u000f�ׇ�d^�k\u0015G_\u001c����\u00070\u0013јt�:\u001a��hc!�K\u0005Z�Xe\f\b��Fz\u0001\u0014��C���1g\\��k\u0017�u>�X\u001f9��61u�g��\\cn\u0014TwT��:\u001f�V`g\u000b�Sn�\u0010j�Z!R\u0006\u0002��'ڈ�2ӧݥ� Y\u0018�>�k\u0007��.��]1�b�� n\u0000Om��0���@�\u0000�- �\u0001�wе\u0006�I{��q\u0004p�\u0013���4\f�\u000b&_U�<�e�_\u0015G��\u0011��\u0007\u001fR\fCgK������[����:��hY���'U\u001c����\u0014\u0001\u0013���3x\n=�\u0006M!\u001cҡ\"�L㰤�0n\u000f�˗d��/�c{�|�)�2��\u001a�\";R�&-��\u0013\u000e$\u001e�`?�\u001d����D�e���wx �<޿L<��y2�́�Lc��\"/\u0013_\u0015�4\u001eӪ2-��%�=d\u0006��7�@�\f[\u0003��S�\u001f��\b��D���B��<��qr!�6�_�i���戝ůI�6o���X\u0005��\u0000�*Z�RN\u001a�$����w{|��@-����ʂ4\u0004�\u0019\u001c];yJv&�\u0002���Ҫ�#�t���\u001cr�ah��\fx�b��\b{=��D\u0011�z*k�� !��}��\u000fxp\u0012���\u000b̬˼b֓N�,癋�\u001b)�W.�K��F�zoy\u000b\u0003���3�{��_�Zq��E\fiok�*��\u0017&\u0004�F�\nո-<\u001a��k��\u000b��\u0017�9'΄:�\t�\u0005KB�#����\u0011����蛠s�D[��Xr?���[\n�EZ\u0012�\u001e�\u0011�{�*�j|\u0001{U\u001f̈{��͚z�\u000e[nB��[�X�*�\u0018j\u0016\ne+�\u000bP\u001f�+N\u00034/Q!u喥��S��\u0014�\u001asn�����p���=\u0015��Lw]'��L���\u0002J=�8u�w�H���\u0019��A'�-|\u000e�|6�<\u0014���>k\u0013�Jӕ\u001a1�/T�s�\u0017#\u0016\"WYv\u0013K+y\u00198�\u001fL��������$�����A�@��0��^�'�\u0003�����t�D\u0017N�,��}��'XC]\r\u0006����j��Ǳ�]�Z�\u0019�c�?\tO\u0015�dm'��\u0006�\t�W\u0015QU���\u0010�S\\@�2o\t��\f�\u0005�*Ђ�)�'�Q�x\u001c!l�|�\u0007�\u0000S��x�\u001a����^�\u0000�wdɰ��̇g�Dt3��\u0012\u0017��ё�z�F�<�\u001b��I�\u0019�M\u0012������{\u0007��\u001b�V9�\u0019v\\�4Zkp�9H7\u0003��7X��\u000e4�\u001e�\u0017���7��}�*�߳J�M�t��Z�7�\u0011r�\u001a���z�z��9\u0013�{�\u001aEI�;��\u0012�\\g\u0017C\u0015\u0003UD��\u0004�\u0015\r��s�#��\u001b����\u0018\u000b\u001a\u000fԇ{�y���T�\u0015N��\u0003�K:�x\u001a��.!\u0003S�\r\fI6ؓd\u0003\u0013�\r\u000e&ٹ!��\u0019�\n\nN�\u0011aS��B�0D�岲ߺhE�\u0006�=U�\u0001�(�Z�chJ��!�{\u0012~hB����\u001f\u001a��\u0012wI\u001a�\u0006\"՚�\u000ebR\u0013�Q���=�F�\\\u001a�ɥ�\t�ʩ2�R�cȥmk�Ak T+�}\u000f��`\u001f�\u001c���\u0019\r�^}�\u0005P\u0019��\u0001�f�̪��z�.H�h\u001b������b�\f9_6h�|����/۵\n�\u0000�\u001f\r!��Ez��Di�C��l��<��@\f\u000e7ft5�\\\u0019\u001cnd>�\u000f7*��\u00066\u001b��\u0015�IkI;\u001a�L6\b��1�:#x;\u0007֡�'��\u0003#�+�أ�8�\u00027.�ǭ\u001b��\u0015�\u0001K�:��5j����a��!M:���8ȱz��ڀ���R�\rT\u0002H/��\u0002fdv�=�Q.b��\u001fz\u0011�)p�[\u0013�X�ޚ�E>�������tү�m}k����\u001b\n\u0015�\u0006�&ꭏ\u001c�ɭ�z�\u0003/7�N`���z��&���=�\u0001�q�_b04I�d�+�p)\t���7�Rg\n\u0006#��L��I�\u0011�rc��\u000b��r\u000f��\u0015��q4�����[\u0005�?D�u��Q�Z����!p#��:X���������j:���\u001d�V�ZۃTv\u0017����D��\u00126F48F��E\u001d�T�Z�#\u00065�֥�`�YJ��\u001bJI-@})13i(%�`�Rb�U(%����PK\u0007\b\u0011��,�\u0007\u0000\u0000�-\u0000\u0000PK\u0001\u0002\u0014\u0000\u0014\u0000\b\b\b\u0000F^�\\\u0011��,�\u0007\u0000\u0000�-\u0000\u0000\n\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000529141.txtPK\u0005\u0006\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u00008\u0000\u0000\u0000�\u0007\u0000\u0000\u0000\u0000"}],"_postman_id":"2de82fdd-224b-4ae6-ac61-afe4dfa237fc"},{"name":"Download Restore Object","id":"941a6343-84e5-438d-901c-ed0e1df0118a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/restores//objects/Account/download","description":"<p>Downloads restored data for an object (binary stream / archive).</p>\n<p><strong>GET</strong> <code>/restores/&lt;restoreId&gt;/objects/Account/download</code></p>\n<p><strong>Response:</strong> binary file (not JSON). Replace <code>Account</code> with the object name.</p>\n<p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores","","objects","Account","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"b61cf729-fdec-4072-a7d2-372bf6df4a14","name":"restore_obj_dow","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/restores//objects/Account/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:50:27 GMT"},{"key":"content-type","value":"application/octet-stream"},{"key":"content-length","value":"105"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"content-disposition","value":"attachment; filename=\"file.gz\""},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:50:27 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:50:27 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:50:27 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:50:27 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"\u001f�\b\u0000\u0000\u0000\u0000\u0000\u0000�S��qQ�tQ�Q�s\r�0<��C��]��!\u001c� W�\u0010W��kP��\u0012����aJ�\u0001\bDT\u001a\u001b�9::\u0001%�\n�\u0014��\u0002��Ĝb ������\u0000C'B\u0010M'\u0000��V\r�\u0000\u0000\u0000"}],"_postman_id":"941a6343-84e5-438d-901c-ed0e1df0118a"},{"name":"Download Restore Metadata","id":"624b46b0-4382-46e9-aea2-c48c4646d7d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/restores//metadata/download","description":"<p>Downloads the restore metadata deployment result as CSV.</p>\n<p><strong>GET</strong> <code>/restores/&lt;restoreId&gt;/metadata/download</code></p>\n<p><strong>Response:</strong> CSV — columns: <code>S No.</code>, <code>Type</code>, <code>Member</code>, <code>FileName</code>, <code>Status</code>, <code>Reason</code>.</p>\n<p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores","","metadata","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"a6812de2-b705-4183-abdf-4101e8503da0","name":"restore_meta_dow","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/restores//metadata/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:50:47 GMT"},{"key":"content-type","value":"text/csv"},{"key":"content-length","value":"33848"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"content-disposition","value":"attachment; filename=\"Meta-results-03-Jun-2026 11-50-47-UTC.csv\""},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:50:47 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:50:47 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:50:47 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:50:47 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"\"S No.\",\"Type\",\"Member\",\"FileName\",\"Status\",\"Reason\"\n\"1\",\"ApexClass\",\"A100\",\"unpackaged/classes/A100.cls\",\"Success\",\"N/A\"\n\"2\",\"ApexClass\",\"A\",\"unpackaged/classes/A.cls\",\"Success\",\"N/A\"\n\"3\",\"ApexClass\",\"A000\",\"unpackaged/classes/A000.cls\",\"Success\",\"N/A\"\n\"4\",\"ApexClass\",\"MyProfilePageControllerTest\",\"unpackaged/classes/MyProfilePageControllerTest.cls\",\"Success\",\"N/A\"\n\"5\",\"ApexClass\",\"SiteLoginController\",\"unpackaged/classes/SiteLoginController.cls\",\"Success\",\"N/A\"\n\"6\",\"ApexClass\",\"ForgotPasswordController\",\"unpackaged/classes/ForgotPasswordController.cls\",\"Success\",\"N/A\"\n\"7\",\"ApexClass\",\"CommunitiesSelfRegController\",\"unpackaged/classes/CommunitiesSelfRegController.cls\",\"Success\",\"N/A\"\n\"8\",\"ApexClass\",\"CommunitiesSelfRegConfirmController\",\"unpackaged/classes/CommunitiesSelfRegConfirmController.cls\",\"Success\",\"N/A\"\n\"9\",\"ApexClass\",\"CommunitiesLoginController\",\"unpackaged/classes/CommunitiesLoginController.cls\",\"Success\",\"N/A\"\n\"10\",\"ApexClass\",\"ForgotPasswordControllerTest\",\"unpackaged/classes/ForgotPasswordControllerTest.cls\",\"Success\",\"N/A\"\n\"11\",\"ApexClass\",\"A0\",\"unpackaged/classes/A0.cls\",\"Success\",\"N/A\"\n\"12\",\"ApexClass\",\"CommunitiesSelfRegControllerTest\",\"unpackaged/classes/CommunitiesSelfRegControllerTest.cls\",\"Success\",\"N/A\"\n\"13\",\"ApexClass\",\"MicrobatchSelfRegControllerTest\",\"unpackaged/classes/MicrobatchSelfRegControllerTest.cls\",\"Success\",\"N/A\"\n\"14\",\"ApexClass\",\"SiteLoginControllerTest\",\"unpackaged/classes/SiteLoginControllerTest.cls\",\"Success\",\"N/A\"\n\"15\",\"ApexClass\",\"SiteRegisterControllerTest\",\"unpackaged/classes/SiteRegisterControllerTest.cls\",\"Success\",\"N/A\"\n\"16\",\"ApexClass\",\"MyProfilePageController\",\"unpackaged/classes/MyProfilePageController.cls\",\"Success\",\"N/A\"\n\"17\",\"ApexClass\",\"CommunitiesLoginControllerTest\",\"unpackaged/classes/CommunitiesLoginControllerTest.cls\",\"Success\",\"N/A\"\n\"18\",\"ApexClass\",\"A00000\",\"unpackaged/classes/A00000.cls\",\"Success\",\"N/A\"\n\"19\",\"ApexClass\",\"SiteRegisterController\",\"unpackaged/classes/SiteRegisterController.cls\",\"Success\",\"N/A\"\n\"20\",\"ApexClass\",\"CommunitiesLandingController\",\"unpackaged/classes/CommunitiesLandingController.cls\",\"Success\",\"N/A\"\n\"21\",\"ApexClass\",\"ContactTriggerHandler\",\"unpackaged/classes/ContactTriggerHandler.cls\",\"Success\",\"N/A\"\n\"22\",\"ApexClass\",\"ContactTriggerHandlerTest\",\"unpackaged/classes/ContactTriggerHandlerTest.cls\",\"Success\",\"N/A\"\n\"23\",\"ApexClass\",\"AccountTriggerHandler\",\"unpackaged/classes/AccountTriggerHandler.cls\",\"Success\",\"N/A\"\n\"24\",\"ApexClass\",\"CommunitiesLandingControllerTest\",\"unpackaged/classes/CommunitiesLandingControllerTest.cls\",\"Success\",\"N/A\"\n\"25\",\"ApexClass\",\"CommunitiesSelfRegConfirmControllerTest\",\"unpackaged/classes/CommunitiesSelfRegConfirmControllerTest.cls\",\"Success\",\"N/A\"\n\"26\",\"ApexClass\",\"MicrobatchSelfRegController\",\"unpackaged/classes/MicrobatchSelfRegController.cls\",\"Success\",\"N/A\"\n\"27\",\"\",\"package.xml\",\"unpackaged/package.xml\",\"Success\",\"N/A\"\n\"28\",\"ApexClass\",\"ChangePasswordController\",\"unpackaged/classes/ChangePasswordController.cls\",\"Success\",\"N/A\"\n\"29\",\"ApexClass\",\"ChangePasswordControllerTest\",\"unpackaged/classes/ChangePasswordControllerTest.cls\",\"Success\",\"N/A\"\n\"30\",\"ApexClass\",\"CRMforNonProfit__CampaignTriggerHelper\",\"unpackaged/classes/CRMforNonProfit__CampaignTriggerHelper.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"31\",\"ApexClass\",\"CRMforNonProfit__FioAccountsSyncSchedulerTest\",\"unpackaged/classes/CRMforNonProfit__FioAccountsSyncSchedulerTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"32\",\"ApexClass\",\"CRMforNonProfit__MailParserDarujmeSk\",\"unpackaged/classes/CRMforNonProfit__MailParserDarujmeSk.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"33\",\"ApexClass\",\"CRMforNonProfit__RetrieveShoptetOrder\",\"unpackaged/classes/CRMforNonProfit__RetrieveShoptetOrder.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"34\",\"ApexClass\",\"CRMforNonProfit__CurrencyHandler\",\"unpackaged/classes/CRMforNonProfit__CurrencyHandler.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"35\",\"ApexClass\",\"CRMforNonProfit__TransactionProcessor\",\"unpackaged/classes/CRMforNonProfit__TransactionProcessor.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: TransactionProcessor\"\n\"36\",\"ApexClass\",\"CRMforNonProfit__TestTriggers\",\"unpackaged/classes/CRMforNonProfit__TestTriggers.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"37\",\"ApexClass\",\"CRMforNonProfit__Darujme_DataProcessor\",\"unpackaged/classes/CRMforNonProfit__Darujme_DataProcessor.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"38\",\"ApexClass\",\"CRMforNonProfit__ContentVersionTriggerHelper\",\"unpackaged/classes/CRMforNonProfit__ContentVersionTriggerHelper.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"39\",\"ApexClass\",\"CRMforNonProfit__Darujme_PledgeServiceTest\",\"unpackaged/classes/CRMforNonProfit__Darujme_PledgeServiceTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"40\",\"ApexClass\",\"CRMforNonProfit__OpravaDatTest\",\"unpackaged/classes/CRMforNonProfit__OpravaDatTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"41\",\"ApexClass\",\"CRMforNonProfit__MailParserCNB\",\"unpackaged/classes/CRMforNonProfit__MailParserCNB.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"42\",\"ApexClass\",\"CRMforNonProfit__ScheduledDispatcher\",\"unpackaged/classes/CRMforNonProfit__ScheduledDispatcher.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: ScheduledDispatcher\"\n\"43\",\"Profile\",\"Identity User\",\"unpackaged/profiles/Identity User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"44\",\"Profile\",\"Chatter External User\",\"unpackaged/profiles/Chatter External User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"45\",\"ApexClass\",\"CRMforNonProfit__TransactionRecord\",\"unpackaged/classes/CRMforNonProfit__TransactionRecord.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"46\",\"ApexClass\",\"CRMforNonProfit__DonorCertificatePDFGenerator\",\"unpackaged/classes/CRMforNonProfit__DonorCertificatePDFGenerator.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"47\",\"ApexClass\",\"CRMforNonProfit__BankLoaderCsasTest\",\"unpackaged/classes/CRMforNonProfit__BankLoaderCsasTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"48\",\"ApexClass\",\"CRMforNonProfit__TestBatchAgregationsNoCompany\",\"unpackaged/classes/CRMforNonProfit__TestBatchAgregationsNoCompany.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"49\",\"ApexClass\",\"CRMforNonProfit__FioConnector\",\"unpackaged/classes/CRMforNonProfit__FioConnector.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"50\",\"ApexClass\",\"CRMforNonProfit__GeorgeNotificationServiceTest\",\"unpackaged/classes/CRMforNonProfit__GeorgeNotificationServiceTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"51\",\"ApexClass\",\"CRMforNonProfit__MailParserTatrabankaEmail\",\"unpackaged/classes/CRMforNonProfit__MailParserTatrabankaEmail.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"52\",\"ApexClass\",\"CRMforNonProfit__Darujme_DailySyncJobCompleteCallout\",\"unpackaged/classes/CRMforNonProfit__Darujme_DailySyncJobCompleteCallout.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"53\",\"ApexClass\",\"CRMforNonProfit__RecurrentDonors\",\"unpackaged/classes/CRMforNonProfit__RecurrentDonors.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: RecurrentDonors\"\n\"54\",\"ApexClass\",\"CRMforNonProfit__InboundEmailReprocess\",\"unpackaged/classes/CRMforNonProfit__InboundEmailReprocess.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: InboundEmailReprocess\"\n\"55\",\"ApexClass\",\"CRMforNonProfit__ContentVersionTriggerHelper_Test\",\"unpackaged/classes/CRMforNonProfit__ContentVersionTriggerHelper_Test.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"56\",\"Profile\",\"MarketingProfile\",\"unpackaged/profiles/MarketingProfile.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"57\",\"ApexClass\",\"CRMforNonProfit__P7MTools\",\"unpackaged/classes/CRMforNonProfit__P7MTools.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"58\",\"ApexClass\",\"CRMforNonProfit__DonorCertificates_Test\",\"unpackaged/classes/CRMforNonProfit__DonorCertificates_Test.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"59\",\"ApexClass\",\"CRMforNonProfit__Darujme_PledgeService\",\"unpackaged/classes/CRMforNonProfit__Darujme_PledgeService.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: Darujme_PledgeService\"\n\"60\",\"ApexClass\",\"CRMforNonProfit__FioAccountsSyncScheduler\",\"unpackaged/classes/CRMforNonProfit__FioAccountsSyncScheduler.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: FioAccountsSyncScheduler\"\n\"61\",\"ApexClass\",\"CRMforNonProfit__TransactionTestDarujme\",\"unpackaged/classes/CRMforNonProfit__TransactionTestDarujme.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"62\",\"ApexClass\",\"CRMforNonProfit__MailParserTatrabankaTest\",\"unpackaged/classes/CRMforNonProfit__MailParserTatrabankaTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"63\",\"Profile\",\"PF1\",\"unpackaged/profiles/PF1.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"64\",\"ApexClass\",\"CRMforNonProfit__BankLoaderMonetaInit\",\"unpackaged/classes/CRMforNonProfit__BankLoaderMonetaInit.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: BankLoaderMonetaInit\"\n\"65\",\"ApexClass\",\"CRMforNonProfit__FioAccountTransactionsDeleteBatch\",\"unpackaged/classes/CRMforNonProfit__FioAccountTransactionsDeleteBatch.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"66\",\"ApexClass\",\"CRMforNonProfit__BankLoaderCsas\",\"unpackaged/classes/CRMforNonProfit__BankLoaderCsas.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: BankLoaderCsas\"\n\"67\",\"ApexClass\",\"CRMforNonProfit__ShoptetOrderDetailViaServTest\",\"unpackaged/classes/CRMforNonProfit__ShoptetOrderDetailViaServTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"68\",\"ApexClass\",\"CRMforNonProfit__MailParserUnicredit\",\"unpackaged/classes/CRMforNonProfit__MailParserUnicredit.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"69\",\"Profile\",\"Chatter Moderator User\",\"unpackaged/profiles/Chatter Moderator User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"70\",\"ApexClass\",\"CRMforNonProfit__ListviewWrapper\",\"unpackaged/classes/CRMforNonProfit__ListviewWrapper.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"71\",\"Profile\",\"Minimum Access - API Only Integrations\",\"unpackaged/profiles/Minimum Access - API Only Integrations.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"72\",\"ApexClass\",\"CRMforNonProfit__CampaignMemberStatusUpdateBatchTest\",\"unpackaged/classes/CRMforNonProfit__CampaignMemberStatusUpdateBatchTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"73\",\"ApexClass\",\"CRMforNonProfit__InboundEmailReprocessTest\",\"unpackaged/classes/CRMforNonProfit__InboundEmailReprocessTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"74\",\"ApexClass\",\"CRMforNonProfit__SendEmailsController\",\"unpackaged/classes/CRMforNonProfit__SendEmailsController.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"75\",\"ApexClass\",\"CRMforNonProfit__OpravaTransakceDarujme\",\"unpackaged/classes/CRMforNonProfit__OpravaTransakceDarujme.cls\",\"Failed\",\"Error:[Line:8 Col:14]:Class OpravaTransakceDarujme must implement the method: System.Iterable<CRMforNonProfit__Transaction__c> Database.Batchable<CRMforNonProfit__Transaction__c>.start(Database.BatchableContext)\"\n\"76\",\"ApexClass\",\"CRMforNonProfit__DonorCertificatesMailingBatch\",\"unpackaged/classes/CRMforNonProfit__DonorCertificatesMailingBatch.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"77\",\"ApexClass\",\"CRMforNonProfit__GeorgeIntegrationSchedulable\",\"unpackaged/classes/CRMforNonProfit__GeorgeIntegrationSchedulable.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: GeorgeIntegrationSchedulable\"\n\"78\",\"ApexClass\",\"CRMforNonProfit__DonorCertificatesJobPreparationBatch\",\"unpackaged/classes/CRMforNonProfit__DonorCertificatesJobPreparationBatch.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"79\",\"ApexClass\",\"CRMforNonProfit__GeorgeIntegrationTest\",\"unpackaged/classes/CRMforNonProfit__GeorgeIntegrationTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"80\",\"ApexClass\",\"CRMforNonProfit__GeorgeTransactionListWrapper\",\"unpackaged/classes/CRMforNonProfit__GeorgeTransactionListWrapper.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"81\",\"ApexClass\",\"CRMforNonProfit__MailParserCNBTest\",\"unpackaged/classes/CRMforNonProfit__MailParserCNBTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"82\",\"ApexClass\",\"CRMforNonProfit__ExamplePublic\",\"unpackaged/classes/CRMforNonProfit__ExamplePublic.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"83\",\"ApexClass\",\"CRMforNonProfit__MailParserDarujmeSkTest\",\"unpackaged/classes/CRMforNonProfit__MailParserDarujmeSkTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"84\",\"ApexClass\",\"CRMforNonProfit__DarujmeSkService\",\"unpackaged/classes/CRMforNonProfit__DarujmeSkService.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: DarujmeSkService\"\n\"85\",\"ApexClass\",\"CRMforNonProfit__MailParserRaiffeisenbank\",\"unpackaged/classes/CRMforNonProfit__MailParserRaiffeisenbank.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"86\",\"ApexClass\",\"CRMforNonProfit__SelfServiceCertificateController\",\"unpackaged/classes/CRMforNonProfit__SelfServiceCertificateController.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"87\",\"ApexClass\",\"CRMforNonProfit__EmailLimitsMock\",\"unpackaged/classes/CRMforNonProfit__EmailLimitsMock.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"88\",\"ApexClass\",\"CRMforNonProfit__ListviewRest\",\"unpackaged/classes/CRMforNonProfit__ListviewRest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"89\",\"ApexClass\",\"CRMforNonProfit__BankLoaderTest\",\"unpackaged/classes/CRMforNonProfit__BankLoaderTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"90\",\"ApexClass\",\"CRMforNonProfit__MailParserKb\",\"unpackaged/classes/CRMforNonProfit__MailParserKb.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"91\",\"ApexClass\",\"CRMforNonProfit__UniCreditSyncScheduler\",\"unpackaged/classes/CRMforNonProfit__UniCreditSyncScheduler.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: UniCreditSyncScheduler\"\n\"92\",\"ApexClass\",\"CRMforNonProfit__MailParserUnicreditSKTest\",\"unpackaged/classes/CRMforNonProfit__MailParserUnicreditSKTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"93\",\"ApexClass\",\"CRMforNonProfit__Darujme_DailySyncJobCompleteTest\",\"unpackaged/classes/CRMforNonProfit__Darujme_DailySyncJobCompleteTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"94\",\"ApexClass\",\"CRMforNonProfit__MailParserUnicreditSK\",\"unpackaged/classes/CRMforNonProfit__MailParserUnicreditSK.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"95\",\"ApexClass\",\"CRMforNonProfit__MonetaAccounts\",\"unpackaged/classes/CRMforNonProfit__MonetaAccounts.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"96\",\"Profile\",\"SolutionManager\",\"unpackaged/profiles/SolutionManager.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"97\",\"ApexClass\",\"CRMforNonProfit__RetryFailedGeorgeNotificationsBatchTest\",\"unpackaged/classes/CRMforNonProfit__RetryFailedGeorgeNotificationsBatchTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"98\",\"ApexClass\",\"CRMforNonProfit__TransactionLoaderQueueable\",\"unpackaged/classes/CRMforNonProfit__TransactionLoaderQueueable.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"99\",\"ApexClass\",\"CRMforNonProfit__BankLoaderCsasQueueable\",\"unpackaged/classes/CRMforNonProfit__BankLoaderCsasQueueable.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"100\",\"ApexClass\",\"CRMforNonProfit__GeorgeNotificationService\",\"unpackaged/classes/CRMforNonProfit__GeorgeNotificationService.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: GeorgeNotificationService\"\n\"101\",\"ApexClass\",\"CRMforNonProfit__MailParserTatrabanka\",\"unpackaged/classes/CRMforNonProfit__MailParserTatrabanka.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"102\",\"ApexClass\",\"CRMforNonProfit__csasCzMci\",\"unpackaged/classes/CRMforNonProfit__csasCzMci.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"103\",\"Profile\",\"Read Only\",\"unpackaged/profiles/Read Only.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"104\",\"ApexClass\",\"CRMforNonProfit__TransactionAgregationBatchNoCompany\",\"unpackaged/classes/CRMforNonProfit__TransactionAgregationBatchNoCompany.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: TransactionAgregationBatchNoCompany\"\n\"105\",\"ApexClass\",\"CRMforNonProfit__javaCzCsasMciCblBomPub\",\"unpackaged/classes/CRMforNonProfit__javaCzCsasMciCblBomPub.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"106\",\"ApexClass\",\"CRMforNonProfit__BankLoaderMoneta\",\"unpackaged/classes/CRMforNonProfit__BankLoaderMoneta.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: BankLoaderMoneta\"\n\"107\",\"ApexClass\",\"CRMforNonProfit__UniCreditStatementMock\",\"unpackaged/classes/CRMforNonProfit__UniCreditStatementMock.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"108\",\"ApexClass\",\"CRMforNonProfit__BankLoaderMonetaGet\",\"unpackaged/classes/CRMforNonProfit__BankLoaderMonetaGet.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: BankLoaderMonetaGet\"\n\"109\",\"Profile\",\"Sales Insights Integration User\",\"unpackaged/profiles/Sales Insights Integration User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"110\",\"ApexClass\",\"CRMforNonProfit__DarujmeSkServiceTest\",\"unpackaged/classes/CRMforNonProfit__DarujmeSkServiceTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"111\",\"ApexClass\",\"CRMforNonProfit__ContactCampaignAgregationBatch\",\"unpackaged/classes/CRMforNonProfit__ContactCampaignAgregationBatch.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: ContactCampaignAgregationBatch\"\n\"112\",\"ApexClass\",\"CRMforNonProfit__MailParserKbTest\",\"unpackaged/classes/CRMforNonProfit__MailParserKbTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"113\",\"ApexClass\",\"CRMforNonProfit__PDFGeneratorController\",\"unpackaged/classes/CRMforNonProfit__PDFGeneratorController.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"114\",\"ApexClass\",\"CRMforNonProfit__SendEmailController_Test\",\"unpackaged/classes/CRMforNonProfit__SendEmailController_Test.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"115\",\"ApexClass\",\"CRMforNonProfit__UniCreditSyncQueueable\",\"unpackaged/classes/CRMforNonProfit__UniCreditSyncQueueable.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"116\",\"ApexClass\",\"CRMforNonProfit__TransactionProcessorTest\",\"unpackaged/classes/CRMforNonProfit__TransactionProcessorTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"117\",\"Profile\",\"ContractManager\",\"unpackaged/profiles/ContractManager.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"118\",\"Profile\",\"Analytics Cloud Integration User\",\"unpackaged/profiles/Analytics Cloud Integration User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"119\",\"ApexClass\",\"CRMforNonProfit__UniCreditConnector\",\"unpackaged/classes/CRMforNonProfit__UniCreditConnector.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"120\",\"ApexClass\",\"CRMforNonProfit__MailParserCsob\",\"unpackaged/classes/CRMforNonProfit__MailParserCsob.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"121\",\"ApexClass\",\"CRMforNonProfit__RetrieveEshopOrder\",\"unpackaged/classes/CRMforNonProfit__RetrieveEshopOrder.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"122\",\"ApexClass\",\"CRMforNonProfit__ScheduledDispatcherTest\",\"unpackaged/classes/CRMforNonProfit__ScheduledDispatcherTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"123\",\"Profile\",\"Guest License User\",\"unpackaged/profiles/Guest License User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"124\",\"ApexClass\",\"CRMforNonProfit__GeorgeIntegration\",\"unpackaged/classes/CRMforNonProfit__GeorgeIntegration.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: GeorgeIntegration\"\n\"125\",\"ApexClass\",\"CRMforNonProfit__ListViewQueryMock\",\"unpackaged/classes/CRMforNonProfit__ListViewQueryMock.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"126\",\"ApexClass\",\"CRMforNonProfit__SelfServiceCertificateController_Test\",\"unpackaged/classes/CRMforNonProfit__SelfServiceCertificateController_Test.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"127\",\"ApexClass\",\"CRMforNonProfit__FioConstants\",\"unpackaged/classes/CRMforNonProfit__FioConstants.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"128\",\"Profile\",\"ARProfile1\",\"unpackaged/profiles/ARProfile1.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"129\",\"Profile\",\"End User\",\"unpackaged/profiles/End User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"130\",\"ApexClass\",\"CRMforNonProfit__AccountCampaignAgregationBatch\",\"unpackaged/classes/CRMforNonProfit__AccountCampaignAgregationBatch.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: AccountCampaignAgregationBatch\"\n\"131\",\"ApexClass\",\"CRMforNonProfit__ContactTriggerHelper\",\"unpackaged/classes/CRMforNonProfit__ContactTriggerHelper.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"132\",\"ApexClass\",\"CRMforNonProfit__FioBankAccountsControllerTest\",\"unpackaged/classes/CRMforNonProfit__FioBankAccountsControllerTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"133\",\"ApexClass\",\"CRMforNonProfit__MailParserPrimaBanka\",\"unpackaged/classes/CRMforNonProfit__MailParserPrimaBanka.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"134\",\"Profile\",\"Standard\",\"unpackaged/profiles/Standard.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"135\",\"ApexClass\",\"CRMforNonProfit__OpravaUctuTransakci\",\"unpackaged/classes/CRMforNonProfit__OpravaUctuTransakci.cls\",\"Failed\",\"Error:[Line:8 Col:14]:Class OpravaUctuTransakci must implement the method: System.Iterable<CRMforNonProfit__Transaction__c> Database.Batchable<CRMforNonProfit__Transaction__c>.start(Database.BatchableContext)\"\n\"136\",\"ApexClass\",\"CRMforNonProfit__OpravaPledgeDarujme\",\"unpackaged/classes/CRMforNonProfit__OpravaPledgeDarujme.cls\",\"Failed\",\"Error:[Line:8 Col:14]:Class OpravaPledgeDarujme must implement the method: System.Iterable<CRMforNonProfit__Pledge__c> Database.Batchable<CRMforNonProfit__Pledge__c>.start(Database.BatchableContext)\"\n\"137\",\"ApexClass\",\"CRMforNonProfit__UniCreditSyncSchedulerTest\",\"unpackaged/classes/CRMforNonProfit__UniCreditSyncSchedulerTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"138\",\"ApexClass\",\"CRMforNonProfit__TransactionAgregationBatch\",\"unpackaged/classes/CRMforNonProfit__TransactionAgregationBatch.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: TransactionAgregationBatch\"\n\"139\",\"ApexClass\",\"CRMforNonProfit__Tools\",\"unpackaged/classes/CRMforNonProfit__Tools.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"140\",\"ApexClass\",\"CRMforNonProfit__RetryFailedGeorgeNotificationsBatch\",\"unpackaged/classes/CRMforNonProfit__RetryFailedGeorgeNotificationsBatch.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: RetryFailedGeorgeNotificationsBatch\"\n\"141\",\"ApexClass\",\"CRMforNonProfit__MailParserCsobTest\",\"unpackaged/classes/CRMforNonProfit__MailParserCsobTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"142\",\"ApexClass\",\"CRMforNonProfit__WooCommerceOrderViaServ\",\"unpackaged/classes/CRMforNonProfit__WooCommerceOrderViaServ.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: WooCommerceOrderViaServ\"\n\"143\",\"ApexClass\",\"CRMforNonProfit__GoogleReCaptchaMockGenerator_Test\",\"unpackaged/classes/CRMforNonProfit__GoogleReCaptchaMockGenerator_Test.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: GoogleReCaptchaMockGenerator_Test\"\n\"144\",\"ApexClass\",\"CRMforNonProfit__MailParserPrimaBankaTest\",\"unpackaged/classes/CRMforNonProfit__MailParserPrimaBankaTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"145\",\"Profile\",\"Admin\",\"unpackaged/profiles/Admin.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"146\",\"ApexClass\",\"CRMforNonProfit__FioTransactionsSyncQueueable\",\"unpackaged/classes/CRMforNonProfit__FioTransactionsSyncQueueable.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"147\",\"ApexClass\",\"CRMforNonProfit__BankLoaderMonetaTest\",\"unpackaged/classes/CRMforNonProfit__BankLoaderMonetaTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"148\",\"Profile\",\"Anypoint Integration\",\"unpackaged/profiles/Anypoint Integration.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"149\",\"ApexClass\",\"CRMforNonProfit__ExampleGlobal\",\"unpackaged/classes/CRMforNonProfit__ExampleGlobal.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: ExampleGlobal\"\n\"150\",\"Profile\",\"Chatter Free User\",\"unpackaged/profiles/Chatter Free User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"151\",\"ApexClass\",\"CRMforNonProfit__FioBankAccountsController\",\"unpackaged/classes/CRMforNonProfit__FioBankAccountsController.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"152\",\"ApexClass\",\"CRMforNonProfit__ShoptetOrderDetailViaServ\",\"unpackaged/classes/CRMforNonProfit__ShoptetOrderDetailViaServ.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: ShoptetOrderDetailViaServ\"\n\"153\",\"ApexClass\",\"CRMforNonProfit__BankLoaderCsasQueueableTest\",\"unpackaged/classes/CRMforNonProfit__BankLoaderCsasQueueableTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"154\",\"ApexClass\",\"CRMforNonProfit__CampaignMemberStatusUpdateBatch\",\"unpackaged/classes/CRMforNonProfit__CampaignMemberStatusUpdateBatch.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: CampaignMemberStatusUpdateBatch\"\n\"155\",\"ApexClass\",\"CRMforNonProfit__ScheduledHelper\",\"unpackaged/classes/CRMforNonProfit__ScheduledHelper.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: ScheduledHelper\"\n\"156\",\"Profile\",\"Service Supervisor\",\"unpackaged/profiles/Service Supervisor.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"157\",\"ApexClass\",\"CRMforNonProfit__EmailProcessor\",\"unpackaged/classes/CRMforNonProfit__EmailProcessor.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: EmailProcessor\"\n\"158\",\"ApexClass\",\"CRMforNonProfit__MailParserFio\",\"unpackaged/classes/CRMforNonProfit__MailParserFio.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"159\",\"ApexClass\",\"CRMforNonProfit__TransactionSynchronizerControllerTest\",\"unpackaged/classes/CRMforNonProfit__TransactionSynchronizerControllerTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"160\",\"Profile\",\"Executive Sponsor\",\"unpackaged/profiles/Executive Sponsor.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"161\",\"ApexClass\",\"CRMforNonProfit__OpravaPledgeUcet\",\"unpackaged/classes/CRMforNonProfit__OpravaPledgeUcet.cls\",\"Failed\",\"Error:[Line:8 Col:14]:Class OpravaPledgeUcet must implement the method: System.Iterable<CRMforNonProfit__Pledge__c> Database.Batchable<CRMforNonProfit__Pledge__c>.start(Database.BatchableContext)\"\n\"162\",\"ApexClass\",\"CRMforNonProfit__DonorCertificates\",\"unpackaged/classes/CRMforNonProfit__DonorCertificates.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"163\",\"ApexClass\",\"CRMforNonProfit__MailParserTatrabankaEmailTest\",\"unpackaged/classes/CRMforNonProfit__MailParserTatrabankaEmailTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"164\",\"ApexClass\",\"CRMforNonProfit__TestBatchAgregations\",\"unpackaged/classes/CRMforNonProfit__TestBatchAgregations.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"165\",\"Profile\",\"Site_Service_Messaging_for_Web_85573141 Profile\",\"unpackaged/profiles/Site_Service_Messaging_for_Web_85573141 Profile.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"166\",\"ApexClass\",\"CRMforNonProfit__MailParser\",\"unpackaged/classes/CRMforNonProfit__MailParser.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"167\",\"Profile\",\"ARProfile10\",\"unpackaged/profiles/ARProfile10.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"168\",\"ApexClass\",\"CRMforNonProfit__UniCreditHelper\",\"unpackaged/classes/CRMforNonProfit__UniCreditHelper.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"169\",\"ApexClass\",\"CRMforNonProfit__TransactionLoaderQueueableTest\",\"unpackaged/classes/CRMforNonProfit__TransactionLoaderQueueableTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"170\",\"ApexClass\",\"CRMforNonProfit__AccountTransactionAgregationBatch\",\"unpackaged/classes/CRMforNonProfit__AccountTransactionAgregationBatch.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: AccountTransactionAgregationBatch\"\n\"171\",\"Profile\",\"CPQ Integration User\",\"unpackaged/profiles/CPQ Integration User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"172\",\"ApexClass\",\"CRMforNonProfit__DarujmeSk_DailySyncJobTest\",\"unpackaged/classes/CRMforNonProfit__DarujmeSk_DailySyncJobTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"173\",\"ApexClass\",\"CRMforNonProfit__TransactionSynchronizerController\",\"unpackaged/classes/CRMforNonProfit__TransactionSynchronizerController.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"174\",\"ApexClass\",\"CRMforNonProfit__QueueableStack\",\"unpackaged/classes/CRMforNonProfit__QueueableStack.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"175\",\"ApexClass\",\"CRMforNonProfit__DarujmeSk_DailySyncJob\",\"unpackaged/classes/CRMforNonProfit__DarujmeSk_DailySyncJob.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: DarujmeSk_DailySyncJob\"\n\"176\",\"ApexClass\",\"CRMforNonProfit__Darujme_DailySyncJobComplete\",\"unpackaged/classes/CRMforNonProfit__Darujme_DailySyncJobComplete.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: Darujme_DailySyncJobComplete\"\n\"177\",\"ApexClass\",\"CRMforNonProfit__MailParserDarujme\",\"unpackaged/classes/CRMforNonProfit__MailParserDarujme.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"178\",\"ApexClass\",\"CRMforNonProfit__PDFGeneratorMock_Test\",\"unpackaged/classes/CRMforNonProfit__PDFGeneratorMock_Test.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"179\",\"ApexClass\",\"CRMforNonProfit__ErrorHandler\",\"unpackaged/classes/CRMforNonProfit__ErrorHandler.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"180\",\"Profile\",\"Salesforce API Only System Integrations\",\"unpackaged/profiles/Salesforce API Only System Integrations.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"181\",\"ApexClass\",\"CRMforNonProfit__ErrorHandlerTest\",\"unpackaged/classes/CRMforNonProfit__ErrorHandlerTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"182\",\"Profile\",\"Service Agent\",\"unpackaged/profiles/Service Agent.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"183\",\"ApexClass\",\"CRMforNonProfit__BankLoader\",\"unpackaged/classes/CRMforNonProfit__BankLoader.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: BankLoader\"\n\"184\",\"ApexClass\",\"CRMforNonProfit__WebServiceMockImpl\",\"unpackaged/classes/CRMforNonProfit__WebServiceMockImpl.cls\",\"Failed\",\"Error:[Line:0 Col:0]:File name mismatch with class name: WebServiceMockImpl\"\n\"185\",\"ApexClass\",\"CRMforNonProfit__DonorCertificatesScheduledDispatcher\",\"unpackaged/classes/CRMforNonProfit__DonorCertificatesScheduledDispatcher.cls\",\"Failed\",\"Error:[Line:8 Col:14]:No default constructor available in super type: CRMforNonProfit.ScheduledDispatcher\"\n\"186\",\"ApexClass\",\"CRMforNonProfit__CurrencyHandlerTest\",\"unpackaged/classes/CRMforNonProfit__CurrencyHandlerTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"187\",\"ApexClass\",\"CRMforNonProfit__CustomException\",\"unpackaged/classes/CRMforNonProfit__CustomException.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"188\",\"Profile\",\"Minimum Access - Salesforce\",\"unpackaged/profiles/Minimum Access - Salesforce.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"189\",\"ApexClass\",\"CRMforNonProfit__DonorCertificatesScheduler\",\"unpackaged/classes/CRMforNonProfit__DonorCertificatesScheduler.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"190\",\"ApexClass\",\"CRMforNonProfit__WooCommerceOrderViaServTest\",\"unpackaged/classes/CRMforNonProfit__WooCommerceOrderViaServTest.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"191\",\"Profile\",\"Analytics Cloud Security User\",\"unpackaged/profiles/Analytics Cloud Security User.profile\",\"Failed\",\"Error:[Line:0 Col:0]:Error parsing file: Premature end of file.\"\n\"192\",\"ApexClass\",\"CRMforNonProfit__MonetaTransactions\",\"unpackaged/classes/CRMforNonProfit__MonetaTransactions.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n\"193\",\"ApexClass\",\"CRMforNonProfit__TransactionService\",\"unpackaged/classes/CRMforNonProfit__TransactionService.cls\",\"Failed\",\"Error:[Line:1 Col:1]:Unexpected token '('.\"\n"}],"_postman_id":"624b46b0-4382-46e9-aea2-c48c4646d7d8"},{"name":"Download Restore Criteria Object","id":"a5ad0b9c-70ee-494a-8344-27502a6637b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/restores//criteria/Account/objects/Account/download","description":"<p>Downloads restored data for an object within a criteria branch (binary).</p>\n<p><strong>GET</strong> <code>/restores/&lt;restoreId&gt;/criteria/Account/objects/Account/download</code></p>\n<p><strong>Response:</strong> binary file (not JSON).</p>\n<p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores","","criteria","Account","objects","Account","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"586abb06-4e57-4101-a6ff-e29dd46b5009","name":"restore_incriteria_down","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/restores//criteria/Account/objects/Account/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:50:37 GMT"},{"key":"content-type","value":"application/octet-stream"},{"key":"content-length","value":"105"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"content-disposition","value":"attachment; filename=\"file.gz\""},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:50:37 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:50:37 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:50:37 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:50:37 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"\u001f�\b\u0000\u0000\u0000\u0000\u0000\u0000�S��qQ�tQ�Q�s\r�0<��C��]��!\u001c� W�\u0010W��kP��\u0012����aJ�\u0001\bDT\u001a\u001b�9::\u0001%�\n�\u0014��\u0002��Ĝb ������\u0000C'B\u0010M'\u0000��V\r�\u0000\u0000\u0000"}],"_postman_id":"a5ad0b9c-70ee-494a-8344-27502a6637b6"},{"name":"Download Restore Object (duplicate)","id":"4f1b31e3-3bba-4b92-bbe5-3cf575302e5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"}],"url":"/ARVault/api/v1/restores//objects/Account/download","description":"<p><strong>Duplicate</strong> of <em>Download Restore Object</em> — same endpoint <code>GET /restores/&lt;restoreId&gt;/objects/Account/download</code>. Kept from the original import; safe to delete.</p>\n<p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores","","objects","Account","download"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"0b36c966-e69a-4615-811b-d28267ab0b6a","name":"RESTORE_OB_DOWN","originalRequest":{"method":"GET","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"}],"url":"/ARVault/api/v1/restores//objects/Account/download"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:48:07 GMT"},{"key":"content-type","value":"application/octet-stream"},{"key":"content-length","value":"424"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"content-disposition","value":"attachment; filename=\"file.gz\""},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:48:07 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:48:07 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:48:07 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:48:07 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"\u001f�\b\u0000\u0000\u0000\u0000\u0000\u0000���AS�@\u0018��{�b��6V���\u0010�HR\u0003���lHA\u0012\u0014`f�>\u0019��{��\u000e��sݝטx�rm�e�����\rVAhYN\u0010\u001c\u0017��3������7N�No�p;�3�����94Z-�EgU|���m�é�Z������`�������Q�tV�z�W���Ve��:-�*I?�.�\u0013U7�:��m^�\u000e��.w���?�3�k�Z�>�/Y���\u0017,?g���\u0003��Y���,?a�1�߳���#�wY���oX���\u001d��Y�b�!˛,/�5���W,��]��`�s�?c�\u000e�˞�Y~��_,�e���+�/Y���\u000b��Y���3�߰�\u001b˧,���+��,�fy��\t���x�v<a;��\u001dO؎'lH�\u0019˳\u001dO؎'l�\u0013��\t���x�v<aC�ܱ<���x�v<a;��\u001dO؎'l�\u00136�I�=�\u001dO؎'l�\u0013��\t���x��\u001d�\u0017AI�/�,\u0000\u0000"}],"_postman_id":"4f1b31e3-3bba-4b92-bbe5-3cf575302e5c"}],"id":"d7c4e796-24ec-407b-93c6-f130c4c90fb7","description":"<p>Read-only endpoints for a restore job identified by <code>&lt;restoreId&gt;</code>: status/summary, live logs, and object/metadata/log downloads.</p>\n","_postman_id":"d7c4e796-24ec-407b-93c6-f130c4c90fb7"},{"name":"Search & Manage (POST)","item":[{"name":"Search Backups","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.items && res.data.items.length) ? res.data.items[0].id : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('backupId', String(val));","        console.log('Captured backupId =', String(val));","    } else {","        console.log('No backupId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping backupId capture');","}"],"id":"fa8e33a7-096f-4679-be91-dc2fdb9ab737"}}],"id":"22872f38-4786-4bd0-a23a-103f81a0f91c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"configIds\": [\"\"],\n  \"page\": 1,\n  \"pageSize\": 10\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/backups/search","description":"<p>Paged search of backup jobs for the given config(s).</p>\n<p><strong>POST</strong> <code>/backups/search</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>configIds</code></td>\n<td>string[]</td>\n<td>yes</td>\n<td>Config id(s) to filter by (<code>[&lt;configId&gt;]</code>)</td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>int</td>\n<td>yes</td>\n<td>1-based page number</td>\n</tr>\n<tr>\n<td><code>pageSize</code></td>\n<td>int</td>\n<td>yes</td>\n<td>Rows per page</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response — <code>data.items[]</code>:</strong> <code>id</code>, <code>name</code>, <code>status</code>, <code>summary.{data,metadata}.{success,failure}</code>.</p>\n<p><strong>Consumes:</strong> <code>&lt;configId&gt;</code> · <strong>Produces:</strong> <code>&lt;backupId&gt;</code> &lt;- <code>data.items[0].id</code></p>\n","urlObject":{"path":["ARVault","api","v1","backups","search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"a2a2840f-cf59-4883-826a-c24376730fee","name":"backupserch","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"configIds\": [\"\"],\n  \"page\": 1,\n  \"pageSize\": 10\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/backups/search"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:47:05 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:47:05 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:47:05 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:47:05 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:47:05 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Backups fetched successfully.\",\n    \"data\": {\n        \"items\": [\n            {\n                \"id\": \"fa8a5921-5c06-21dd-458f-870593bcb05f\",\n                \"name\": \"API Backup Test\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": \"3ef18014-0793-5c18-8366-248a106aa167\",\n                \"name\": \"API Backup Test\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": \"b0480b3d-c88a-5222-04d1-7efce1a604f6\",\n                \"name\": \"API Backup Test\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": \"ee4911b5-296b-d099-fac5-92d7a25cdf0f\",\n                \"name\": \"ARV_Backup_Mon, 08-Dec-25 10:53 AM GMT\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 15,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            }\n        ],\n        \"page\": 1,\n        \"pageSize\": 10,\n        \"total\": 4\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:47:05\"\n}"}],"_postman_id":"22872f38-4786-4bd0-a23a-103f81a0f91c"},{"name":"Search Archives","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.items && res.data.items.length) ? res.data.items[0].id : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('archiveId', String(val));","        console.log('Captured archiveId =', String(val));","    } else {","        console.log('No archiveId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping archiveId capture');","}"],"id":"1a0a39a0-0ee9-4385-8e3f-64377050ba6f"}}],"id":"611fbb85-7ce2-4017-a954-4e3af8dd2c60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"configIds\": [\"\"],\n  \"page\": 1,\n  \"pageSize\": 10\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/archives/search","description":"<p>Paged search of archive jobs for the given config(s).</p>\n<p><strong>POST</strong> <code>/archives/search</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>configIds</code></td>\n<td>string[]</td>\n<td>yes</td>\n<td>Config id(s) to filter by (<code>[&lt;configId&gt;]</code>)</td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>int</td>\n<td>yes</td>\n<td>1-based page number</td>\n</tr>\n<tr>\n<td><code>pageSize</code></td>\n<td>int</td>\n<td>yes</td>\n<td>Rows per page</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response — <code>data.items[]</code>:</strong> <code>id</code>, <code>name</code>, <code>status</code>, <code>summary.{data,archive}.{success,failure}</code>.</p>\n<p><strong>Consumes:</strong> <code>&lt;configId&gt;</code> · <strong>Produces:</strong> <code>&lt;archiveId&gt;</code> &lt;- <code>data.items[0].id</code></p>\n","urlObject":{"path":["ARVault","api","v1","archives","search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"5b249d46-acea-4d8c-8036-23dcb666a0e7","name":"archive_search","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"configIds\": [\"\"],\n  \"page\": 1,\n  \"pageSize\": 10\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/archives/search"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:51:24 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:51:24 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:51:24 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:51:24 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:51:24 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Archives fetched successfully.\",\n    \"data\": {\n        \"items\": [\n            {\n                \"id\": \"428c8452-a1a1-2009-b38e-99eddd665ccd\",\n                \"name\": \"ARV_Archive_Mon, 01-Jun-26 01:25 PM GMT\",\n                \"status\": \"STOPED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 632,\n                        \"failure\": 0\n                    },\n                    \"archive\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": \"16882884-b70f-3f58-21d9-b1a0cd3f96b5\",\n                \"name\": \"ARV_Archive_Mon, 16-Mar-26 11:24 AM GMT\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 800,\n                        \"failure\": 0\n                    },\n                    \"archive\": {\n                        \"success\": 800,\n                        \"failure\": 0\n                    }\n                }\n            }\n        ],\n        \"page\": 1,\n        \"pageSize\": 10,\n        \"total\": 2\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:51:24\"\n}"}],"_postman_id":"611fbb85-7ce2-4017-a954-4e3af8dd2c60"},{"name":"Search Restores","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.items && res.data.items.length) ? res.data.items[0].id : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('restoreId', String(val));","        console.log('Captured restoreId =', String(val));","    } else {","        console.log('No restoreId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping restoreId capture');","}"],"id":"6370cb07-2580-434b-8adb-93c5f5313d5e"}}],"id":"0969bb0e-ca58-4ebb-8bac-d71b258af78a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"orgId\": \"\",\n  \"page\": 1,\n  \"pageSize\": 10\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/restores/search","description":"<p>Paged search of restore jobs for an org.</p>\n<p><strong>POST</strong> <code>/restores/search</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orgId</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Salesforce org id (<code>&lt;idSforg&gt;</code>)</td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>int</td>\n<td>yes</td>\n<td>1-based page number</td>\n</tr>\n<tr>\n<td><code>pageSize</code></td>\n<td>int</td>\n<td>yes</td>\n<td>Rows per page</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response — <code>data.items[]</code>:</strong> <code>id</code>, <code>name</code>, <code>status</code>, <code>summary.{data,metadata}.{success,failure}</code>.</p>\n<p><strong>Consumes:</strong> <code>&lt;idSforg&gt;</code> · <strong>Produces:</strong> <code>&lt;restoreId&gt;</code> &lt;- <code>data.items[0].id</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores","search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"c129eddd-71be-4326-b276-9c38238f00b7","name":"restore_search","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"orgId\": \"\",\n  \"page\": 1,\n  \"pageSize\": 10\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/restores/search"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:49:31 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:49:31 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:49:31 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:49:31 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:49:31 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Restores fetched successfully.\",\n    \"data\": {\n        \"items\": [\n            {\n                \"id\": 530191,\n                \"name\": \"ResWOincOnlycomChi4167\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 7,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 530190,\n                \"name\": \"ResWithPartComChildsWOinc4167\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 6,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 530188,\n                \"name\": \"ResSchemaParntsWithIchild4167\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 2,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 530187,\n                \"name\": \"ResFileUpldWOincWcomob4167\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 8,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 530186,\n                \"name\": \"ResfltrSerchWithincWOcomob4167\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 4,\n                        \"failure\": 1\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 530184,\n                \"name\": \"ResCustObjWithpartlObjs4167\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 2,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 530173,\n                \"name\": \"EZResArchive4167\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 10,\n                        \"failure\": 1\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 529182,\n                \"name\": \"ResWOincOnlycomChisasn\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 7,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 529181,\n                \"name\": \"ResWithPartComChildsWOincsasn\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 6,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            },\n            {\n                \"id\": 529180,\n                \"name\": \"ResSchemaParntsWithIchildsasn\",\n                \"status\": \"COMPLETED\",\n                \"summary\": {\n                    \"data\": {\n                        \"success\": 2,\n                        \"failure\": 0\n                    },\n                    \"metadata\": {\n                        \"success\": 0,\n                        \"failure\": 0\n                    }\n                }\n            }\n        ],\n        \"page\": 1,\n        \"pageSize\": 10,\n        \"total\": 23\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:49:31\"\n}"}],"_postman_id":"0969bb0e-ca58-4ebb-8bac-d71b258af78a"},{"name":"Confirm Archive","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.id) ? res.data.id : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('archiveId', String(val));","        console.log('Captured archiveId =', String(val));","    } else {","        console.log('No archiveId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping archiveId capture');","}"],"id":"6c89c204-0176-43be-a31b-accd255acdcd"}}],"id":"619a6aa6-53ba-4e42-9563-7d86e4e40f79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\",\n  \"options\": {\n    \"batchSize\": 200,\n    \"concurrencyMode\": \"Parallel\",\n    \"preventChildRecordsDeletion\": false,\n    \"automation\": {\n      \"flows\": false,\n      \"triggers\": false,\n      \"validationRules\": false,\n      \"workflows\": false\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/archives/confirm","description":"<p>Finalizes (confirms) an archive job so the source records are deleted per the archive plan.</p>\n<p><strong>POST</strong> <code>/archives/confirm</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>uuid</td>\n<td>yes</td>\n<td>Archive job id (<code>&lt;archiveId&gt;</code>)</td>\n</tr>\n<tr>\n<td><code>options.batchSize</code></td>\n<td>int</td>\n<td>no</td>\n<td>Records per batch</td>\n</tr>\n<tr>\n<td><code>options.concurrencyMode</code></td>\n<td>enum</td>\n<td>no</td>\n<td><code>Parallel</code> / <code>Serial</code></td>\n</tr>\n<tr>\n<td><code>options.preventChildRecordsDeletion</code></td>\n<td>bool</td>\n<td>no</td>\n<td>Keep child records</td>\n</tr>\n<tr>\n<td><code>options.automation.{flows,triggers,validationRules,workflows}</code></td>\n<td>bool</td>\n<td>no</td>\n<td>Toggle automation during delete</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data.id</code> = archive job id.</p>\n<p><strong>Consumes:</strong> <code>&lt;archiveId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","archives","confirm"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"3d6898ac-8597-4982-8e82-8d7cbcad1588","name":"confirm archive","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\",\n  \"options\": {\n    \"batchSize\": 200,\n    \"concurrencyMode\": \"Parallel\",\n    \"preventChildRecordsDeletion\": false,\n    \"automation\": {\n      \"flows\": false,\n      \"triggers\": false,\n      \"validationRules\": false,\n      \"workflows\": false\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/archives/confirm"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 10:49:43 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 10:49:43 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 10:49:43 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 10:49:43 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 10:49:43 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Archive started successfully.\",\n    \"data\": {\n        \"id\": \"25d41082-f3e4-2655-0452-8d1e34c41c15\"\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T10:49:43\"\n}"}],"_postman_id":"619a6aa6-53ba-4e42-9563-7d86e4e40f79"},{"name":"Retry Archive","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.id) ? res.data.id : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('archiveId', String(val));","        console.log('Captured archiveId =', String(val));","    } else {","        console.log('No archiveId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping archiveId capture');","}"],"id":"cdb4bd38-3c40-41bc-95e7-20b58d6f4b6d"}}],"id":"3b0acafa-ebdd-49e4-b105-00b21bbc3418","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/archives/retry","description":"<p>Retries a failed/partial archive against its source backup.</p>\n<p><strong>POST</strong> <code>/archives/retry</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>yes</td>\n<td><strong>Backup id</strong> the archive is retried against (<code>&lt;backupId&gt;</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data.id</code> = archive job id.</p>\n<p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code> · <strong>Produces:</strong> <code>&lt;archiveId&gt;</code> &lt;- <code>data.id</code></p>\n","urlObject":{"path":["ARVault","api","v1","archives","retry"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"dad254c9-2c7e-4b5f-b2c1-03a6e2f6119e","name":"archive_retry","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/archives/retry"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:51:14 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:51:14 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:51:14 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:51:14 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:51:14 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Archive started successfully.\",\n    \"data\": {\n        \"id\": \"c3e27fa1-288a-f8cd-218f-9b893dbac1d4\"\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:51:14\"\n}"}],"_postman_id":"3b0acafa-ebdd-49e4-b105-00b21bbc3418"},{"name":"Retry Restore","event":[{"listen":"test","script":{"type":"text/javascript","exec":["// Auto-capture id from response into a collection variable for chaining","try {","    const res = pm.response.json();","    const val = (res.data && res.data.id) ? res.data.id : null;","    if (val !== null && val !== undefined && String(val).length) {","        pm.collectionVariables.set('restoreId', String(val));","        console.log('Captured restoreId =', String(val));","    } else {","        console.log('No restoreId found in response to capture');","    }","} catch (e) {","    console.log('Response not JSON, skipping restoreId capture');","}"],"id":"7a724cea-7cdc-42c9-a345-19f83fda8935"}}],"id":"7b707c0c-78e5-4930-8555-70fa43da0cdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/restores/retry","description":"<p>Retries a failed/partial restore job.</p>\n<p><strong>POST</strong> <code>/restores/retry</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>number</td>\n<td>yes</td>\n<td>Restore job id (<code>&lt;restoreId&gt;</code>, numeric — sent unquoted)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data.id</code> = restore job id.</p>\n<p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code> · <strong>Produces:</strong> <code>&lt;restoreId&gt;</code> &lt;- <code>data.id</code></p>\n","urlObject":{"path":["ARVault","api","v1","restores","retry"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"46581132-33af-4bb1-8a87-7fed24efde5b","name":"restore_retry","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/restores/retry"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:49:42 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:49:42 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:49:42 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:49:42 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:49:42 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Restore started successfully.\",\n    \"data\": {\n        \"id\": \"382207\"\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:49:42\"\n}"}],"_postman_id":"7b707c0c-78e5-4930-8555-70fa43da0cdc"}],"id":"2f08f6e5-2165-4ca8-b394-2345944b755d","description":"<p>Paged search for existing Backup/Archive/Restore jobs, plus Confirm/Retry actions. Search captures the first result id into the matching variable.</p>\n","_postman_id":"2f08f6e5-2165-4ca8-b394-2345944b755d"},{"name":"Stop (POST)","item":[{"name":"Stop Backup","id":"8227c1dd-a58e-4476-a871-4a1a3153de94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/stop-process/backups","description":"<p>Aborts a running backup job.</p>\n<p><strong>POST</strong> <code>/stop-process/backups</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Backup job id (<code>&lt;backupId&gt;</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data.stopped</code> = <code>true</code> on success.</p>\n<p><strong>Consumes:</strong> <code>&lt;backupId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","stop-process","backups"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"b58d3369-c177-4a8a-9c3e-2a504413fb13","name":"stop_backup","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/stop-process/backups"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:55:19 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:55:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:55:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:55:19 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:55:19 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Stop initiated successfully.\",\n    \"data\": {\n        \"id\": \"84203237-48e4-bd2e-f7eb-b7835b4ac0f9\",\n        \"stopped\": true\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:55:19\"\n}"}],"_postman_id":"8227c1dd-a58e-4476-a871-4a1a3153de94"},{"name":"Stop Archive","id":"20bbc70b-0e3c-44a7-8d55-ac6f79167615","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/stop-process/archives","description":"<p>Aborts a running archive job.</p>\n<p><strong>POST</strong> <code>/stop-process/archives</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Archive job id (<code>&lt;archiveId&gt;</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data.stopped</code> = <code>true</code> on success.</p>\n<p><strong>Consumes:</strong> <code>&lt;archiveId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","stop-process","archives"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"3ca10ca6-0ff5-4a36-9fde-a7b84f0de33e","name":"stop_archive","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/stop-process/archives"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Wed, 03 Jun 2026 11:54:04 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Wed, 10 Jun 2026 11:54:04 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Wed, 10 Jun 2026 11:54:04 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Wed, 10 Jun 2026 11:54:04 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Wed, 10 Jun 2026 11:54:04 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Stop initiated successfully.\",\n    \"data\": {\n        \"id\": \"4b74fe10-faba-a78e-6910-43a02c2a79e4\",\n        \"stopped\": true\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-03T11:54:04\"\n}"}],"_postman_id":"20bbc70b-0e3c-44a7-8d55-ac6f79167615"},{"name":"Stop Restore","id":"e60976e0-6012-4ce1-a7f1-e273619358d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"<p>Originating client IP of the end user (audit / rate-limiting).</p>\n","type":"text"},{"key":"X-Source-Product","value":"","description":"<p><strong>Required.</strong> Identifier of the calling AutoRabit product/integration (audit + routing).</p>\n","type":"text"},{"key":"X-API-TOKEN","value":"","description":"<p><strong>Required.</strong> Vault API authentication token issued for the calling product. Sent on every request.</p>\n","type":"text"},{"key":"Content-Type","value":"application/json","description":"<p>Set to <code>application/json</code> for requests that carry a JSON body.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/stop-process/restores","description":"<p>Aborts a running restore job.</p>\n<p><strong>POST</strong> <code>/stop-process/restores</code></p>\n<p><strong>Request body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Req</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>yes</td>\n<td>Restore job id (<code>&lt;restoreId&gt;</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Response:</strong> <code>data.stopped</code> = <code>true</code> on success.</p>\n<p><strong>Consumes:</strong> <code>&lt;restoreId&gt;</code></p>\n","urlObject":{"path":["ARVault","api","v1","stop-process","restores"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"4db96c25-e3df-4544-b88b-a8b49b8db097","name":"stop_restore","originalRequest":{"method":"POST","header":[{"key":"X-Client-IP","value":"","description":"Originating client IP of the end user (audit / rate-limiting).","type":"text"},{"key":"X-Source-Product","value":"","description":"**Required.** Identifier of the calling AutoRabit product/integration (audit + routing).","type":"text"},{"key":"X-API-TOKEN","value":"","description":"**Required.** Vault API authentication token issued for the calling product. Sent on every request.","type":"text"},{"key":"Content-Type","value":"application/json","description":"Set to `application/json` for requests that carry a JSON body.","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"/ARVault/api/v1/stop-process/restores"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":":status","value":200},{"key":"date","value":"Mon, 01 Jun 2026 13:28:37 GMT"},{"key":"content-type","value":"application/json"},{"key":"server","value":"Apache"},{"key":"x-content-type-options","value":"nosniff"},{"key":"content-security-policy","value":"default-src 'self' https://edge.fullstory.com https://rs.fullstory.com; connect-src 'self' https://api.bigdatacloud.net https://api-bdc.io https://api.ipify.org https://edge.fullstory.com https://rs.fullstory.com https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; frame-ancestors 'self'; img-src data: 'self' https://data.pendo.io; frame-src 'self' https://app.pendo.io https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/; script-src 'self' https://d3js.org https://www.google.com/recaptcha/ https://www.gstatic.com/recaptcha/ https://cdn.pendo.io https://edge.fullstory.com https://data.pendo.io https://app.pendo.io https://pendo-static-6580644462460928.storage.googleapis.com; style-src 'self' https://cdn.pendo.io https://fonts.googleapis.com https://cdn.jsdelivr.net 'unsafe-inline'; font-src 'self' https://fonts.gstatic.com https://cdn.jsdelivr.net; object-src 'none'; upgrade-insecure-requests"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN, DENY"},{"key":"permissions-policy","value":"geolocation=(self),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()"},{"key":"referrer-policy","value":"same-origin"},{"key":"vary","value":"Origin,Access-Control-Request-Method,Access-Control-Request-Headers"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cache-control","value":"no-store, no-cache, must-revalidate"},{"key":"pragma","value":"no-cache"},{"key":"x-webkit-csp","value":"default-src 'self'"},{"key":"x-permitted-cross-domain-policies","value":"master-only"},{"key":"access-control-allow-methods","value":"POST, GET"},{"key":"access-control-allow-origin","value":"*.example.com"},{"key":"set-cookie","value":"AWSALBAPP-0=_remove_; Expires=Mon, 08 Jun 2026 13:28:37 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-1=_remove_; Expires=Mon, 08 Jun 2026 13:28:37 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-2=_remove_; Expires=Mon, 08 Jun 2026 13:28:37 GMT; Path=/"},{"key":"set-cookie","value":"AWSALBAPP-3=_remove_; Expires=Mon, 08 Jun 2026 13:28:37 GMT; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"Stop initiated successfully.\",\n    \"data\": {\n        \"id\": \"140545\",\n        \"stopped\": true\n    },\n    \"status\": 200,\n    \"timestamp\": \"2026-06-01T13:28:37\"\n}"}],"_postman_id":"e60976e0-6012-4ce1-a7f1-e273619358d5"}],"id":"d09ee724-1fef-472d-964a-5f0ddc611ce9","description":"<p>Abort a running Backup/Archive/Restore job by id. Returns <code>data.stopped = true</code> on success.</p>\n","_postman_id":"d09ee724-1fef-472d-964a-5f0ddc611ce9"}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"requests":{},"exec":["pm.request.headers.upsert({","    key: \"X-API-TOKEN\",","    value: pm.collectionVariables.get(\"X-API-TOKEN\")","});","","pm.request.headers.upsert({","    key: \"X-Source-Product\",","    value: pm.collectionVariables.get(\"X-Source-Product\")","});","","pm.request.headers.upsert({","    key: \"X-Client-IP\",","    value: pm.collectionVariables.get(\"X-Client-IP\")","});",""],"id":"2217728b-f230-48c7-9389-023071412eab"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"requests":{},"exec":[""],"id":"12c453c6-b366-4db3-931a-2f5af46eabfb"}}],"variable":[{"key":"X-Client-IP","value":""},{"key":"X-Source-Product","value":""},{"key":"X-API-TOKEN","value":""},{"key":"baseUrl","value":""},{"key":"idSforg","value":""},{"key":"configId","value":""},{"key":"backupId","value":""},{"key":"restoreId","value":""},{"key":"archiveId","value":""},{"key":"salesforce_consumer_key_07ml"},{"key":"salesforce_consumer_key_1bgw"},{"key":"salesforce_consumer_key_0nqg"},{"key":"salesforce_consumer_key_04ff"},{"key":"salesforce_consumer_key_0skd"},{"key":"salesforce_consumer_key_0qw8"},{"key":"salesforce_consumer_key_1ary"}]}