{"info":{"_postman_id":"c014fd25-aa0d-4ac4-b35a-5e190e193e9b","name":"AIAD Platform API","description":"<html><head></head><body><p>Version {{ version }}</p>\n<p>Welcome to the <a href=\"http://aiadvertising.com\">AiAdvertising</a> Platform API. You can use this api to programmatically access and manage your organization's Ai Ad Platform instance. </p>\n<p>You can view code examples in the programming language of your choice by selecting the options in the navigation bar above. </p>\n<br>\n<br>\n\n<h1 id=\"rest-api\">REST API</h1>\n<h3 id=\"restful-endpoints\">RESTful Endpoints</h3>\n<p>The API URL structure follows typical resource-oriented conventions.</p>\n<p>To get a list of Campaigns, use the following:</p>\n<p><code>GET https://api.aiadvertising.com/campaigns</code></p>\n<p>This returns a list of Campaign objects, where each campaign has an id attribute. To get details on the campaign by id, use the following (be sure to replace with an actual id):</p>\n<p><code>GET https://api.aiadvertising/campaigns/{id}</code></p>\n<br>\n\n<h3 id=\"http-status-codes\">HTTP Status Codes</h3>\n<p>The Ai Ad Platform uses a combination of HTTP status codes and custom error codes with a descriptive message in JSON-formatted Error objects to give you a more complete picture of what has happened with your request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>2XX</strong></td>\n<td>Request was successful.</td>\n</tr>\n<tr>\n<td><strong>4XX</strong></td>\n<td>A problem with request prevented it from executing successfully.</td>\n</tr>\n<tr>\n<td><strong>5XX</strong></td>\n<td>The request was properly formatted, but the operation failed on AIAD's backend.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"http-headers\">HTTP Headers</h3>\n<p>Unless otherwise specified, all API endpoints expect request body data to be in JSON, and the response body data is returned as JSON.</p>\n<p>The following HTTP request headers may be required, depending on the operation and endpoint being used:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Definition</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Authorization</strong></td>\n<td>Required for all endpoints, except for login. Should contain a valid bearer token.</td>\n<td><code> Bearer ...</code></td>\n</tr>\n<tr>\n<td><strong>Content-Type</strong></td>\n<td>Required for POST and PUT requests. Defines the structure for the response.</td>\n<td><code>application/json</code></td>\n</tr>\n<tr>\n<td><strong>X-ORGANIZATION-SLUG</strong></td>\n<td>Required for all requests - this determines which tenant the api is routed to</td>\n<td><code>kaizen</code></td>\n</tr>\n<tr>\n<td><strong>X-WORKSPACE-SLUG</strong></td>\n<td>Optional for all requests - this determines which workspace within the Organization the date should be saved against</td>\n<td><code>division</code></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"authentication\">Authentication</h1>\n<p>AIAD uses a json web token based approach to authentication and data access. Once a user is logged in, AIAD creates a new JWT referencing the user. This token is required when making subsequent REST requests for the access control system to validate that the user can invoke methods on a given Model</p>\n<p>You can pass the token via the Authorization header as a Bearer Token</p>\n<p><strong>As Authorization Header</strong></p>\n<p><code>curl -X GET -H \"Authorization: Bearer \"bGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6Im1xOUZjcU95MWxZcG...\"</code></p>\n<p>Be sure to replace with a valid token</p>\n<h1 id=\"filters\">Filters</h1>\n<p>Use filters with queries to scope what data is returned from the API.</p>\n<h3 id=\"usage\">Usage</h3>\n<p>When querying models, filters specify criteria for the returned data set. You can use filters to scope down the returned results, select specific fields, sort results, or apply pagination.</p>\n<p>Filters can be used when querying AiAdvertising models as well as records that come from external sources.</p>\n<h3 id=\"filter-types\">Filter Types</h3>\n<p>AiAdvertising supports a specific filter syntax: it's based on the MongoDB Query Syntax, but is designed specifically to serialize safely without injection. You can use any number of filters to define a query. The types are as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Filter</strong></td>\n<td>Specify the filter criteria; similar to a WHERE clause in SQL</td>\n</tr>\n<tr>\n<td><strong>Fields</strong></td>\n<td>Specify attributes to include in or exclude from the response</td>\n</tr>\n<tr>\n<td><strong>Order</strong></td>\n<td>Specify sort order: ascending or descending</td>\n</tr>\n<tr>\n<td><strong>Skip</strong></td>\n<td>Skip (offset) the specified number of records</td>\n</tr>\n<tr>\n<td><strong>Limit</strong></td>\n<td>Limit the number of instances to return</td>\n</tr>\n<tr>\n<td><strong>Include</strong></td>\n<td>Specify related Models to include in your query</td>\n</tr>\n</tbody>\n</table>\n</div><br>\n<br>\n\n<h3 id=\"filter\">Filter</h3>\n<p>A filter specifies a set of logical conditions to match, similar to a WHERE clause in a SQL query. The where filter is formatted as following:</p>\n<p><em>Without an attribute defaults to equivalence</em></p>\n<p><code>?filter={\"field\": \"value\"}</code></p>\n<p><em>With an operator (see below for more details)</em></p>\n<p><code>?filter={\"field\": {\"operator\": \"value\" }}</code></p>\n<br>\n\n<h4 id=\"stringified-json\">Stringified JSON</h4>\n<p>To pass the filter object to the api, you should send the filter as a \"stringified json\" query parameter.</p>\n<p><code>GET https://api.aiadvertising.com/campaigns/${JSON.strigify(filterObject)}</code></p>\n<p>Building a stringified json object is straightforward. You can build your filter as a normal object and then use a <a href=\"https://www.w3schools.com/js/js_json_stringify.asp\">JSON.stringify()</a> command to \"stringify\" the filter object.</p>\n<p>For the full list of supported MongoDB Filter Operators - see their <a href=\"https://docs.mongodb.com/realm/rules/filters/\">documentation</a></p>\n<br>\n\n<h4 id=\"operators\">Operators</h4>\n<p>This table describes the operators available in filters.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>$eq</strong></td>\n<td>Equivalence - can use without an operator to invoke equivalence</td>\n<td><code>{ size: {$eq: 'LG' }}</code></td>\n</tr>\n<tr>\n<td><strong>$ne</strong></td>\n<td>Not equal to (!=)</td>\n<td><code>{size: {$ne:'SM'}}</code></td>\n</tr>\n<tr>\n<td><strong>$and</strong></td>\n<td>Apply multiple filters at once</td>\n<td><code>{$and:[{size:'LG'}, {size:'MD'}]}</code></td>\n</tr>\n<tr>\n<td><strong>$or</strong></td>\n<td>Apply multiple filters at once</td>\n<td><code>{$or:[{size:'LG'}, {size:'MD'}]}</code></td>\n</tr>\n<tr>\n<td><strong>$gt, $gte</strong></td>\n<td>Greater than; Greater than or equal to</td>\n<td><code>{inventory: {$gt:100 }}</code></td>\n</tr>\n<tr>\n<td><strong>$lt, $lte</strong></td>\n<td>Less than; Lesser than or equal to</td>\n<td><code>{inventory: {$lt:100 }}</code></td>\n</tr>\n<tr>\n<td><strong>$in, $nin</strong></td>\n<td>In / not in an array of values</td>\n<td><code>{size: {$in:['LG', 'MD']}}</code></td>\n</tr>\n<tr>\n<td><strong>$regexp</strong></td>\n<td>Matches a <a href=\"https://www.regular-expressions.info/\">Regular expression</a></td>\n<td><code>let pattern = new RegExp(/John/); {owner: {$regexp: pattern}}</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"fields\">Fields</h3>\n<p>Use the fields query param to limit what fields are returned from the api. If the field filter is not included, the api will return all fields for a resource</p>\n<p>You should pass fields as a comma separated list of fields</p>\n<p><code>?fields=id,size,brand</code></p>\n<p>You can also use the - prefix to return all fields except some specific fields</p>\n<p><code>?fields=-id,-size</code></p>\n<h3 id=\"order\">Order</h3>\n<p>An order query param specifies how to sort the results: ascending (ASC) or descending (DESC) based on the specified property.</p>\n<p>You can pass either a single string or a comma separated list of strings</p>\n<p><em>Order by one property</em></p>\n<p><code>?order=name</code></p>\n<p><em>Order by two or more properties</em></p>\n<p><code>?order=name,size</code></p>\n<p>You can use the - prefix to sort in descending order</p>\n<p><code>?order=-name,-size</code></p>\n<h3 id=\"skip\">Skip</h3>\n<p>A skip query param omits the specified number of returned records. This is useful, for example, to paginate responses.</p>\n<p><code>?skip=50</code></p>\n<p>This skips the first 50 records returned</p>\n<h3 id=\"limit\">Limit</h3>\n<p>A limit query param limits the number of records returned to the specified number (or less)</p>\n<p>You can pass either an array or an object with boolean values</p>\n<p><code>?limit=50</code></p>\n<p>This returns only the first 50 records (or less). </p>\n<p><strong>Note</strong> - The max limit 500. If you need to fetch more than 500 records, you will need to make additional api calls.</p>\n<h3 id=\"include\">Include</h3>\n<p>An include query param allows you to include related sub models in your request</p>\n<p>For Example, to include attachments for a given Asset you could use the the follow query</p>\n<p><code>?include=attachments</code></p>\n<p>This will return Assets with any related Attachments in an array as attachments.</p>\n<h3 id=\"archived\">Archived</h3>\n<p>The Ai Ad Platform uses a technique call \"Soft Deletion\" that allows you to archive records without actually removing them from the database. If you would like to include archived records in your queries - you should append the archived query param with a true value. </p>\n<p><code>?archived=true</code></p>\n<p>This will return Assets with any related Attachments in an array as attachments.</p>\n<h1 id=\"user-types\">User Types</h1>\n<p>User types determine at an application wide level what a user can access &amp; do.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>ADMIN</strong></td>\n<td>Access to all data, the administration center &amp; more</td>\n</tr>\n<tr>\n<td><strong>USER</strong></td>\n<td>Can access &amp; view their Organization's entities &amp; performance data.</td>\n</tr>\n<tr>\n<td><strong>GUEST</strong></td>\n<td>Can only access certain resources where they are granted access</td>\n</tr>\n<tr>\n<td><br></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"dates-times\">Dates &amp; Times</h1>\n<p>The Ai Ad Platform API returns all dates and times in the <a href=\"https://en.wikipedia.org/wiki/Coordinated_Universal_Time\">UTC</a> time zone in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO-8601 format</a>, that is, YYYY-MM-DDTHH:MM:SSZ. If a date/time needs to be displayed to an end-user in their local time zone, you must do the conversion using the user's time zone</p>\n<h1 id=\"rate-limiting\">Rate Limiting</h1>\n<p>To prevent abuse and undue stress on the Ai Ad Platform servers, the API has a rate limiting feature that restricts users to 100 requests per minute per access token.</p>\n<p>AiAdvertising reserves the right to enforce this limit depending on the load on our systems. If and when the limit is enforced, any requests that exceed this limit are rejected with an 429 HTTP status code, along with the following JSON response body:</p>\n<p><code>{ \"errorCode\": 409, \"message\": \"Rate limit exceeded.\" }</code></p>\n<p>AiAdvertising recommends that you design your integration to gracefully handle this rate limit error.</p>\n<h1 id=\"updates-changes\">Updates &amp; Changes</h1>\n<p>AiAdvertising will add new functionality and bug fixes to the API over time. Be sure that your code can handle new JSON properties gracefully. Also, make sure your code does not depend on the order in which JSON objects are returned, unless it is explicitly stated in this documentation.</p>\n<h1 id=\"security\">Security</h1>\n<p>We take security very seriously at AIAD. We have taken many parameters to ensure our users data is safe and secure. This includes:</p>\n<ul>\n<li>Invalidating previous access tokens whenever a User changes their password</li>\n<li>Logging each interaction with our API including IP address &amp; location information to detect potential threats</li>\n<li>Following the latest standards in terms of API protection &amp; applying patches / updates to security advisories as quickly as possible.</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"REST API","slug":"rest-api"},{"content":"Authentication","slug":"authentication"},{"content":"Filters","slug":"filters"},{"content":"User Types","slug":"user-types"},{"content":"Dates & Times","slug":"dates-times"},{"content":"Rate Limiting","slug":"rate-limiting"},{"content":"Updates & Changes","slug":"updates-changes"},{"content":"Security","slug":"security"}],"owner":"16002302","collectionId":"c014fd25-aa0d-4ac4-b35a-5e190e193e9b","publishedId":"UVREkkKB","public":true,"customColor":{"top-bar":"000000","right-sidebar":"303030","highlight":"f4c000"},"publishDate":"2021-12-28T16:23:37.000Z"},"item":[{"name":"Analytics","item":[{"name":"Find All Analytics","id":"d30eb9ee-5ae6-48d3-8bf5-d223b7ef1529","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//analytics?archived=<boolean>","urlObject":{"path":["analytics"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"2d8af691-0fea-4b23-8c40-d6149a562efe","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//analytics?archived=<boolean>","host":["/"],"path":["analytics"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"nisi \",\n    \"description\": \"esse dolor deserunt anim\",\n    \"url\": \"ex ullamco fugiat occaecat laborum\",\n    \"updated_by\": \"sit labore in \",\n    \"created_on\": \"1991-06-24T10:25:37.637Z\",\n    \"created_by\": \"veniam deserunt\",\n    \"archived\": false,\n    \"archived_on\": \"1972-08-22T22:03:40.526Z\",\n    \"archived_by\": \"amet exercitation est\",\n    \"organization\": {\n      \"name\": \"irure in\",\n      \"slug\": \"exercitation veniam\",\n      \"logo\": \"voluptate tempor\",\n      \"color\": \"dolor ullamco adipisicing\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"in culpa ullamco eiusmod\",\n      \"ad_spend_tracker_url\": \"pariatur dolore ea\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"quis veniam ullamco\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"et ipsum\",\n      \"updated_on\": \"2007-10-01T11:34:21.215Z\",\n      \"updated_by\": \"occaecat ut labore Duis\",\n      \"created_on\": \"1970-03-02T15:45:40.148Z\",\n      \"created_by\": \"enim veniam minim labore\",\n      \"archived\": true,\n      \"archived_on\": \"2009-02-28T16:21:19.711Z\",\n      \"archived_by\": \"occaecat Duis consectetur ex\"\n    },\n    \"workspaces\": [\n      \"consequat elit ex quis incididunt\",\n      \"Duis quis in laborum\"\n    ]\n  },\n  {\n    \"name\": \"in Duis sunt aliqua\",\n    \"description\": \"Lor\",\n    \"url\": \"consequat \",\n    \"updated_by\": \"ut ea pariatur Excepteur enim\",\n    \"created_on\": \"1999-12-02T18:18:19.961Z\",\n    \"created_by\": \"la\",\n    \"archived\": false,\n    \"archived_on\": \"2016-07-06T08:11:13.360Z\",\n    \"archived_by\": \"ut consectetur offic\",\n    \"organization\": {\n      \"name\": \"dolor reprehenderit est sint\",\n      \"slug\": \"eu est\",\n      \"logo\": \"s\",\n      \"color\": \"pariatur officia mollit dolore\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"aliqua occaecat\",\n      \"ad_spend_tracker_url\": \"nisi sint aute elit commodo\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"deserunt veniam\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"voluptate\",\n      \"updated_on\": \"1995-10-27T14:03:14.866Z\",\n      \"updated_by\": \"Excepteur cupidatat officia reprehenderit\",\n      \"created_on\": \"1946-03-14T05:57:58.479Z\",\n      \"created_by\": \"eu ullamco fugiat id\",\n      \"archived\": true,\n      \"archived_on\": \"1994-09-03T22:30:40.365Z\",\n      \"archived_by\": \"esse eu laboris\"\n    },\n    \"workspaces\": [\n      \"aute fugia\",\n      \"Duis cillum\"\n    ]\n  }\n]"}],"_postman_id":"d30eb9ee-5ae6-48d3-8bf5-d223b7ef1529"},{"name":"Create Analytic","id":"76b9060f-6136-4911-82af-63e62e447f94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//analytics","urlObject":{"path":["analytics"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"1e8bf646-3092-4789-a7df-3ccf170a22b5","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//analytics"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed Excepteur\",\n  \"description\": \"ad\",\n  \"url\": \"o\",\n  \"updated_by\": \"fugiat quis qui\",\n  \"created_on\": \"1958-02-27T17:08:58.685Z\",\n  \"created_by\": \"Lorem exercitation incididunt officia\",\n  \"archived\": false,\n  \"archived_on\": \"2010-11-26T15:50:37.883Z\",\n  \"archived_by\": \"sed laborum irure id nulla\",\n  \"organization\": {\n    \"name\": \"laboris fugiat est ad\",\n    \"slug\": \"esse ut aliqua consequat culpa\",\n    \"logo\": \"nulla\",\n    \"color\": \"reprehenderit in voluptate elit\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"eu culpa ad ullamco\",\n    \"ad_spend_tracker_url\": \"in\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"fugiat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"in aliqua consequat ad\",\n    \"updated_on\": \"1987-05-22T16:06:44.296Z\",\n    \"updated_by\": \"anim magna nulla ips\",\n    \"created_on\": \"1999-01-28T00:02:52.206Z\",\n    \"created_by\": \"Lorem nulla tempor magna\",\n    \"archived\": true,\n    \"archived_on\": \"1994-11-07T21:11:44.813Z\",\n    \"archived_by\": \"irure velit eiusmod aliqua\"\n  },\n  \"workspaces\": [\n    \"et irure\",\n    \"aute cillum cupidatat\"\n  ]\n}"}],"_postman_id":"76b9060f-6136-4911-82af-63e62e447f94"},{"name":"Count Analytics","id":"47b3ebca-a6d8-426a-aebf-50dae81bc08f","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//analytics/count?archived=<boolean>","urlObject":{"path":["analytics","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"d40ee4eb-a790-470b-923f-77c6e1ea286d","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//analytics/count?archived=<boolean>","host":["/"],"path":["analytics","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"47b3ebca-a6d8-426a-aebf-50dae81bc08f"},{"name":"Search Analytics","id":"7b7d6c25-7567-4120-8541-6a2fb22d7b63","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//analytics/search","urlObject":{"path":["analytics","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"c93cc777-ba50-45fe-bbec-25113561cd98","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//analytics/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"nisi \",\n    \"description\": \"esse dolor deserunt anim\",\n    \"url\": \"ex ullamco fugiat occaecat laborum\",\n    \"updated_by\": \"sit labore in \",\n    \"created_on\": \"1991-06-24T10:25:37.637Z\",\n    \"created_by\": \"veniam deserunt\",\n    \"archived\": false,\n    \"archived_on\": \"1972-08-22T22:03:40.526Z\",\n    \"archived_by\": \"amet exercitation est\",\n    \"organization\": {\n      \"name\": \"irure in\",\n      \"slug\": \"exercitation veniam\",\n      \"logo\": \"voluptate tempor\",\n      \"color\": \"dolor ullamco adipisicing\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"in culpa ullamco eiusmod\",\n      \"ad_spend_tracker_url\": \"pariatur dolore ea\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"quis veniam ullamco\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"et ipsum\",\n      \"updated_on\": \"2007-10-01T11:34:21.215Z\",\n      \"updated_by\": \"occaecat ut labore Duis\",\n      \"created_on\": \"1970-03-02T15:45:40.148Z\",\n      \"created_by\": \"enim veniam minim labore\",\n      \"archived\": true,\n      \"archived_on\": \"2009-02-28T16:21:19.711Z\",\n      \"archived_by\": \"occaecat Duis consectetur ex\"\n    },\n    \"workspaces\": [\n      \"consequat elit ex quis incididunt\",\n      \"Duis quis in laborum\"\n    ]\n  },\n  {\n    \"name\": \"in Duis sunt aliqua\",\n    \"description\": \"Lor\",\n    \"url\": \"consequat \",\n    \"updated_by\": \"ut ea pariatur Excepteur enim\",\n    \"created_on\": \"1999-12-02T18:18:19.961Z\",\n    \"created_by\": \"la\",\n    \"archived\": false,\n    \"archived_on\": \"2016-07-06T08:11:13.360Z\",\n    \"archived_by\": \"ut consectetur offic\",\n    \"organization\": {\n      \"name\": \"dolor reprehenderit est sint\",\n      \"slug\": \"eu est\",\n      \"logo\": \"s\",\n      \"color\": \"pariatur officia mollit dolore\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"aliqua occaecat\",\n      \"ad_spend_tracker_url\": \"nisi sint aute elit commodo\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"deserunt veniam\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"voluptate\",\n      \"updated_on\": \"1995-10-27T14:03:14.866Z\",\n      \"updated_by\": \"Excepteur cupidatat officia reprehenderit\",\n      \"created_on\": \"1946-03-14T05:57:58.479Z\",\n      \"created_by\": \"eu ullamco fugiat id\",\n      \"archived\": true,\n      \"archived_on\": \"1994-09-03T22:30:40.365Z\",\n      \"archived_by\": \"esse eu laboris\"\n    },\n    \"workspaces\": [\n      \"aute fugia\",\n      \"Duis cillum\"\n    ]\n  }\n]"}],"_postman_id":"7b7d6c25-7567-4120-8541-6a2fb22d7b63"},{"name":"Find One Analytic","id":"d44bd0f4-fe8c-431e-a677-28bdf2e05dc4","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//analytics/:id?archived=<boolean>","urlObject":{"path":["analytics",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"838d1e38-5b61-4d15-8ee8-aab455b6d8b1","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"391d80e3-7a62-4cdd-8497-d02956ebbb5c","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//analytics/:id?archived=<boolean>","host":["/"],"path":["analytics",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed Excepteur\",\n  \"description\": \"ad\",\n  \"url\": \"o\",\n  \"updated_by\": \"fugiat quis qui\",\n  \"created_on\": \"1958-02-27T17:08:58.685Z\",\n  \"created_by\": \"Lorem exercitation incididunt officia\",\n  \"archived\": false,\n  \"archived_on\": \"2010-11-26T15:50:37.883Z\",\n  \"archived_by\": \"sed laborum irure id nulla\",\n  \"organization\": {\n    \"name\": \"laboris fugiat est ad\",\n    \"slug\": \"esse ut aliqua consequat culpa\",\n    \"logo\": \"nulla\",\n    \"color\": \"reprehenderit in voluptate elit\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"eu culpa ad ullamco\",\n    \"ad_spend_tracker_url\": \"in\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"fugiat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"in aliqua consequat ad\",\n    \"updated_on\": \"1987-05-22T16:06:44.296Z\",\n    \"updated_by\": \"anim magna nulla ips\",\n    \"created_on\": \"1999-01-28T00:02:52.206Z\",\n    \"created_by\": \"Lorem nulla tempor magna\",\n    \"archived\": true,\n    \"archived_on\": \"1994-11-07T21:11:44.813Z\",\n    \"archived_by\": \"irure velit eiusmod aliqua\"\n  },\n  \"workspaces\": [\n    \"et irure\",\n    \"aute cillum cupidatat\"\n  ]\n}"}],"_postman_id":"d44bd0f4-fe8c-431e-a677-28bdf2e05dc4"},{"name":"Replace Analytic","id":"df6ca0ab-1c01-4e7e-91d3-425f27d1d929","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//analytics/:id","urlObject":{"path":["analytics",":id"],"host":["/"],"query":[],"variable":[{"id":"2950053c-c601-4d30-b2c2-1aa4e581ba1e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"2b53f1f4-aa6d-4653-bc5d-c96e999b83a2","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//analytics/:id","host":["/"],"path":["analytics",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed Excepteur\",\n  \"description\": \"ad\",\n  \"url\": \"o\",\n  \"updated_by\": \"fugiat quis qui\",\n  \"created_on\": \"1958-02-27T17:08:58.685Z\",\n  \"created_by\": \"Lorem exercitation incididunt officia\",\n  \"archived\": false,\n  \"archived_on\": \"2010-11-26T15:50:37.883Z\",\n  \"archived_by\": \"sed laborum irure id nulla\",\n  \"organization\": {\n    \"name\": \"laboris fugiat est ad\",\n    \"slug\": \"esse ut aliqua consequat culpa\",\n    \"logo\": \"nulla\",\n    \"color\": \"reprehenderit in voluptate elit\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"eu culpa ad ullamco\",\n    \"ad_spend_tracker_url\": \"in\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"fugiat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"in aliqua consequat ad\",\n    \"updated_on\": \"1987-05-22T16:06:44.296Z\",\n    \"updated_by\": \"anim magna nulla ips\",\n    \"created_on\": \"1999-01-28T00:02:52.206Z\",\n    \"created_by\": \"Lorem nulla tempor magna\",\n    \"archived\": true,\n    \"archived_on\": \"1994-11-07T21:11:44.813Z\",\n    \"archived_by\": \"irure velit eiusmod aliqua\"\n  },\n  \"workspaces\": [\n    \"et irure\",\n    \"aute cillum cupidatat\"\n  ]\n}"}],"_postman_id":"df6ca0ab-1c01-4e7e-91d3-425f27d1d929"},{"name":"Update Analytic","id":"953771ee-e14c-4db6-87c8-776be3b92c49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//analytics/:id","urlObject":{"path":["analytics",":id"],"host":["/"],"query":[],"variable":[{"id":"8a818bde-b9f3-44a3-b78e-a60efa58101d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d6b6c8cf-9e08-4059-ae77-6014cd52cc74","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//analytics/:id","host":["/"],"path":["analytics",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed Excepteur\",\n  \"description\": \"ad\",\n  \"url\": \"o\",\n  \"updated_by\": \"fugiat quis qui\",\n  \"created_on\": \"1958-02-27T17:08:58.685Z\",\n  \"created_by\": \"Lorem exercitation incididunt officia\",\n  \"archived\": false,\n  \"archived_on\": \"2010-11-26T15:50:37.883Z\",\n  \"archived_by\": \"sed laborum irure id nulla\",\n  \"organization\": {\n    \"name\": \"laboris fugiat est ad\",\n    \"slug\": \"esse ut aliqua consequat culpa\",\n    \"logo\": \"nulla\",\n    \"color\": \"reprehenderit in voluptate elit\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"eu culpa ad ullamco\",\n    \"ad_spend_tracker_url\": \"in\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"fugiat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"in aliqua consequat ad\",\n    \"updated_on\": \"1987-05-22T16:06:44.296Z\",\n    \"updated_by\": \"anim magna nulla ips\",\n    \"created_on\": \"1999-01-28T00:02:52.206Z\",\n    \"created_by\": \"Lorem nulla tempor magna\",\n    \"archived\": true,\n    \"archived_on\": \"1994-11-07T21:11:44.813Z\",\n    \"archived_by\": \"irure velit eiusmod aliqua\"\n  },\n  \"workspaces\": [\n    \"et irure\",\n    \"aute cillum cupidatat\"\n  ]\n}"}],"_postman_id":"953771ee-e14c-4db6-87c8-776be3b92c49"},{"name":"Archive Analytic","id":"72e680bf-b547-46ce-87a4-a3276af56a1b","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//analytics/:id","urlObject":{"path":["analytics",":id"],"host":["/"],"query":[],"variable":[{"id":"f58b61e2-558a-4919-baff-ad4a268a5be7","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"8706a00f-7a1c-4e4d-b81f-30b9f03606eb","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//analytics/:id","host":["/"],"path":["analytics",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed Excepteur\",\n  \"description\": \"ad\",\n  \"url\": \"o\",\n  \"updated_by\": \"fugiat quis qui\",\n  \"created_on\": \"1958-02-27T17:08:58.685Z\",\n  \"created_by\": \"Lorem exercitation incididunt officia\",\n  \"archived\": false,\n  \"archived_on\": \"2010-11-26T15:50:37.883Z\",\n  \"archived_by\": \"sed laborum irure id nulla\",\n  \"organization\": {\n    \"name\": \"laboris fugiat est ad\",\n    \"slug\": \"esse ut aliqua consequat culpa\",\n    \"logo\": \"nulla\",\n    \"color\": \"reprehenderit in voluptate elit\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"eu culpa ad ullamco\",\n    \"ad_spend_tracker_url\": \"in\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"fugiat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"in aliqua consequat ad\",\n    \"updated_on\": \"1987-05-22T16:06:44.296Z\",\n    \"updated_by\": \"anim magna nulla ips\",\n    \"created_on\": \"1999-01-28T00:02:52.206Z\",\n    \"created_by\": \"Lorem nulla tempor magna\",\n    \"archived\": true,\n    \"archived_on\": \"1994-11-07T21:11:44.813Z\",\n    \"archived_by\": \"irure velit eiusmod aliqua\"\n  },\n  \"workspaces\": [\n    \"et irure\",\n    \"aute cillum cupidatat\"\n  ]\n}"}],"_postman_id":"72e680bf-b547-46ce-87a4-a3276af56a1b"},{"name":"Unarchive Analytic","id":"115c7c8a-e08c-41cf-bbcc-5bc74b936a22","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//analytics/:id/unarchive","urlObject":{"path":["analytics",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"f4fb1de3-3094-40c8-9eb7-e88f5280fa0f","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ce5a6f02-aeda-4062-a3c5-04cf936b6578","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//analytics/:id/unarchive","host":["/"],"path":["analytics",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed Excepteur\",\n  \"description\": \"ad\",\n  \"url\": \"o\",\n  \"updated_by\": \"fugiat quis qui\",\n  \"created_on\": \"1958-02-27T17:08:58.685Z\",\n  \"created_by\": \"Lorem exercitation incididunt officia\",\n  \"archived\": false,\n  \"archived_on\": \"2010-11-26T15:50:37.883Z\",\n  \"archived_by\": \"sed laborum irure id nulla\",\n  \"organization\": {\n    \"name\": \"laboris fugiat est ad\",\n    \"slug\": \"esse ut aliqua consequat culpa\",\n    \"logo\": \"nulla\",\n    \"color\": \"reprehenderit in voluptate elit\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"eu culpa ad ullamco\",\n    \"ad_spend_tracker_url\": \"in\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"fugiat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"in aliqua consequat ad\",\n    \"updated_on\": \"1987-05-22T16:06:44.296Z\",\n    \"updated_by\": \"anim magna nulla ips\",\n    \"created_on\": \"1999-01-28T00:02:52.206Z\",\n    \"created_by\": \"Lorem nulla tempor magna\",\n    \"archived\": true,\n    \"archived_on\": \"1994-11-07T21:11:44.813Z\",\n    \"archived_by\": \"irure velit eiusmod aliqua\"\n  },\n  \"workspaces\": [\n    \"et irure\",\n    \"aute cillum cupidatat\"\n  ]\n}"}],"_postman_id":"115c7c8a-e08c-41cf-bbcc-5bc74b936a22"},{"name":"Delete Analytic","id":"e1d6ee8c-6af4-4280-9104-2eb6d5c20846","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//analytics/:id/delete","urlObject":{"path":["analytics",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"d15d2a8a-c953-4687-a36b-aa7782d5d60d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"b003737c-439f-4854-ba47-857c6a4ea5b4","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//analytics/:id/delete","host":["/"],"path":["analytics",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed Excepteur\",\n  \"description\": \"ad\",\n  \"url\": \"o\",\n  \"updated_by\": \"fugiat quis qui\",\n  \"created_on\": \"1958-02-27T17:08:58.685Z\",\n  \"created_by\": \"Lorem exercitation incididunt officia\",\n  \"archived\": false,\n  \"archived_on\": \"2010-11-26T15:50:37.883Z\",\n  \"archived_by\": \"sed laborum irure id nulla\",\n  \"organization\": {\n    \"name\": \"laboris fugiat est ad\",\n    \"slug\": \"esse ut aliqua consequat culpa\",\n    \"logo\": \"nulla\",\n    \"color\": \"reprehenderit in voluptate elit\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"eu culpa ad ullamco\",\n    \"ad_spend_tracker_url\": \"in\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"fugiat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"in aliqua consequat ad\",\n    \"updated_on\": \"1987-05-22T16:06:44.296Z\",\n    \"updated_by\": \"anim magna nulla ips\",\n    \"created_on\": \"1999-01-28T00:02:52.206Z\",\n    \"created_by\": \"Lorem nulla tempor magna\",\n    \"archived\": true,\n    \"archived_on\": \"1994-11-07T21:11:44.813Z\",\n    \"archived_by\": \"irure velit eiusmod aliqua\"\n  },\n  \"workspaces\": [\n    \"et irure\",\n    \"aute cillum cupidatat\"\n  ]\n}"}],"_postman_id":"e1d6ee8c-6af4-4280-9104-2eb6d5c20846"}],"id":"f42f7110-e20a-4070-89b6-340bf6725bed","description":"<p>Analytics provide a high level overview of your advertising performance. </p>\n","_postman_id":"f42f7110-e20a-4070-89b6-340bf6725bed"},{"name":"Assets","item":[{"name":"Find All Assets","id":"17cadef3-e914-491b-b073-c58da99f7556","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//assets?archived=<boolean>","urlObject":{"path":["assets"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"632fbc4a-c087-4076-99a2-da3a830d269d","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//assets?archived=<boolean>","host":["/"],"path":["assets"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"veniam esse ullamco\",\n    \"description\": \"et Excepteur sit\",\n    \"type\": false,\n    \"active\": true,\n    \"url\": \"dolor sit sint\",\n    \"thumbnail_url\": \"esse proident incididunt\",\n    \"watermark_url\": \"minim nisi\",\n    \"updated_on\": \"1947-08-14T15:20:59.742Z\",\n    \"updated_by\": \"esse magna in voluptate sed\",\n    \"created_on\": \"1957-07-10T06:53:34.897Z\",\n    \"created_by\": \"commodo ipsum exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-07-05T17:47:37.413Z\",\n    \"archived_by\": \"mollit minim ut\",\n    \"organization\": {\n      \"name\": \"in\",\n      \"slug\": \"fugiat ea officia exercit\",\n      \"logo\": \"in fugiat Duis\",\n      \"color\": \"laborum ex consectetur in\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"sunt Ut\",\n      \"ad_spend_tracker_url\": \"aliqu\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"ad dolore\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"exercita\",\n      \"updated_on\": \"1984-08-11T21:53:25.855Z\",\n      \"updated_by\": \"velit\",\n      \"created_on\": \"2001-04-12T01:27:41.220Z\",\n      \"created_by\": \"Lorem officia esse magna exercitation\",\n      \"archived\": true,\n      \"archived_on\": \"2014-01-31T13:09:27.029Z\",\n      \"archived_by\": \"ipsum\"\n    },\n    \"workspaces\": [\n      \"sit labore\",\n      \"in Ut in occ\"\n    ],\n    \"folder\": {\n      \"name\": \"in reprehenderit deserunt velit dolore\",\n      \"slug\": \"voluptate nisi dolor\",\n      \"public\": true,\n      \"updated_on\": \"1975-06-20T17:21:18.684Z\",\n      \"updated_by\": \"Ut\",\n      \"created_on\": \"2013-04-22T16:29:21.862Z\",\n      \"created_by\": \"sed cillum Lorem\",\n      \"archived\": true,\n      \"archived_on\": \"2008-10-07T19:34:00.271Z\",\n      \"archived_by\": \"commodo fugiat esse\",\n      \"organization\": {\n        \"name\": \"reprehenderit occaecat\",\n        \"slug\": \"do aliqua enim\",\n        \"logo\": \"nulla nisi\",\n        \"color\": \"Ut officia\",\n        \"active\": true,\n        \"enable_workspaces\": true,\n        \"onboarding_url\": \"dolor sed consequat do\",\n        \"ad_spend_tracker_url\": \"eu ut dolor\",\n        \"slack_enabled\": false,\n        \"slack_url\": \"ipsum laborum officia\",\n        \"teams_enabled\": true,\n        \"teams_url\": \"sed reprehenderit id eu ut\",\n        \"updated_on\": \"1986-08-05T19:44:44.756Z\",\n        \"updated_by\": \"pariatu\",\n        \"created_on\": \"2011-11-15T12:31:29.429Z\",\n        \"created_by\": \"do sunt enim minim\",\n        \"archived\": true,\n        \"archived_on\": \"1966-04-25T10:36:09.139Z\",\n        \"archived_by\": \"aliquip proident irure cillum reprehenderit\"\n      },\n      \"workspaces\": [\n        \"nulla sint ipsum\",\n        \"do aliquip\"\n      ],\n      \"folder\": {\n        \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n      }\n    },\n    \"attachments\": [\n      \"enim est consectetur eu\",\n      \"reprehenderit minim cupidatat\"\n    ],\n    \"tags\": [\n      \"dolor dolore consequat ullamco exercitation\",\n      \"ut consequat\"\n    ]\n  },\n  {\n    \"name\": \"fugiat nostrud voluptate\",\n    \"description\": \"Duis consequat non consectetur\",\n    \"type\": false,\n    \"active\": false,\n    \"url\": \"esse est commodo\",\n    \"thumbnail_url\": \"ea sit voluptate Lorem\",\n    \"watermark_url\": \"dolor voluptate in\",\n    \"updated_on\": \"1975-08-30T05:53:06.087Z\",\n    \"updated_by\": \"deserunt aliqua ut culpa elit\",\n    \"created_on\": \"1987-08-30T01:39:08.793Z\",\n    \"created_by\": \"reprehenderit ex ut\",\n    \"archived\": false,\n    \"archived_on\": \"1977-10-22T05:56:11.146Z\",\n    \"archived_by\": \"Lorem\",\n    \"organization\": {\n      \"name\": \"Ut proident eiusmod\",\n      \"slug\": \"esse cupidatat anim Excepteur\",\n      \"logo\": \"velit ullamco est et adipisicing\",\n      \"color\": \"non aliquip ad\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"Ut Duis minim aute\",\n      \"ad_spend_tracker_url\": \"ex cillum velit\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"dolor Ut incididunt dolore\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"a\",\n      \"updated_on\": \"2012-02-27T19:57:35.983Z\",\n      \"updated_by\": \"irure cillum ullamco ad eu\",\n      \"created_on\": \"2011-02-10T22:53:17.228Z\",\n      \"created_by\": \"velit do consequat pariatur\",\n      \"archived\": true,\n      \"archived_on\": \"1999-04-29T10:46:18.499Z\",\n      \"archived_by\": \"ut incididunt Ut Duis irure\"\n    },\n    \"workspaces\": [\n      \"et in est culpa ullamco\",\n      \"culpa qui\"\n    ],\n    \"folder\": {\n      \"name\": \"nulla Excepteur\",\n      \"slug\": \"velit non\",\n      \"public\": true,\n      \"updated_on\": \"1951-02-06T04:34:52.953Z\",\n      \"updated_by\": \"culpa dolore minim in\",\n      \"created_on\": \"1972-04-15T15:58:13.228Z\",\n      \"created_by\": \"adipisicing Excepteur\",\n      \"archived\": false,\n      \"archived_on\": \"1999-11-12T07:19:18.828Z\",\n      \"archived_by\": \"sed anim ullamco\",\n      \"organization\": {\n        \"name\": \"esse eu mollit veniam ad\",\n        \"slug\": \"enim\",\n        \"logo\": \"nisi incididunt pariatur\",\n        \"color\": \"labore irure adipisicing ullamco\",\n        \"active\": false,\n        \"enable_workspaces\": true,\n        \"onboarding_url\": \"in fu\",\n        \"ad_spend_tracker_url\": \"mollit deserunt\",\n        \"slack_enabled\": false,\n        \"slack_url\": \"dolore in\",\n        \"teams_enabled\": true,\n        \"teams_url\": \"eiusmod velit sit in\",\n        \"updated_on\": \"1965-01-13T14:15:25.990Z\",\n        \"updated_by\": \"non cillum\",\n        \"created_on\": \"1985-08-12T00:37:41.240Z\",\n        \"created_by\": \"ullamco eiusmod\",\n        \"archived\": false,\n        \"archived_on\": \"2000-06-30T21:16:14.185Z\",\n        \"archived_by\": \"non dolor deserunt\"\n      },\n      \"workspaces\": [\n        \"irure sed\",\n        \"cupidatat fugiat reprehenderit eu\"\n      ],\n      \"folder\": {\n        \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n      }\n    },\n    \"attachments\": [\n      \"magna exercitation occaecat dolor\",\n      \"Excepteur deserunt adipisicing nisi co\"\n    ],\n    \"tags\": [\n      \"sed\",\n      \"nulla exercitation ullamco eiusmod\"\n    ]\n  }\n]"}],"_postman_id":"17cadef3-e914-491b-b073-c58da99f7556"},{"name":"Create Asset","id":"db30390e-160b-482e-99ec-770da07ab8c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<boolean>\",\n  \"active\": \"<boolean>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\",\n  \"watermark_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//assets","urlObject":{"path":["assets"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"87696a71-ab38-4cfe-bcda-65ff737d3c2e","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<boolean>\",\n  \"active\": \"<boolean>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\",\n  \"watermark_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//assets"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"magna Excepteur pariatur consequat\",\n  \"description\": \"consect\",\n  \"type\": true,\n  \"active\": true,\n  \"url\": \"anim tempor irure ex\",\n  \"thumbnail_url\": \"anim qui\",\n  \"watermark_url\": \"commodo ex minim\",\n  \"updated_on\": \"2006-07-07T06:49:03.953Z\",\n  \"updated_by\": \"cupidatat enim ipsum elit\",\n  \"created_on\": \"2003-10-21T05:51:46.899Z\",\n  \"created_by\": \"quis velit Duis et aute\",\n  \"archived\": true,\n  \"archived_on\": \"1995-09-06T09:42:23.008Z\",\n  \"archived_by\": \"sit nulla qui cillum dolore\",\n  \"organization\": {\n    \"name\": \"laboris dolore eu in\",\n    \"slug\": \"proident\",\n    \"logo\": \"tempor sed non quis Duis\",\n    \"color\": \"pariatur ut dolor voluptate laborum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aute quis nulla\",\n    \"ad_spend_tracker_url\": \"aliqua adipisicing non do\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"aliquip\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"ipsum mollit est irure\",\n    \"updated_on\": \"2020-07-23T23:23:40.703Z\",\n    \"updated_by\": \"dolor Excepteur\",\n    \"created_on\": \"1976-05-27T18:40:29.408Z\",\n    \"created_by\": \"ut exercitation ea aute \",\n    \"archived\": true,\n    \"archived_on\": \"2005-08-13T02:39:06.247Z\",\n    \"archived_by\": \"nostrud irure veniam laboris qui\"\n  },\n  \"workspaces\": [\n    \"laboris id est veniam\",\n    \"culpa reprehenderit\"\n  ],\n  \"folder\": {\n    \"name\": \"dolor ad\",\n    \"slug\": \"ex occaecat commodo\",\n    \"public\": true,\n    \"updated_on\": \"1963-04-09T17:41:36.441Z\",\n    \"updated_by\": \"ex exercitation\",\n    \"created_on\": \"1942-07-27T13:12:56.070Z\",\n    \"created_by\": \"Duis minim qu\",\n    \"archived\": true,\n    \"archived_on\": \"2007-02-04T19:55:18.252Z\",\n    \"archived_by\": \"fugiat reprehenderit\",\n    \"organization\": {\n      \"name\": \"laboris id amet e\",\n      \"slug\": \"ad eiusmod\",\n      \"logo\": \"amet consequat\",\n      \"color\": \"dolore sint ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"elit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"pariatur in ut sint\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse aute ex\",\n      \"updated_on\": \"1944-06-11T06:00:31.176Z\",\n      \"updated_by\": \"sunt esse in reprehenderit\",\n      \"created_on\": \"1956-08-23T15:15:36.941Z\",\n      \"created_by\": \"adipisicing eu commodo sit\",\n      \"archived\": true,\n      \"archived_on\": \"2000-01-16T19:55:09.312Z\",\n      \"archived_by\": \"exercitation culpa mollit tem\"\n    },\n    \"workspaces\": [\n      \"velit in molli\",\n      \"molli\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  \"attachments\": [\n    \"ad nulla\",\n    \"est dolor nostrud\"\n  ],\n  \"tags\": [\n    \"et\",\n    \"dolor deserunt reprehenderit laborum \"\n  ]\n}"}],"_postman_id":"db30390e-160b-482e-99ec-770da07ab8c0"},{"name":"Count Assets","id":"aebe8dcc-e857-41c6-9821-7241b59a1730","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//assets/count?archived=<boolean>","urlObject":{"path":["assets","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"b2c7dd4e-5267-462e-a860-3fa8e2b8d471","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//assets/count?archived=<boolean>","host":["/"],"path":["assets","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"aebe8dcc-e857-41c6-9821-7241b59a1730"},{"name":"Search Assets","id":"031dca63-91d6-427f-b9d9-5f5d1f4f8ae7","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//assets/search","urlObject":{"path":["assets","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"519fe117-52d7-4c27-80e4-2298a30fe0b8","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//assets/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"veniam esse ullamco\",\n    \"description\": \"et Excepteur sit\",\n    \"type\": false,\n    \"active\": true,\n    \"url\": \"dolor sit sint\",\n    \"thumbnail_url\": \"esse proident incididunt\",\n    \"watermark_url\": \"minim nisi\",\n    \"updated_on\": \"1947-08-14T15:20:59.742Z\",\n    \"updated_by\": \"esse magna in voluptate sed\",\n    \"created_on\": \"1957-07-10T06:53:34.897Z\",\n    \"created_by\": \"commodo ipsum exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-07-05T17:47:37.413Z\",\n    \"archived_by\": \"mollit minim ut\",\n    \"organization\": {\n      \"name\": \"in\",\n      \"slug\": \"fugiat ea officia exercit\",\n      \"logo\": \"in fugiat Duis\",\n      \"color\": \"laborum ex consectetur in\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"sunt Ut\",\n      \"ad_spend_tracker_url\": \"aliqu\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"ad dolore\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"exercita\",\n      \"updated_on\": \"1984-08-11T21:53:25.855Z\",\n      \"updated_by\": \"velit\",\n      \"created_on\": \"2001-04-12T01:27:41.220Z\",\n      \"created_by\": \"Lorem officia esse magna exercitation\",\n      \"archived\": true,\n      \"archived_on\": \"2014-01-31T13:09:27.029Z\",\n      \"archived_by\": \"ipsum\"\n    },\n    \"workspaces\": [\n      \"sit labore\",\n      \"in Ut in occ\"\n    ],\n    \"folder\": {\n      \"name\": \"in reprehenderit deserunt velit dolore\",\n      \"slug\": \"voluptate nisi dolor\",\n      \"public\": true,\n      \"updated_on\": \"1975-06-20T17:21:18.684Z\",\n      \"updated_by\": \"Ut\",\n      \"created_on\": \"2013-04-22T16:29:21.862Z\",\n      \"created_by\": \"sed cillum Lorem\",\n      \"archived\": true,\n      \"archived_on\": \"2008-10-07T19:34:00.271Z\",\n      \"archived_by\": \"commodo fugiat esse\",\n      \"organization\": {\n        \"name\": \"reprehenderit occaecat\",\n        \"slug\": \"do aliqua enim\",\n        \"logo\": \"nulla nisi\",\n        \"color\": \"Ut officia\",\n        \"active\": true,\n        \"enable_workspaces\": true,\n        \"onboarding_url\": \"dolor sed consequat do\",\n        \"ad_spend_tracker_url\": \"eu ut dolor\",\n        \"slack_enabled\": false,\n        \"slack_url\": \"ipsum laborum officia\",\n        \"teams_enabled\": true,\n        \"teams_url\": \"sed reprehenderit id eu ut\",\n        \"updated_on\": \"1986-08-05T19:44:44.756Z\",\n        \"updated_by\": \"pariatu\",\n        \"created_on\": \"2011-11-15T12:31:29.429Z\",\n        \"created_by\": \"do sunt enim minim\",\n        \"archived\": true,\n        \"archived_on\": \"1966-04-25T10:36:09.139Z\",\n        \"archived_by\": \"aliquip proident irure cillum reprehenderit\"\n      },\n      \"workspaces\": [\n        \"nulla sint ipsum\",\n        \"do aliquip\"\n      ],\n      \"folder\": {\n        \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n      }\n    },\n    \"attachments\": [\n      \"enim est consectetur eu\",\n      \"reprehenderit minim cupidatat\"\n    ],\n    \"tags\": [\n      \"dolor dolore consequat ullamco exercitation\",\n      \"ut consequat\"\n    ]\n  },\n  {\n    \"name\": \"fugiat nostrud voluptate\",\n    \"description\": \"Duis consequat non consectetur\",\n    \"type\": false,\n    \"active\": false,\n    \"url\": \"esse est commodo\",\n    \"thumbnail_url\": \"ea sit voluptate Lorem\",\n    \"watermark_url\": \"dolor voluptate in\",\n    \"updated_on\": \"1975-08-30T05:53:06.087Z\",\n    \"updated_by\": \"deserunt aliqua ut culpa elit\",\n    \"created_on\": \"1987-08-30T01:39:08.793Z\",\n    \"created_by\": \"reprehenderit ex ut\",\n    \"archived\": false,\n    \"archived_on\": \"1977-10-22T05:56:11.146Z\",\n    \"archived_by\": \"Lorem\",\n    \"organization\": {\n      \"name\": \"Ut proident eiusmod\",\n      \"slug\": \"esse cupidatat anim Excepteur\",\n      \"logo\": \"velit ullamco est et adipisicing\",\n      \"color\": \"non aliquip ad\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"Ut Duis minim aute\",\n      \"ad_spend_tracker_url\": \"ex cillum velit\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"dolor Ut incididunt dolore\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"a\",\n      \"updated_on\": \"2012-02-27T19:57:35.983Z\",\n      \"updated_by\": \"irure cillum ullamco ad eu\",\n      \"created_on\": \"2011-02-10T22:53:17.228Z\",\n      \"created_by\": \"velit do consequat pariatur\",\n      \"archived\": true,\n      \"archived_on\": \"1999-04-29T10:46:18.499Z\",\n      \"archived_by\": \"ut incididunt Ut Duis irure\"\n    },\n    \"workspaces\": [\n      \"et in est culpa ullamco\",\n      \"culpa qui\"\n    ],\n    \"folder\": {\n      \"name\": \"nulla Excepteur\",\n      \"slug\": \"velit non\",\n      \"public\": true,\n      \"updated_on\": \"1951-02-06T04:34:52.953Z\",\n      \"updated_by\": \"culpa dolore minim in\",\n      \"created_on\": \"1972-04-15T15:58:13.228Z\",\n      \"created_by\": \"adipisicing Excepteur\",\n      \"archived\": false,\n      \"archived_on\": \"1999-11-12T07:19:18.828Z\",\n      \"archived_by\": \"sed anim ullamco\",\n      \"organization\": {\n        \"name\": \"esse eu mollit veniam ad\",\n        \"slug\": \"enim\",\n        \"logo\": \"nisi incididunt pariatur\",\n        \"color\": \"labore irure adipisicing ullamco\",\n        \"active\": false,\n        \"enable_workspaces\": true,\n        \"onboarding_url\": \"in fu\",\n        \"ad_spend_tracker_url\": \"mollit deserunt\",\n        \"slack_enabled\": false,\n        \"slack_url\": \"dolore in\",\n        \"teams_enabled\": true,\n        \"teams_url\": \"eiusmod velit sit in\",\n        \"updated_on\": \"1965-01-13T14:15:25.990Z\",\n        \"updated_by\": \"non cillum\",\n        \"created_on\": \"1985-08-12T00:37:41.240Z\",\n        \"created_by\": \"ullamco eiusmod\",\n        \"archived\": false,\n        \"archived_on\": \"2000-06-30T21:16:14.185Z\",\n        \"archived_by\": \"non dolor deserunt\"\n      },\n      \"workspaces\": [\n        \"irure sed\",\n        \"cupidatat fugiat reprehenderit eu\"\n      ],\n      \"folder\": {\n        \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n      }\n    },\n    \"attachments\": [\n      \"magna exercitation occaecat dolor\",\n      \"Excepteur deserunt adipisicing nisi co\"\n    ],\n    \"tags\": [\n      \"sed\",\n      \"nulla exercitation ullamco eiusmod\"\n    ]\n  }\n]"}],"_postman_id":"031dca63-91d6-427f-b9d9-5f5d1f4f8ae7"},{"name":"Find One Asset","id":"25c41d7a-7455-4568-837f-c78319d1fc6c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//assets/:id?archived=<boolean>","urlObject":{"path":["assets",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"d84e3118-6489-4da9-8f9a-a8e5dad8e57e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d53eea39-b54b-4c6c-adb5-4ce27074d5f0","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//assets/:id?archived=<boolean>","host":["/"],"path":["assets",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"magna Excepteur pariatur consequat\",\n  \"description\": \"consect\",\n  \"type\": true,\n  \"active\": true,\n  \"url\": \"anim tempor irure ex\",\n  \"thumbnail_url\": \"anim qui\",\n  \"watermark_url\": \"commodo ex minim\",\n  \"updated_on\": \"2006-07-07T06:49:03.953Z\",\n  \"updated_by\": \"cupidatat enim ipsum elit\",\n  \"created_on\": \"2003-10-21T05:51:46.899Z\",\n  \"created_by\": \"quis velit Duis et aute\",\n  \"archived\": true,\n  \"archived_on\": \"1995-09-06T09:42:23.008Z\",\n  \"archived_by\": \"sit nulla qui cillum dolore\",\n  \"organization\": {\n    \"name\": \"laboris dolore eu in\",\n    \"slug\": \"proident\",\n    \"logo\": \"tempor sed non quis Duis\",\n    \"color\": \"pariatur ut dolor voluptate laborum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aute quis nulla\",\n    \"ad_spend_tracker_url\": \"aliqua adipisicing non do\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"aliquip\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"ipsum mollit est irure\",\n    \"updated_on\": \"2020-07-23T23:23:40.703Z\",\n    \"updated_by\": \"dolor Excepteur\",\n    \"created_on\": \"1976-05-27T18:40:29.408Z\",\n    \"created_by\": \"ut exercitation ea aute \",\n    \"archived\": true,\n    \"archived_on\": \"2005-08-13T02:39:06.247Z\",\n    \"archived_by\": \"nostrud irure veniam laboris qui\"\n  },\n  \"workspaces\": [\n    \"laboris id est veniam\",\n    \"culpa reprehenderit\"\n  ],\n  \"folder\": {\n    \"name\": \"dolor ad\",\n    \"slug\": \"ex occaecat commodo\",\n    \"public\": true,\n    \"updated_on\": \"1963-04-09T17:41:36.441Z\",\n    \"updated_by\": \"ex exercitation\",\n    \"created_on\": \"1942-07-27T13:12:56.070Z\",\n    \"created_by\": \"Duis minim qu\",\n    \"archived\": true,\n    \"archived_on\": \"2007-02-04T19:55:18.252Z\",\n    \"archived_by\": \"fugiat reprehenderit\",\n    \"organization\": {\n      \"name\": \"laboris id amet e\",\n      \"slug\": \"ad eiusmod\",\n      \"logo\": \"amet consequat\",\n      \"color\": \"dolore sint ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"elit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"pariatur in ut sint\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse aute ex\",\n      \"updated_on\": \"1944-06-11T06:00:31.176Z\",\n      \"updated_by\": \"sunt esse in reprehenderit\",\n      \"created_on\": \"1956-08-23T15:15:36.941Z\",\n      \"created_by\": \"adipisicing eu commodo sit\",\n      \"archived\": true,\n      \"archived_on\": \"2000-01-16T19:55:09.312Z\",\n      \"archived_by\": \"exercitation culpa mollit tem\"\n    },\n    \"workspaces\": [\n      \"velit in molli\",\n      \"molli\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  \"attachments\": [\n    \"ad nulla\",\n    \"est dolor nostrud\"\n  ],\n  \"tags\": [\n    \"et\",\n    \"dolor deserunt reprehenderit laborum \"\n  ]\n}"}],"_postman_id":"25c41d7a-7455-4568-837f-c78319d1fc6c"},{"name":"Replace Asset","id":"96d2798f-b87e-41c7-b3a1-1bb10fae7bd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<boolean>\",\n  \"active\": \"<boolean>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\",\n  \"watermark_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//assets/:id","urlObject":{"path":["assets",":id"],"host":["/"],"query":[],"variable":[{"id":"d787f74e-944a-41db-aadb-c932800eba23","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"b68167ba-2d74-4a76-9587-2e7421568279","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<boolean>\",\n  \"active\": \"<boolean>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\",\n  \"watermark_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//assets/:id","host":["/"],"path":["assets",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"magna Excepteur pariatur consequat\",\n  \"description\": \"consect\",\n  \"type\": true,\n  \"active\": true,\n  \"url\": \"anim tempor irure ex\",\n  \"thumbnail_url\": \"anim qui\",\n  \"watermark_url\": \"commodo ex minim\",\n  \"updated_on\": \"2006-07-07T06:49:03.953Z\",\n  \"updated_by\": \"cupidatat enim ipsum elit\",\n  \"created_on\": \"2003-10-21T05:51:46.899Z\",\n  \"created_by\": \"quis velit Duis et aute\",\n  \"archived\": true,\n  \"archived_on\": \"1995-09-06T09:42:23.008Z\",\n  \"archived_by\": \"sit nulla qui cillum dolore\",\n  \"organization\": {\n    \"name\": \"laboris dolore eu in\",\n    \"slug\": \"proident\",\n    \"logo\": \"tempor sed non quis Duis\",\n    \"color\": \"pariatur ut dolor voluptate laborum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aute quis nulla\",\n    \"ad_spend_tracker_url\": \"aliqua adipisicing non do\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"aliquip\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"ipsum mollit est irure\",\n    \"updated_on\": \"2020-07-23T23:23:40.703Z\",\n    \"updated_by\": \"dolor Excepteur\",\n    \"created_on\": \"1976-05-27T18:40:29.408Z\",\n    \"created_by\": \"ut exercitation ea aute \",\n    \"archived\": true,\n    \"archived_on\": \"2005-08-13T02:39:06.247Z\",\n    \"archived_by\": \"nostrud irure veniam laboris qui\"\n  },\n  \"workspaces\": [\n    \"laboris id est veniam\",\n    \"culpa reprehenderit\"\n  ],\n  \"folder\": {\n    \"name\": \"dolor ad\",\n    \"slug\": \"ex occaecat commodo\",\n    \"public\": true,\n    \"updated_on\": \"1963-04-09T17:41:36.441Z\",\n    \"updated_by\": \"ex exercitation\",\n    \"created_on\": \"1942-07-27T13:12:56.070Z\",\n    \"created_by\": \"Duis minim qu\",\n    \"archived\": true,\n    \"archived_on\": \"2007-02-04T19:55:18.252Z\",\n    \"archived_by\": \"fugiat reprehenderit\",\n    \"organization\": {\n      \"name\": \"laboris id amet e\",\n      \"slug\": \"ad eiusmod\",\n      \"logo\": \"amet consequat\",\n      \"color\": \"dolore sint ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"elit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"pariatur in ut sint\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse aute ex\",\n      \"updated_on\": \"1944-06-11T06:00:31.176Z\",\n      \"updated_by\": \"sunt esse in reprehenderit\",\n      \"created_on\": \"1956-08-23T15:15:36.941Z\",\n      \"created_by\": \"adipisicing eu commodo sit\",\n      \"archived\": true,\n      \"archived_on\": \"2000-01-16T19:55:09.312Z\",\n      \"archived_by\": \"exercitation culpa mollit tem\"\n    },\n    \"workspaces\": [\n      \"velit in molli\",\n      \"molli\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  \"attachments\": [\n    \"ad nulla\",\n    \"est dolor nostrud\"\n  ],\n  \"tags\": [\n    \"et\",\n    \"dolor deserunt reprehenderit laborum \"\n  ]\n}"}],"_postman_id":"96d2798f-b87e-41c7-b3a1-1bb10fae7bd3"},{"name":"Update Asset","id":"768b4cc3-1dad-4f93-9510-5b10fc8352e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<boolean>\",\n  \"active\": \"<boolean>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\",\n  \"watermark_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//assets/:id","urlObject":{"path":["assets",":id"],"host":["/"],"query":[],"variable":[{"id":"8d03135f-0af9-4b1c-b348-efe333ec8c78","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"e6abd633-2ca4-4a70-81ee-8f18954b77a7","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<boolean>\",\n  \"active\": \"<boolean>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\",\n  \"watermark_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//assets/:id","host":["/"],"path":["assets",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"magna Excepteur pariatur consequat\",\n  \"description\": \"consect\",\n  \"type\": true,\n  \"active\": true,\n  \"url\": \"anim tempor irure ex\",\n  \"thumbnail_url\": \"anim qui\",\n  \"watermark_url\": \"commodo ex minim\",\n  \"updated_on\": \"2006-07-07T06:49:03.953Z\",\n  \"updated_by\": \"cupidatat enim ipsum elit\",\n  \"created_on\": \"2003-10-21T05:51:46.899Z\",\n  \"created_by\": \"quis velit Duis et aute\",\n  \"archived\": true,\n  \"archived_on\": \"1995-09-06T09:42:23.008Z\",\n  \"archived_by\": \"sit nulla qui cillum dolore\",\n  \"organization\": {\n    \"name\": \"laboris dolore eu in\",\n    \"slug\": \"proident\",\n    \"logo\": \"tempor sed non quis Duis\",\n    \"color\": \"pariatur ut dolor voluptate laborum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aute quis nulla\",\n    \"ad_spend_tracker_url\": \"aliqua adipisicing non do\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"aliquip\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"ipsum mollit est irure\",\n    \"updated_on\": \"2020-07-23T23:23:40.703Z\",\n    \"updated_by\": \"dolor Excepteur\",\n    \"created_on\": \"1976-05-27T18:40:29.408Z\",\n    \"created_by\": \"ut exercitation ea aute \",\n    \"archived\": true,\n    \"archived_on\": \"2005-08-13T02:39:06.247Z\",\n    \"archived_by\": \"nostrud irure veniam laboris qui\"\n  },\n  \"workspaces\": [\n    \"laboris id est veniam\",\n    \"culpa reprehenderit\"\n  ],\n  \"folder\": {\n    \"name\": \"dolor ad\",\n    \"slug\": \"ex occaecat commodo\",\n    \"public\": true,\n    \"updated_on\": \"1963-04-09T17:41:36.441Z\",\n    \"updated_by\": \"ex exercitation\",\n    \"created_on\": \"1942-07-27T13:12:56.070Z\",\n    \"created_by\": \"Duis minim qu\",\n    \"archived\": true,\n    \"archived_on\": \"2007-02-04T19:55:18.252Z\",\n    \"archived_by\": \"fugiat reprehenderit\",\n    \"organization\": {\n      \"name\": \"laboris id amet e\",\n      \"slug\": \"ad eiusmod\",\n      \"logo\": \"amet consequat\",\n      \"color\": \"dolore sint ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"elit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"pariatur in ut sint\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse aute ex\",\n      \"updated_on\": \"1944-06-11T06:00:31.176Z\",\n      \"updated_by\": \"sunt esse in reprehenderit\",\n      \"created_on\": \"1956-08-23T15:15:36.941Z\",\n      \"created_by\": \"adipisicing eu commodo sit\",\n      \"archived\": true,\n      \"archived_on\": \"2000-01-16T19:55:09.312Z\",\n      \"archived_by\": \"exercitation culpa mollit tem\"\n    },\n    \"workspaces\": [\n      \"velit in molli\",\n      \"molli\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  \"attachments\": [\n    \"ad nulla\",\n    \"est dolor nostrud\"\n  ],\n  \"tags\": [\n    \"et\",\n    \"dolor deserunt reprehenderit laborum \"\n  ]\n}"}],"_postman_id":"768b4cc3-1dad-4f93-9510-5b10fc8352e9"},{"name":"Archive Asset","id":"8ca220ec-5539-4835-8b05-c6068cbeb1b4","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//assets/:id","urlObject":{"path":["assets",":id"],"host":["/"],"query":[],"variable":[{"id":"a86b3cdf-9461-494e-ad54-848945a64df4","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"63425da6-fec3-479e-b27f-2efe74add41e","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//assets/:id","host":["/"],"path":["assets",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"magna Excepteur pariatur consequat\",\n  \"description\": \"consect\",\n  \"type\": true,\n  \"active\": true,\n  \"url\": \"anim tempor irure ex\",\n  \"thumbnail_url\": \"anim qui\",\n  \"watermark_url\": \"commodo ex minim\",\n  \"updated_on\": \"2006-07-07T06:49:03.953Z\",\n  \"updated_by\": \"cupidatat enim ipsum elit\",\n  \"created_on\": \"2003-10-21T05:51:46.899Z\",\n  \"created_by\": \"quis velit Duis et aute\",\n  \"archived\": true,\n  \"archived_on\": \"1995-09-06T09:42:23.008Z\",\n  \"archived_by\": \"sit nulla qui cillum dolore\",\n  \"organization\": {\n    \"name\": \"laboris dolore eu in\",\n    \"slug\": \"proident\",\n    \"logo\": \"tempor sed non quis Duis\",\n    \"color\": \"pariatur ut dolor voluptate laborum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aute quis nulla\",\n    \"ad_spend_tracker_url\": \"aliqua adipisicing non do\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"aliquip\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"ipsum mollit est irure\",\n    \"updated_on\": \"2020-07-23T23:23:40.703Z\",\n    \"updated_by\": \"dolor Excepteur\",\n    \"created_on\": \"1976-05-27T18:40:29.408Z\",\n    \"created_by\": \"ut exercitation ea aute \",\n    \"archived\": true,\n    \"archived_on\": \"2005-08-13T02:39:06.247Z\",\n    \"archived_by\": \"nostrud irure veniam laboris qui\"\n  },\n  \"workspaces\": [\n    \"laboris id est veniam\",\n    \"culpa reprehenderit\"\n  ],\n  \"folder\": {\n    \"name\": \"dolor ad\",\n    \"slug\": \"ex occaecat commodo\",\n    \"public\": true,\n    \"updated_on\": \"1963-04-09T17:41:36.441Z\",\n    \"updated_by\": \"ex exercitation\",\n    \"created_on\": \"1942-07-27T13:12:56.070Z\",\n    \"created_by\": \"Duis minim qu\",\n    \"archived\": true,\n    \"archived_on\": \"2007-02-04T19:55:18.252Z\",\n    \"archived_by\": \"fugiat reprehenderit\",\n    \"organization\": {\n      \"name\": \"laboris id amet e\",\n      \"slug\": \"ad eiusmod\",\n      \"logo\": \"amet consequat\",\n      \"color\": \"dolore sint ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"elit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"pariatur in ut sint\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse aute ex\",\n      \"updated_on\": \"1944-06-11T06:00:31.176Z\",\n      \"updated_by\": \"sunt esse in reprehenderit\",\n      \"created_on\": \"1956-08-23T15:15:36.941Z\",\n      \"created_by\": \"adipisicing eu commodo sit\",\n      \"archived\": true,\n      \"archived_on\": \"2000-01-16T19:55:09.312Z\",\n      \"archived_by\": \"exercitation culpa mollit tem\"\n    },\n    \"workspaces\": [\n      \"velit in molli\",\n      \"molli\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  \"attachments\": [\n    \"ad nulla\",\n    \"est dolor nostrud\"\n  ],\n  \"tags\": [\n    \"et\",\n    \"dolor deserunt reprehenderit laborum \"\n  ]\n}"}],"_postman_id":"8ca220ec-5539-4835-8b05-c6068cbeb1b4"},{"name":"Unarchive Asset","id":"171e94ec-4b18-425b-9c50-aadcf87a7f09","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//assets/:id/unarchive","urlObject":{"path":["assets",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"76734c53-54b8-4066-b996-a4fc96d1efea","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"52e05229-8904-410b-a6f8-5a74be61212c","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//assets/:id/unarchive","host":["/"],"path":["assets",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"magna Excepteur pariatur consequat\",\n  \"description\": \"consect\",\n  \"type\": true,\n  \"active\": true,\n  \"url\": \"anim tempor irure ex\",\n  \"thumbnail_url\": \"anim qui\",\n  \"watermark_url\": \"commodo ex minim\",\n  \"updated_on\": \"2006-07-07T06:49:03.953Z\",\n  \"updated_by\": \"cupidatat enim ipsum elit\",\n  \"created_on\": \"2003-10-21T05:51:46.899Z\",\n  \"created_by\": \"quis velit Duis et aute\",\n  \"archived\": true,\n  \"archived_on\": \"1995-09-06T09:42:23.008Z\",\n  \"archived_by\": \"sit nulla qui cillum dolore\",\n  \"organization\": {\n    \"name\": \"laboris dolore eu in\",\n    \"slug\": \"proident\",\n    \"logo\": \"tempor sed non quis Duis\",\n    \"color\": \"pariatur ut dolor voluptate laborum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aute quis nulla\",\n    \"ad_spend_tracker_url\": \"aliqua adipisicing non do\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"aliquip\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"ipsum mollit est irure\",\n    \"updated_on\": \"2020-07-23T23:23:40.703Z\",\n    \"updated_by\": \"dolor Excepteur\",\n    \"created_on\": \"1976-05-27T18:40:29.408Z\",\n    \"created_by\": \"ut exercitation ea aute \",\n    \"archived\": true,\n    \"archived_on\": \"2005-08-13T02:39:06.247Z\",\n    \"archived_by\": \"nostrud irure veniam laboris qui\"\n  },\n  \"workspaces\": [\n    \"laboris id est veniam\",\n    \"culpa reprehenderit\"\n  ],\n  \"folder\": {\n    \"name\": \"dolor ad\",\n    \"slug\": \"ex occaecat commodo\",\n    \"public\": true,\n    \"updated_on\": \"1963-04-09T17:41:36.441Z\",\n    \"updated_by\": \"ex exercitation\",\n    \"created_on\": \"1942-07-27T13:12:56.070Z\",\n    \"created_by\": \"Duis minim qu\",\n    \"archived\": true,\n    \"archived_on\": \"2007-02-04T19:55:18.252Z\",\n    \"archived_by\": \"fugiat reprehenderit\",\n    \"organization\": {\n      \"name\": \"laboris id amet e\",\n      \"slug\": \"ad eiusmod\",\n      \"logo\": \"amet consequat\",\n      \"color\": \"dolore sint ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"elit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"pariatur in ut sint\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse aute ex\",\n      \"updated_on\": \"1944-06-11T06:00:31.176Z\",\n      \"updated_by\": \"sunt esse in reprehenderit\",\n      \"created_on\": \"1956-08-23T15:15:36.941Z\",\n      \"created_by\": \"adipisicing eu commodo sit\",\n      \"archived\": true,\n      \"archived_on\": \"2000-01-16T19:55:09.312Z\",\n      \"archived_by\": \"exercitation culpa mollit tem\"\n    },\n    \"workspaces\": [\n      \"velit in molli\",\n      \"molli\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  \"attachments\": [\n    \"ad nulla\",\n    \"est dolor nostrud\"\n  ],\n  \"tags\": [\n    \"et\",\n    \"dolor deserunt reprehenderit laborum \"\n  ]\n}"}],"_postman_id":"171e94ec-4b18-425b-9c50-aadcf87a7f09"},{"name":"Delete Asset","id":"12861776-30c7-44e5-a75a-72352503c720","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//assets/:id/delete","urlObject":{"path":["assets",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"a54f9a1a-7c67-4d03-a746-d6405a88219b","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"8c61a5cb-09bd-496b-a7c3-ddead80489cf","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//assets/:id/delete","host":["/"],"path":["assets",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"magna Excepteur pariatur consequat\",\n  \"description\": \"consect\",\n  \"type\": true,\n  \"active\": true,\n  \"url\": \"anim tempor irure ex\",\n  \"thumbnail_url\": \"anim qui\",\n  \"watermark_url\": \"commodo ex minim\",\n  \"updated_on\": \"2006-07-07T06:49:03.953Z\",\n  \"updated_by\": \"cupidatat enim ipsum elit\",\n  \"created_on\": \"2003-10-21T05:51:46.899Z\",\n  \"created_by\": \"quis velit Duis et aute\",\n  \"archived\": true,\n  \"archived_on\": \"1995-09-06T09:42:23.008Z\",\n  \"archived_by\": \"sit nulla qui cillum dolore\",\n  \"organization\": {\n    \"name\": \"laboris dolore eu in\",\n    \"slug\": \"proident\",\n    \"logo\": \"tempor sed non quis Duis\",\n    \"color\": \"pariatur ut dolor voluptate laborum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aute quis nulla\",\n    \"ad_spend_tracker_url\": \"aliqua adipisicing non do\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"aliquip\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"ipsum mollit est irure\",\n    \"updated_on\": \"2020-07-23T23:23:40.703Z\",\n    \"updated_by\": \"dolor Excepteur\",\n    \"created_on\": \"1976-05-27T18:40:29.408Z\",\n    \"created_by\": \"ut exercitation ea aute \",\n    \"archived\": true,\n    \"archived_on\": \"2005-08-13T02:39:06.247Z\",\n    \"archived_by\": \"nostrud irure veniam laboris qui\"\n  },\n  \"workspaces\": [\n    \"laboris id est veniam\",\n    \"culpa reprehenderit\"\n  ],\n  \"folder\": {\n    \"name\": \"dolor ad\",\n    \"slug\": \"ex occaecat commodo\",\n    \"public\": true,\n    \"updated_on\": \"1963-04-09T17:41:36.441Z\",\n    \"updated_by\": \"ex exercitation\",\n    \"created_on\": \"1942-07-27T13:12:56.070Z\",\n    \"created_by\": \"Duis minim qu\",\n    \"archived\": true,\n    \"archived_on\": \"2007-02-04T19:55:18.252Z\",\n    \"archived_by\": \"fugiat reprehenderit\",\n    \"organization\": {\n      \"name\": \"laboris id amet e\",\n      \"slug\": \"ad eiusmod\",\n      \"logo\": \"amet consequat\",\n      \"color\": \"dolore sint ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"elit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"pariatur in ut sint\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse aute ex\",\n      \"updated_on\": \"1944-06-11T06:00:31.176Z\",\n      \"updated_by\": \"sunt esse in reprehenderit\",\n      \"created_on\": \"1956-08-23T15:15:36.941Z\",\n      \"created_by\": \"adipisicing eu commodo sit\",\n      \"archived\": true,\n      \"archived_on\": \"2000-01-16T19:55:09.312Z\",\n      \"archived_by\": \"exercitation culpa mollit tem\"\n    },\n    \"workspaces\": [\n      \"velit in molli\",\n      \"molli\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  \"attachments\": [\n    \"ad nulla\",\n    \"est dolor nostrud\"\n  ],\n  \"tags\": [\n    \"et\",\n    \"dolor deserunt reprehenderit laborum \"\n  ]\n}"}],"_postman_id":"12861776-30c7-44e5-a75a-72352503c720"}],"id":"d3ddde6a-e035-44f7-90c3-a828ba3c8210","description":"<p>Assets refers to the various digital media that are used within a particular campaign. These assets include the visual, audio, video, and other formats that can be deployed through a campaign. </p>\n","_postman_id":"d3ddde6a-e035-44f7-90c3-a828ba3c8210"},{"name":"Attachments","item":[{"name":"Find All Attachments","id":"4805301a-a804-4d19-92ad-fd93e40a42a1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//attachments?archived=<boolean>","urlObject":{"path":["attachments"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"c01204dd-a512-4490-920f-68320c46d964","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//attachments?archived=<boolean>","host":["/"],"path":["attachments"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"4805301a-a804-4d19-92ad-fd93e40a42a1"},{"name":"Create Attachment","id":"c395ca8a-04f3-4495-9238-ba5fa8266d7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//attachments","urlObject":{"path":["attachments"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"976748fa-015b-4b11-897b-4c096a9ec732","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//attachments"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"c395ca8a-04f3-4495-9238-ba5fa8266d7c"},{"name":"Count Attachments","id":"c30a48d6-0f09-45cb-b493-659f25c5055e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//attachments/count?archived=<boolean>","urlObject":{"path":["attachments","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"7d9273d7-8470-490f-a877-711d19119a8f","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//attachments/count?archived=<boolean>","host":["/"],"path":["attachments","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"c30a48d6-0f09-45cb-b493-659f25c5055e"},{"name":"Search Attachments","id":"bef83942-1735-4553-ac78-4caf83d3de18","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//attachments/search","urlObject":{"path":["attachments","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"1808fed0-151d-4cb1-9733-e8b090eee116","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//attachments/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"bef83942-1735-4553-ac78-4caf83d3de18"},{"name":"Find One Attachment","id":"a040e0fd-8d66-41d7-9b16-0618834fc90c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//attachments/:id?archived=<boolean>","urlObject":{"path":["attachments",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"4ef33dd3-b117-4d23-b475-2bf652cc6a0c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"eebb8eb7-6f65-4759-aa39-080434620f6d","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//attachments/:id?archived=<boolean>","host":["/"],"path":["attachments",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"a040e0fd-8d66-41d7-9b16-0618834fc90c"},{"name":"Replace Attachment","id":"040043c6-0100-4df9-82b4-0d4f71a5e145","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//attachments/:id","urlObject":{"path":["attachments",":id"],"host":["/"],"query":[],"variable":[{"id":"6874f029-b109-4fb0-bd6d-c909424a050b","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a9402e27-7432-4b5a-92ff-633be344eb45","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":{"raw":"//attachments/:id","host":["/"],"path":["attachments",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"040043c6-0100-4df9-82b4-0d4f71a5e145"},{"name":"Update Attachment","id":"c01a1fb4-a38f-4b08-aeba-a551f3ccb958","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//attachments/:id","urlObject":{"path":["attachments",":id"],"host":["/"],"query":[],"variable":[{"id":"049718fb-6b38-4ce2-8023-b3b18ffd57b6","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"7b81f099-2397-4584-a7fb-1a7d0b631a99","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":{"raw":"//attachments/:id","host":["/"],"path":["attachments",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"c01a1fb4-a38f-4b08-aeba-a551f3ccb958"},{"name":"Archive Attachment","id":"e30ddaee-e6d9-43a3-b55a-4bf7d97d680c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//attachments/:id","urlObject":{"path":["attachments",":id"],"host":["/"],"query":[],"variable":[{"id":"34fd3d90-ce0d-48af-827b-76622f09bc08","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"2ec336f2-b175-4c26-9efd-f3cdd309dbe6","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//attachments/:id","host":["/"],"path":["attachments",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"e30ddaee-e6d9-43a3-b55a-4bf7d97d680c"},{"name":"Unarchive Attachment","id":"1848876b-1c10-4183-aaab-cb7c344a3d45","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//attachments/:id/unarchive","urlObject":{"path":["attachments",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"d4257daf-d8d3-4053-a696-b7c9bae90d72","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"5a0e1381-687a-4461-8116-b92b40215dee","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//attachments/:id/unarchive","host":["/"],"path":["attachments",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"1848876b-1c10-4183-aaab-cb7c344a3d45"},{"name":"Delete Attachment","id":"2ea5493b-14a5-448b-b541-19c2e9407e84","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//attachments/:id/delete","urlObject":{"path":["attachments",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"b714a113-9274-40d5-9806-77a7e1c82292","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d377e3d6-9904-45c5-896e-129f03004972","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//attachments/:id/delete","host":["/"],"path":["attachments",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"2ea5493b-14a5-448b-b541-19c2e9407e84"}],"id":"a26df493-133f-4fb9-9a05-0431fcf4e3dd","description":"<p>Attachments are files that are uploaded to the Platform.</p>\n","_postman_id":"a26df493-133f-4fb9-9a05-0431fcf4e3dd"},{"name":"Audiences","item":[{"name":"Find All Audiences","id":"58a2501c-cd67-409b-8774-8bf450202439","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//audiences?archived=<boolean>","urlObject":{"path":["audiences"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"79b5cc11-1e7c-4f6d-bf1c-c89caa2574f3","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//audiences?archived=<boolean>","host":["/"],"path":["audiences"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"58a2501c-cd67-409b-8774-8bf450202439"},{"name":"Create Audience","id":"a33b21d0-8de7-4f78-936e-f654c49940a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"type\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//audiences","urlObject":{"path":["audiences"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"4bf367a2-7146-43cc-8d61-18ec434c9333","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"type\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//audiences"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"a33b21d0-8de7-4f78-936e-f654c49940a4"},{"name":"Count Audiences","id":"4eddd12b-c2e3-412e-9337-a2fe8c644ffb","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//audiences/count?archived=<boolean>","urlObject":{"path":["audiences","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"83100dea-90ce-420e-bc18-ea57beed74bb","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//audiences/count?archived=<boolean>","host":["/"],"path":["audiences","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"4eddd12b-c2e3-412e-9337-a2fe8c644ffb"},{"name":"Search Audiences","id":"c8cfa410-8117-4608-a5f0-4f7cb445b319","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//audiences/search","urlObject":{"path":["audiences","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"739804dc-aaaf-430b-955a-47a062dd054c","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//audiences/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"c8cfa410-8117-4608-a5f0-4f7cb445b319"},{"name":"Find One Audience","id":"9b57a42e-1f06-42b1-a116-6152b5ce7607","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//audiences/:id?archived=<boolean>","urlObject":{"path":["audiences",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"454e170f-eea8-4e6d-ad4c-35f75aea521e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d926eb91-e590-42af-b176-b286140a7938","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//audiences/:id?archived=<boolean>","host":["/"],"path":["audiences",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"9b57a42e-1f06-42b1-a116-6152b5ce7607"},{"name":"Replace Audience","id":"ed614d68-b53d-4770-80d1-db9e0d2cbd9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"type\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//audiences/:id","urlObject":{"path":["audiences",":id"],"host":["/"],"query":[],"variable":[{"id":"5148ac13-ea58-4367-8c9f-ed8c91beeaed","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"79341ee7-172f-411f-98e1-b5aedd694129","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"type\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//audiences/:id","host":["/"],"path":["audiences",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"ed614d68-b53d-4770-80d1-db9e0d2cbd9c"},{"name":"Update Audience","id":"a3487713-0b64-44d2-9356-8093872b9dad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"type\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//audiences/:id","urlObject":{"path":["audiences",":id"],"host":["/"],"query":[],"variable":[{"id":"56396922-9912-4fd8-853a-b3b4b7091995","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"3415d580-d15b-4320-a9e7-7ea2f89cf9d8","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"type\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//audiences/:id","host":["/"],"path":["audiences",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"a3487713-0b64-44d2-9356-8093872b9dad"},{"name":"Archive Audience","id":"fda25ab4-1071-4641-bb6e-20f0a8c01acc","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//audiences/:id","urlObject":{"path":["audiences",":id"],"host":["/"],"query":[],"variable":[{"id":"e22378ca-cc78-4fa3-bab8-9c60f6761468","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"0ed5cbe0-dad7-44fb-bb8f-89f70e272e71","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//audiences/:id","host":["/"],"path":["audiences",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"fda25ab4-1071-4641-bb6e-20f0a8c01acc"},{"name":"Unarchive Audience","id":"95a6cc43-4a6e-40dc-aa33-91a247f39848","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//audiences/:id/unarchive","urlObject":{"path":["audiences",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"64333975-8b8b-428c-b0ba-efd4e5b09962","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4bc5421b-0078-435f-b790-160a67e31e9d","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//audiences/:id/unarchive","host":["/"],"path":["audiences",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"95a6cc43-4a6e-40dc-aa33-91a247f39848"},{"name":"Delete Audience","id":"99f21263-8db5-434c-912c-2704ebc21da4","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//audiences/:id/delete","urlObject":{"path":["audiences",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"e3fb80a8-06d2-4c55-b2b3-9898593fe98f","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"0475707d-34db-4404-bcb7-7211784407b2","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//audiences/:id/delete","host":["/"],"path":["audiences",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"99f21263-8db5-434c-912c-2704ebc21da4"}],"id":"ed460016-535e-4d2c-8809-5f30e6896bfb","description":"<p>Audiences are segments of people that can be used to help help inform advertising platform who to target. You can manage the creation, updating, and uploading of Audiences from within the AIAD Platform. </p>\n","_postman_id":"ed460016-535e-4d2c-8809-5f30e6896bfb"},{"name":"Auditlogs","item":[{"name":"Find All Auditlogs","id":"628324d8-84ab-4f6d-b03b-953e7fa968b3","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//auditlogs?archived=<boolean>","urlObject":{"path":["auditlogs"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"cdc3945e-12a0-4eda-8750-4266203c7e4d","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//auditlogs?archived=<boolean>","host":["/"],"path":["auditlogs"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"type\": \"minim ad\",\n    \"action\": \"labore cupidatat sint reprehenderit\",\n    \"description\": \"dolore\",\n    \"before\": {},\n    \"after\": {},\n    \"ip_address\": {},\n    \"created_on\": \"1957-09-23T13:59:38.429Z\",\n    \"created_by\": \"nulla\",\n    \"organization\": {\n      \"name\": \"sunt do\",\n      \"slug\": \"nisi\",\n      \"logo\": \"ullamco mollit\",\n      \"color\": \"laborum deserunt elit adipisicing\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"qu\",\n      \"ad_spend_tracker_url\": \"pariatur e\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"nostrud in\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse ea\",\n      \"updated_on\": \"1953-10-12T12:35:54.951Z\",\n      \"updated_by\": \"officia in\",\n      \"created_on\": \"2004-02-14T00:49:06.690Z\",\n      \"created_by\": \"tempor cillum\",\n      \"archived\": false,\n      \"archived_on\": \"1952-06-20T18:40:06.598Z\",\n      \"archived_by\": \"pari\"\n    },\n    \"workspaces\": [\n      \"in ad eu\",\n      \"veniam sit Excepteur in\"\n    ]\n  },\n  {\n    \"type\": \"Ut esse velit minim\",\n    \"action\": \"nostrud labore est reprehenderit\",\n    \"description\": \"consectetur adipisicing\",\n    \"before\": {},\n    \"after\": {},\n    \"ip_address\": {},\n    \"created_on\": \"2006-11-11T15:38:41.033Z\",\n    \"created_by\": \"mollit proident quis\",\n    \"organization\": {\n      \"name\": \"proident dolore aute\",\n      \"slug\": \"est ut mollit do\",\n      \"logo\": \"consequat nisi commodo tempor non\",\n      \"color\": \"dolor qui adipisicing proident\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"et exercitation incididunt irure\",\n      \"ad_spend_tracker_url\": \"sint consectetur\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"aliquip dolore proident veniam\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"nulla ex\",\n      \"updated_on\": \"1975-01-29T19:19:09.437Z\",\n      \"updated_by\": \"\",\n      \"created_on\": \"1954-06-03T02:33:19.314Z\",\n      \"created_by\": \"sit\",\n      \"archived\": true,\n      \"archived_on\": \"2018-02-11T00:58:54.318Z\",\n      \"archived_by\": \"exercitation voluptate laborum\"\n    },\n    \"workspaces\": [\n      \"in minim\",\n      \"culpa eu enim elit\"\n    ]\n  }\n]"}],"_postman_id":"628324d8-84ab-4f6d-b03b-953e7fa968b3"},{"name":"Create Auditlog","id":"25967df7-f43b-40ba-b11b-68b244affb23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"action\": \"<string>\",\n  \"description\": \"<string>\",\n  \"before\": \"<object>\",\n  \"after\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//auditlogs","urlObject":{"path":["auditlogs"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"a3ba79f6-20bc-464c-8689-10fbbb678306","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"action\": \"<string>\",\n  \"description\": \"<string>\",\n  \"before\": \"<object>\",\n  \"after\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//auditlogs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"ea et enim commodo in\",\n  \"action\": \"Excepteur dolore consectetur\",\n  \"description\": \"sunt\",\n  \"before\": {},\n  \"after\": {},\n  \"ip_address\": {},\n  \"created_on\": \"1946-03-30T06:25:20.747Z\",\n  \"created_by\": \"aliquip\",\n  \"organization\": {\n    \"name\": \"quis culpa la\",\n    \"slug\": \"ut Lorem irure Excepteur sint\",\n    \"logo\": \"officia sint tempor aliqua\",\n    \"color\": \"officia fugiat culpa\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"commodo elit id\",\n    \"ad_spend_tracker_url\": \"non\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"labore qui magna\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit Duis ipsum minim\",\n    \"updated_on\": \"1982-03-16T10:50:25.814Z\",\n    \"updated_by\": \"nulla officia proident veniam\",\n    \"created_on\": \"1961-08-08T10:01:57.757Z\",\n    \"created_by\": \"mollit nostrud do ut\",\n    \"archived\": true,\n    \"archived_on\": \"2007-10-19T23:23:14.515Z\",\n    \"archived_by\": \"dolor ullamco dolore ex\"\n  },\n  \"workspaces\": [\n    \"pariatur labore\",\n    \"amet et aute\"\n  ]\n}"}],"_postman_id":"25967df7-f43b-40ba-b11b-68b244affb23"},{"name":"Count Auditlogs","id":"4ae881b6-2172-4fe8-bc5b-e019e9500b90","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//auditlogs/count?archived=<boolean>","urlObject":{"path":["auditlogs","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"c621f5e8-6e6f-4a4e-b9fa-6f8a642e81be","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//auditlogs/count?archived=<boolean>","host":["/"],"path":["auditlogs","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"4ae881b6-2172-4fe8-bc5b-e019e9500b90"},{"name":"Search Auditlogs","id":"b9f25ac2-6c4b-44e9-bb9a-f2227aad5b3b","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//auditlogs/search","urlObject":{"path":["auditlogs","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"45e87227-744f-45e9-a59c-7da64ead024a","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//auditlogs/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"type\": \"minim ad\",\n    \"action\": \"labore cupidatat sint reprehenderit\",\n    \"description\": \"dolore\",\n    \"before\": {},\n    \"after\": {},\n    \"ip_address\": {},\n    \"created_on\": \"1957-09-23T13:59:38.429Z\",\n    \"created_by\": \"nulla\",\n    \"organization\": {\n      \"name\": \"sunt do\",\n      \"slug\": \"nisi\",\n      \"logo\": \"ullamco mollit\",\n      \"color\": \"laborum deserunt elit adipisicing\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"qu\",\n      \"ad_spend_tracker_url\": \"pariatur e\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"nostrud in\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"esse ea\",\n      \"updated_on\": \"1953-10-12T12:35:54.951Z\",\n      \"updated_by\": \"officia in\",\n      \"created_on\": \"2004-02-14T00:49:06.690Z\",\n      \"created_by\": \"tempor cillum\",\n      \"archived\": false,\n      \"archived_on\": \"1952-06-20T18:40:06.598Z\",\n      \"archived_by\": \"pari\"\n    },\n    \"workspaces\": [\n      \"in ad eu\",\n      \"veniam sit Excepteur in\"\n    ]\n  },\n  {\n    \"type\": \"Ut esse velit minim\",\n    \"action\": \"nostrud labore est reprehenderit\",\n    \"description\": \"consectetur adipisicing\",\n    \"before\": {},\n    \"after\": {},\n    \"ip_address\": {},\n    \"created_on\": \"2006-11-11T15:38:41.033Z\",\n    \"created_by\": \"mollit proident quis\",\n    \"organization\": {\n      \"name\": \"proident dolore aute\",\n      \"slug\": \"est ut mollit do\",\n      \"logo\": \"consequat nisi commodo tempor non\",\n      \"color\": \"dolor qui adipisicing proident\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"et exercitation incididunt irure\",\n      \"ad_spend_tracker_url\": \"sint consectetur\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"aliquip dolore proident veniam\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"nulla ex\",\n      \"updated_on\": \"1975-01-29T19:19:09.437Z\",\n      \"updated_by\": \"\",\n      \"created_on\": \"1954-06-03T02:33:19.314Z\",\n      \"created_by\": \"sit\",\n      \"archived\": true,\n      \"archived_on\": \"2018-02-11T00:58:54.318Z\",\n      \"archived_by\": \"exercitation voluptate laborum\"\n    },\n    \"workspaces\": [\n      \"in minim\",\n      \"culpa eu enim elit\"\n    ]\n  }\n]"}],"_postman_id":"b9f25ac2-6c4b-44e9-bb9a-f2227aad5b3b"},{"name":"Find One Auditlog","id":"2b0d8bae-6bdf-436b-b293-644a6904065d","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//auditlogs/:id?archived=<boolean>","urlObject":{"path":["auditlogs",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"485721d2-f16f-4a57-ba67-a51e729f82eb","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"79631a63-9a66-45f4-8d4e-c75812b84f5f","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//auditlogs/:id?archived=<boolean>","host":["/"],"path":["auditlogs",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"ea et enim commodo in\",\n  \"action\": \"Excepteur dolore consectetur\",\n  \"description\": \"sunt\",\n  \"before\": {},\n  \"after\": {},\n  \"ip_address\": {},\n  \"created_on\": \"1946-03-30T06:25:20.747Z\",\n  \"created_by\": \"aliquip\",\n  \"organization\": {\n    \"name\": \"quis culpa la\",\n    \"slug\": \"ut Lorem irure Excepteur sint\",\n    \"logo\": \"officia sint tempor aliqua\",\n    \"color\": \"officia fugiat culpa\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"commodo elit id\",\n    \"ad_spend_tracker_url\": \"non\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"labore qui magna\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit Duis ipsum minim\",\n    \"updated_on\": \"1982-03-16T10:50:25.814Z\",\n    \"updated_by\": \"nulla officia proident veniam\",\n    \"created_on\": \"1961-08-08T10:01:57.757Z\",\n    \"created_by\": \"mollit nostrud do ut\",\n    \"archived\": true,\n    \"archived_on\": \"2007-10-19T23:23:14.515Z\",\n    \"archived_by\": \"dolor ullamco dolore ex\"\n  },\n  \"workspaces\": [\n    \"pariatur labore\",\n    \"amet et aute\"\n  ]\n}"}],"_postman_id":"2b0d8bae-6bdf-436b-b293-644a6904065d"},{"name":"Replace Auditlog","id":"147eda08-c679-48f0-88ef-df71effbacd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"action\": \"<string>\",\n  \"description\": \"<string>\",\n  \"before\": \"<object>\",\n  \"after\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//auditlogs/:id","urlObject":{"path":["auditlogs",":id"],"host":["/"],"query":[],"variable":[{"id":"adf60825-3c3f-4321-ae8a-d82fe770cdca","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4acf00b5-6cb2-43f7-95ae-ffe03402f06c","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"action\": \"<string>\",\n  \"description\": \"<string>\",\n  \"before\": \"<object>\",\n  \"after\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//auditlogs/:id","host":["/"],"path":["auditlogs",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"ea et enim commodo in\",\n  \"action\": \"Excepteur dolore consectetur\",\n  \"description\": \"sunt\",\n  \"before\": {},\n  \"after\": {},\n  \"ip_address\": {},\n  \"created_on\": \"1946-03-30T06:25:20.747Z\",\n  \"created_by\": \"aliquip\",\n  \"organization\": {\n    \"name\": \"quis culpa la\",\n    \"slug\": \"ut Lorem irure Excepteur sint\",\n    \"logo\": \"officia sint tempor aliqua\",\n    \"color\": \"officia fugiat culpa\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"commodo elit id\",\n    \"ad_spend_tracker_url\": \"non\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"labore qui magna\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit Duis ipsum minim\",\n    \"updated_on\": \"1982-03-16T10:50:25.814Z\",\n    \"updated_by\": \"nulla officia proident veniam\",\n    \"created_on\": \"1961-08-08T10:01:57.757Z\",\n    \"created_by\": \"mollit nostrud do ut\",\n    \"archived\": true,\n    \"archived_on\": \"2007-10-19T23:23:14.515Z\",\n    \"archived_by\": \"dolor ullamco dolore ex\"\n  },\n  \"workspaces\": [\n    \"pariatur labore\",\n    \"amet et aute\"\n  ]\n}"}],"_postman_id":"147eda08-c679-48f0-88ef-df71effbacd7"},{"name":"Update Auditlog","id":"e6b90d53-a4c4-4c93-a499-b4f9ef182465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"action\": \"<string>\",\n  \"description\": \"<string>\",\n  \"before\": \"<object>\",\n  \"after\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//auditlogs/:id","urlObject":{"path":["auditlogs",":id"],"host":["/"],"query":[],"variable":[{"id":"245bbca4-06b2-4d18-a239-8f6da44e3eaa","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"1e1fa4ab-e96c-41e9-8c16-9a94522702ea","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"action\": \"<string>\",\n  \"description\": \"<string>\",\n  \"before\": \"<object>\",\n  \"after\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//auditlogs/:id","host":["/"],"path":["auditlogs",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"ea et enim commodo in\",\n  \"action\": \"Excepteur dolore consectetur\",\n  \"description\": \"sunt\",\n  \"before\": {},\n  \"after\": {},\n  \"ip_address\": {},\n  \"created_on\": \"1946-03-30T06:25:20.747Z\",\n  \"created_by\": \"aliquip\",\n  \"organization\": {\n    \"name\": \"quis culpa la\",\n    \"slug\": \"ut Lorem irure Excepteur sint\",\n    \"logo\": \"officia sint tempor aliqua\",\n    \"color\": \"officia fugiat culpa\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"commodo elit id\",\n    \"ad_spend_tracker_url\": \"non\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"labore qui magna\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit Duis ipsum minim\",\n    \"updated_on\": \"1982-03-16T10:50:25.814Z\",\n    \"updated_by\": \"nulla officia proident veniam\",\n    \"created_on\": \"1961-08-08T10:01:57.757Z\",\n    \"created_by\": \"mollit nostrud do ut\",\n    \"archived\": true,\n    \"archived_on\": \"2007-10-19T23:23:14.515Z\",\n    \"archived_by\": \"dolor ullamco dolore ex\"\n  },\n  \"workspaces\": [\n    \"pariatur labore\",\n    \"amet et aute\"\n  ]\n}"}],"_postman_id":"e6b90d53-a4c4-4c93-a499-b4f9ef182465"},{"name":"Archive Auditlog","id":"ce199991-a098-4872-91e2-537d9d61ab4a","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//auditlogs/:id","urlObject":{"path":["auditlogs",":id"],"host":["/"],"query":[],"variable":[{"id":"0b290bc5-4639-48ae-99bf-98af2e01eccd","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a369215f-5ea5-4ad2-8081-833dff7352f4","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//auditlogs/:id","host":["/"],"path":["auditlogs",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"ea et enim commodo in\",\n  \"action\": \"Excepteur dolore consectetur\",\n  \"description\": \"sunt\",\n  \"before\": {},\n  \"after\": {},\n  \"ip_address\": {},\n  \"created_on\": \"1946-03-30T06:25:20.747Z\",\n  \"created_by\": \"aliquip\",\n  \"organization\": {\n    \"name\": \"quis culpa la\",\n    \"slug\": \"ut Lorem irure Excepteur sint\",\n    \"logo\": \"officia sint tempor aliqua\",\n    \"color\": \"officia fugiat culpa\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"commodo elit id\",\n    \"ad_spend_tracker_url\": \"non\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"labore qui magna\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit Duis ipsum minim\",\n    \"updated_on\": \"1982-03-16T10:50:25.814Z\",\n    \"updated_by\": \"nulla officia proident veniam\",\n    \"created_on\": \"1961-08-08T10:01:57.757Z\",\n    \"created_by\": \"mollit nostrud do ut\",\n    \"archived\": true,\n    \"archived_on\": \"2007-10-19T23:23:14.515Z\",\n    \"archived_by\": \"dolor ullamco dolore ex\"\n  },\n  \"workspaces\": [\n    \"pariatur labore\",\n    \"amet et aute\"\n  ]\n}"}],"_postman_id":"ce199991-a098-4872-91e2-537d9d61ab4a"},{"name":"Unarchive Auditlog","id":"809a1367-0807-45af-a53e-3fe9d24c4350","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//auditlogs/:id/unarchive","urlObject":{"path":["auditlogs",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"e281058d-b49f-480c-94d8-49c31587335a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"99e8fd58-7c41-421c-b26c-fcdcbd8cb552","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//auditlogs/:id/unarchive","host":["/"],"path":["auditlogs",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"ea et enim commodo in\",\n  \"action\": \"Excepteur dolore consectetur\",\n  \"description\": \"sunt\",\n  \"before\": {},\n  \"after\": {},\n  \"ip_address\": {},\n  \"created_on\": \"1946-03-30T06:25:20.747Z\",\n  \"created_by\": \"aliquip\",\n  \"organization\": {\n    \"name\": \"quis culpa la\",\n    \"slug\": \"ut Lorem irure Excepteur sint\",\n    \"logo\": \"officia sint tempor aliqua\",\n    \"color\": \"officia fugiat culpa\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"commodo elit id\",\n    \"ad_spend_tracker_url\": \"non\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"labore qui magna\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit Duis ipsum minim\",\n    \"updated_on\": \"1982-03-16T10:50:25.814Z\",\n    \"updated_by\": \"nulla officia proident veniam\",\n    \"created_on\": \"1961-08-08T10:01:57.757Z\",\n    \"created_by\": \"mollit nostrud do ut\",\n    \"archived\": true,\n    \"archived_on\": \"2007-10-19T23:23:14.515Z\",\n    \"archived_by\": \"dolor ullamco dolore ex\"\n  },\n  \"workspaces\": [\n    \"pariatur labore\",\n    \"amet et aute\"\n  ]\n}"}],"_postman_id":"809a1367-0807-45af-a53e-3fe9d24c4350"},{"name":"Delete Auditlog","id":"9197ef79-891f-4f63-8c22-785d40dcb728","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//auditlogs/:id/delete","urlObject":{"path":["auditlogs",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"70e311da-c700-414f-9eb4-a3eec9647703","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4a3be66d-42f3-42a4-88d5-cd48c1e43b71","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//auditlogs/:id/delete","host":["/"],"path":["auditlogs",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"ea et enim commodo in\",\n  \"action\": \"Excepteur dolore consectetur\",\n  \"description\": \"sunt\",\n  \"before\": {},\n  \"after\": {},\n  \"ip_address\": {},\n  \"created_on\": \"1946-03-30T06:25:20.747Z\",\n  \"created_by\": \"aliquip\",\n  \"organization\": {\n    \"name\": \"quis culpa la\",\n    \"slug\": \"ut Lorem irure Excepteur sint\",\n    \"logo\": \"officia sint tempor aliqua\",\n    \"color\": \"officia fugiat culpa\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"commodo elit id\",\n    \"ad_spend_tracker_url\": \"non\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"labore qui magna\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit Duis ipsum minim\",\n    \"updated_on\": \"1982-03-16T10:50:25.814Z\",\n    \"updated_by\": \"nulla officia proident veniam\",\n    \"created_on\": \"1961-08-08T10:01:57.757Z\",\n    \"created_by\": \"mollit nostrud do ut\",\n    \"archived\": true,\n    \"archived_on\": \"2007-10-19T23:23:14.515Z\",\n    \"archived_by\": \"dolor ullamco dolore ex\"\n  },\n  \"workspaces\": [\n    \"pariatur labore\",\n    \"amet et aute\"\n  ]\n}"}],"_postman_id":"9197ef79-891f-4f63-8c22-785d40dcb728"}],"id":"fc6aa14e-4a5b-47b1-add4-c63fd170d9e1","description":"<p>Audit logs provide a history of all events that occur within the Platform. These are useful for auditing changes, updates, deletions and more.</p>\n","_postman_id":"fc6aa14e-4a5b-47b1-add4-c63fd170d9e1"},{"name":"Brandkits","item":[{"name":"Find All Brandkits","id":"4fc01410-4b40-44d4-a82d-005feabe025a","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//brandkits?archived=<boolean>","urlObject":{"path":["brandkits"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"286809a5-b7ec-432b-be23-bbdec8b31585","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//brandkits?archived=<boolean>","host":["/"],"path":["brandkits"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"ad occaecat\",\n    \"description\": \"eiu\",\n    \"updated_on\": \"1945-11-02T06:49:37.638Z\",\n    \"updated_by\": \"officia proident reprehenderit ad deserunt\",\n    \"created_on\": \"1943-12-20T12:42:25.865Z\",\n    \"created_by\": \"in culpa Excepteur\",\n    \"archived\": true,\n    \"archived_on\": \"1956-04-07T21:04:44.456Z\",\n    \"archived_by\": \"magna commodo nulla\",\n    \"organization\": {\n      \"name\": \"amet id magna est consectetur\",\n      \"slug\": \"irure Duis in amet do\",\n      \"logo\": \"quis aute\",\n      \"color\": \"cupidatat in ullamco deserunt\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"in irure et commodo\",\n      \"ad_spend_tracker_url\": \"ut in Lorem\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"ullamco elit\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"enim ut\",\n      \"updated_on\": \"2007-05-16T06:16:39.829Z\",\n      \"updated_by\": \"nisi minim aliquip non\",\n      \"created_on\": \"1961-03-13T08:29:56.689Z\",\n      \"created_by\": \"consequat elit repre\",\n      \"archived\": true,\n      \"archived_on\": \"1986-07-04T12:17:18.557Z\",\n      \"archived_by\": \"dolor proident exercitation\"\n    },\n    \"workspaces\": [\n      \"deserunt aliquip magna laboris\",\n      \"officia magna voluptate\"\n    ]\n  },\n  {\n    \"name\": \"eu\",\n    \"description\": \"\",\n    \"updated_on\": \"1963-12-13T20:48:39.035Z\",\n    \"updated_by\": \"aliqua\",\n    \"created_on\": \"1987-07-12T22:58:50.634Z\",\n    \"created_by\": \"eiusmod\",\n    \"archived\": true,\n    \"archived_on\": \"1950-06-13T05:47:05.605Z\",\n    \"archived_by\": \"irure consectetur\",\n    \"organization\": {\n      \"name\": \"eiusmod ut\",\n      \"slug\": \"nulla labore laborum eu\",\n      \"logo\": \"sit veniam nisi\",\n      \"color\": \"sed tempor exercitation dolor\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"nostrud est ex\",\n      \"ad_spend_tracker_url\": \"amet nostrud\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"adipisicing dolore labore dolor ut\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"exercitation in ut dolore laboris\",\n      \"updated_on\": \"1977-01-20T16:54:26.070Z\",\n      \"updated_by\": \"eiusmod qui dolor fugiat\",\n      \"created_on\": \"1966-08-14T15:00:15.013Z\",\n      \"created_by\": \"nulla veniam commodo\",\n      \"archived\": true,\n      \"archived_on\": \"1943-09-10T03:56:41.918Z\",\n      \"archived_by\": \"incididunt proident\"\n    },\n    \"workspaces\": [\n      \"adipisicing ut ex p\",\n      \"nostrud magna dolore commodo laboru\"\n    ]\n  }\n]"}],"_postman_id":"4fc01410-4b40-44d4-a82d-005feabe025a"},{"name":"Create Brandkit","id":"a7a1f873-2b90-47b4-b859-1dae40f93138","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//brandkits","urlObject":{"path":["brandkits"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"11b29b00-fd7e-4eef-9ae0-d3d6422c5074","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//brandkits"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"adipisicing sit pariatur magna\",\n  \"description\": \"ut consectetur\",\n  \"updated_on\": \"2004-05-02T11:32:08.504Z\",\n  \"updated_by\": \"consectetur veniam\",\n  \"created_on\": \"1960-08-23T01:04:01.538Z\",\n  \"created_by\": \"fugiat aute\",\n  \"archived\": false,\n  \"archived_on\": \"2018-12-09T19:22:54.581Z\",\n  \"archived_by\": \"dolore in esse\",\n  \"organization\": {\n    \"name\": \"in id deserunt culpa of\",\n    \"slug\": \"aliquip nisi\",\n    \"logo\": \"exercitation commodo aliqua\",\n    \"color\": \"ex consectetur anim culpa\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"cillum consequat\",\n    \"ad_spend_tracker_url\": \"magna ali\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"id est\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"pariatur qui nulla eu\",\n    \"updated_on\": \"2008-07-09T21:45:09.972Z\",\n    \"updated_by\": \"minim sit do\",\n    \"created_on\": \"1980-04-23T19:59:04.809Z\",\n    \"created_by\": \"quis officia\",\n    \"archived\": false,\n    \"archived_on\": \"1971-04-12T07:04:16.244Z\",\n    \"archived_by\": \"labori\"\n  },\n  \"workspaces\": [\n    \"proident nulla\",\n    \"eu veniam\"\n  ]\n}"}],"_postman_id":"a7a1f873-2b90-47b4-b859-1dae40f93138"},{"name":"Count Brandkits","id":"eb80dc09-b506-470f-b112-b92da56f45e3","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//brandkits/count?archived=<boolean>","urlObject":{"path":["brandkits","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"3dc1a29c-2477-4735-bb11-ee1bb8fd3293","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//brandkits/count?archived=<boolean>","host":["/"],"path":["brandkits","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"eb80dc09-b506-470f-b112-b92da56f45e3"},{"name":"Search Brandkits","id":"a7d31dbe-03dd-4e1e-827a-a8d8325a50e2","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//brandkits/search","urlObject":{"path":["brandkits","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"5f6650be-f4aa-4991-9477-10d44c03d202","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//brandkits/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"ad occaecat\",\n    \"description\": \"eiu\",\n    \"updated_on\": \"1945-11-02T06:49:37.638Z\",\n    \"updated_by\": \"officia proident reprehenderit ad deserunt\",\n    \"created_on\": \"1943-12-20T12:42:25.865Z\",\n    \"created_by\": \"in culpa Excepteur\",\n    \"archived\": true,\n    \"archived_on\": \"1956-04-07T21:04:44.456Z\",\n    \"archived_by\": \"magna commodo nulla\",\n    \"organization\": {\n      \"name\": \"amet id magna est consectetur\",\n      \"slug\": \"irure Duis in amet do\",\n      \"logo\": \"quis aute\",\n      \"color\": \"cupidatat in ullamco deserunt\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"in irure et commodo\",\n      \"ad_spend_tracker_url\": \"ut in Lorem\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"ullamco elit\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"enim ut\",\n      \"updated_on\": \"2007-05-16T06:16:39.829Z\",\n      \"updated_by\": \"nisi minim aliquip non\",\n      \"created_on\": \"1961-03-13T08:29:56.689Z\",\n      \"created_by\": \"consequat elit repre\",\n      \"archived\": true,\n      \"archived_on\": \"1986-07-04T12:17:18.557Z\",\n      \"archived_by\": \"dolor proident exercitation\"\n    },\n    \"workspaces\": [\n      \"deserunt aliquip magna laboris\",\n      \"officia magna voluptate\"\n    ]\n  },\n  {\n    \"name\": \"eu\",\n    \"description\": \"\",\n    \"updated_on\": \"1963-12-13T20:48:39.035Z\",\n    \"updated_by\": \"aliqua\",\n    \"created_on\": \"1987-07-12T22:58:50.634Z\",\n    \"created_by\": \"eiusmod\",\n    \"archived\": true,\n    \"archived_on\": \"1950-06-13T05:47:05.605Z\",\n    \"archived_by\": \"irure consectetur\",\n    \"organization\": {\n      \"name\": \"eiusmod ut\",\n      \"slug\": \"nulla labore laborum eu\",\n      \"logo\": \"sit veniam nisi\",\n      \"color\": \"sed tempor exercitation dolor\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"nostrud est ex\",\n      \"ad_spend_tracker_url\": \"amet nostrud\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"adipisicing dolore labore dolor ut\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"exercitation in ut dolore laboris\",\n      \"updated_on\": \"1977-01-20T16:54:26.070Z\",\n      \"updated_by\": \"eiusmod qui dolor fugiat\",\n      \"created_on\": \"1966-08-14T15:00:15.013Z\",\n      \"created_by\": \"nulla veniam commodo\",\n      \"archived\": true,\n      \"archived_on\": \"1943-09-10T03:56:41.918Z\",\n      \"archived_by\": \"incididunt proident\"\n    },\n    \"workspaces\": [\n      \"adipisicing ut ex p\",\n      \"nostrud magna dolore commodo laboru\"\n    ]\n  }\n]"}],"_postman_id":"a7d31dbe-03dd-4e1e-827a-a8d8325a50e2"},{"name":"Find One Brandkit","id":"127fc2b5-ff97-4364-9c10-40f46c2dfd27","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//brandkits/:id?archived=<boolean>","urlObject":{"path":["brandkits",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"908dc2f0-bc6c-4a72-a563-c45269f4b1dc","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"2f1a5240-e0a2-47f6-ad0c-15411209ba7b","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//brandkits/:id?archived=<boolean>","host":["/"],"path":["brandkits",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"adipisicing sit pariatur magna\",\n  \"description\": \"ut consectetur\",\n  \"updated_on\": \"2004-05-02T11:32:08.504Z\",\n  \"updated_by\": \"consectetur veniam\",\n  \"created_on\": \"1960-08-23T01:04:01.538Z\",\n  \"created_by\": \"fugiat aute\",\n  \"archived\": false,\n  \"archived_on\": \"2018-12-09T19:22:54.581Z\",\n  \"archived_by\": \"dolore in esse\",\n  \"organization\": {\n    \"name\": \"in id deserunt culpa of\",\n    \"slug\": \"aliquip nisi\",\n    \"logo\": \"exercitation commodo aliqua\",\n    \"color\": \"ex consectetur anim culpa\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"cillum consequat\",\n    \"ad_spend_tracker_url\": \"magna ali\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"id est\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"pariatur qui nulla eu\",\n    \"updated_on\": \"2008-07-09T21:45:09.972Z\",\n    \"updated_by\": \"minim sit do\",\n    \"created_on\": \"1980-04-23T19:59:04.809Z\",\n    \"created_by\": \"quis officia\",\n    \"archived\": false,\n    \"archived_on\": \"1971-04-12T07:04:16.244Z\",\n    \"archived_by\": \"labori\"\n  },\n  \"workspaces\": [\n    \"proident nulla\",\n    \"eu veniam\"\n  ]\n}"}],"_postman_id":"127fc2b5-ff97-4364-9c10-40f46c2dfd27"},{"name":"Replace Brandkit","id":"86e4eb7b-1aaf-4077-8514-22725b9d1628","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//brandkits/:id","urlObject":{"path":["brandkits",":id"],"host":["/"],"query":[],"variable":[{"id":"77a7ee21-bfde-4459-a1b3-8001618c927f","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"179bc0a0-b791-40f4-8a16-09a800c26b1f","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":{"raw":"//brandkits/:id","host":["/"],"path":["brandkits",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"adipisicing sit pariatur magna\",\n  \"description\": \"ut consectetur\",\n  \"updated_on\": \"2004-05-02T11:32:08.504Z\",\n  \"updated_by\": \"consectetur veniam\",\n  \"created_on\": \"1960-08-23T01:04:01.538Z\",\n  \"created_by\": \"fugiat aute\",\n  \"archived\": false,\n  \"archived_on\": \"2018-12-09T19:22:54.581Z\",\n  \"archived_by\": \"dolore in esse\",\n  \"organization\": {\n    \"name\": \"in id deserunt culpa of\",\n    \"slug\": \"aliquip nisi\",\n    \"logo\": \"exercitation commodo aliqua\",\n    \"color\": \"ex consectetur anim culpa\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"cillum consequat\",\n    \"ad_spend_tracker_url\": \"magna ali\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"id est\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"pariatur qui nulla eu\",\n    \"updated_on\": \"2008-07-09T21:45:09.972Z\",\n    \"updated_by\": \"minim sit do\",\n    \"created_on\": \"1980-04-23T19:59:04.809Z\",\n    \"created_by\": \"quis officia\",\n    \"archived\": false,\n    \"archived_on\": \"1971-04-12T07:04:16.244Z\",\n    \"archived_by\": \"labori\"\n  },\n  \"workspaces\": [\n    \"proident nulla\",\n    \"eu veniam\"\n  ]\n}"}],"_postman_id":"86e4eb7b-1aaf-4077-8514-22725b9d1628"},{"name":"Update Brandkit","id":"d3ba5fd4-894c-45f7-8eae-90fdc3cbc901","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//brandkits/:id","urlObject":{"path":["brandkits",":id"],"host":["/"],"query":[],"variable":[{"id":"d15163f1-f1a4-4710-83c4-fae56235def2","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"2ff2d891-5c0e-417e-a1c4-11aee338ea7a","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":{"raw":"//brandkits/:id","host":["/"],"path":["brandkits",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"adipisicing sit pariatur magna\",\n  \"description\": \"ut consectetur\",\n  \"updated_on\": \"2004-05-02T11:32:08.504Z\",\n  \"updated_by\": \"consectetur veniam\",\n  \"created_on\": \"1960-08-23T01:04:01.538Z\",\n  \"created_by\": \"fugiat aute\",\n  \"archived\": false,\n  \"archived_on\": \"2018-12-09T19:22:54.581Z\",\n  \"archived_by\": \"dolore in esse\",\n  \"organization\": {\n    \"name\": \"in id deserunt culpa of\",\n    \"slug\": \"aliquip nisi\",\n    \"logo\": \"exercitation commodo aliqua\",\n    \"color\": \"ex consectetur anim culpa\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"cillum consequat\",\n    \"ad_spend_tracker_url\": \"magna ali\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"id est\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"pariatur qui nulla eu\",\n    \"updated_on\": \"2008-07-09T21:45:09.972Z\",\n    \"updated_by\": \"minim sit do\",\n    \"created_on\": \"1980-04-23T19:59:04.809Z\",\n    \"created_by\": \"quis officia\",\n    \"archived\": false,\n    \"archived_on\": \"1971-04-12T07:04:16.244Z\",\n    \"archived_by\": \"labori\"\n  },\n  \"workspaces\": [\n    \"proident nulla\",\n    \"eu veniam\"\n  ]\n}"}],"_postman_id":"d3ba5fd4-894c-45f7-8eae-90fdc3cbc901"},{"name":"Archive Brandkit","id":"ac31eca5-8f30-48f6-886d-b3c636959534","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//brandkits/:id","urlObject":{"path":["brandkits",":id"],"host":["/"],"query":[],"variable":[{"id":"392d9ca7-fc78-45d7-823b-342d7eca425a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"03e8ca7b-9e31-4aee-b56b-7aaf2e8b3f3a","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//brandkits/:id","host":["/"],"path":["brandkits",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"adipisicing sit pariatur magna\",\n  \"description\": \"ut consectetur\",\n  \"updated_on\": \"2004-05-02T11:32:08.504Z\",\n  \"updated_by\": \"consectetur veniam\",\n  \"created_on\": \"1960-08-23T01:04:01.538Z\",\n  \"created_by\": \"fugiat aute\",\n  \"archived\": false,\n  \"archived_on\": \"2018-12-09T19:22:54.581Z\",\n  \"archived_by\": \"dolore in esse\",\n  \"organization\": {\n    \"name\": \"in id deserunt culpa of\",\n    \"slug\": \"aliquip nisi\",\n    \"logo\": \"exercitation commodo aliqua\",\n    \"color\": \"ex consectetur anim culpa\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"cillum consequat\",\n    \"ad_spend_tracker_url\": \"magna ali\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"id est\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"pariatur qui nulla eu\",\n    \"updated_on\": \"2008-07-09T21:45:09.972Z\",\n    \"updated_by\": \"minim sit do\",\n    \"created_on\": \"1980-04-23T19:59:04.809Z\",\n    \"created_by\": \"quis officia\",\n    \"archived\": false,\n    \"archived_on\": \"1971-04-12T07:04:16.244Z\",\n    \"archived_by\": \"labori\"\n  },\n  \"workspaces\": [\n    \"proident nulla\",\n    \"eu veniam\"\n  ]\n}"}],"_postman_id":"ac31eca5-8f30-48f6-886d-b3c636959534"},{"name":"Unarchive Brandkit","id":"ecfe8950-76e0-43ee-a1c1-c70ccb17bc9e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//brandkits/:id/unarchive","urlObject":{"path":["brandkits",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"6c358189-60f7-4411-b278-5da2e8b473a4","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"da25a560-6e33-4fe3-92ea-cd292b8143b5","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//brandkits/:id/unarchive","host":["/"],"path":["brandkits",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"adipisicing sit pariatur magna\",\n  \"description\": \"ut consectetur\",\n  \"updated_on\": \"2004-05-02T11:32:08.504Z\",\n  \"updated_by\": \"consectetur veniam\",\n  \"created_on\": \"1960-08-23T01:04:01.538Z\",\n  \"created_by\": \"fugiat aute\",\n  \"archived\": false,\n  \"archived_on\": \"2018-12-09T19:22:54.581Z\",\n  \"archived_by\": \"dolore in esse\",\n  \"organization\": {\n    \"name\": \"in id deserunt culpa of\",\n    \"slug\": \"aliquip nisi\",\n    \"logo\": \"exercitation commodo aliqua\",\n    \"color\": \"ex consectetur anim culpa\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"cillum consequat\",\n    \"ad_spend_tracker_url\": \"magna ali\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"id est\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"pariatur qui nulla eu\",\n    \"updated_on\": \"2008-07-09T21:45:09.972Z\",\n    \"updated_by\": \"minim sit do\",\n    \"created_on\": \"1980-04-23T19:59:04.809Z\",\n    \"created_by\": \"quis officia\",\n    \"archived\": false,\n    \"archived_on\": \"1971-04-12T07:04:16.244Z\",\n    \"archived_by\": \"labori\"\n  },\n  \"workspaces\": [\n    \"proident nulla\",\n    \"eu veniam\"\n  ]\n}"}],"_postman_id":"ecfe8950-76e0-43ee-a1c1-c70ccb17bc9e"},{"name":"Delete Brandkit","id":"7365d883-a4cf-466a-aec1-0a3001b1ea3b","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//brandkits/:id/delete","urlObject":{"path":["brandkits",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"8e188b1a-f18e-4335-96a0-5698585b6899","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"03559dbe-27f7-4037-a520-dd1a41e82919","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//brandkits/:id/delete","host":["/"],"path":["brandkits",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"adipisicing sit pariatur magna\",\n  \"description\": \"ut consectetur\",\n  \"updated_on\": \"2004-05-02T11:32:08.504Z\",\n  \"updated_by\": \"consectetur veniam\",\n  \"created_on\": \"1960-08-23T01:04:01.538Z\",\n  \"created_by\": \"fugiat aute\",\n  \"archived\": false,\n  \"archived_on\": \"2018-12-09T19:22:54.581Z\",\n  \"archived_by\": \"dolore in esse\",\n  \"organization\": {\n    \"name\": \"in id deserunt culpa of\",\n    \"slug\": \"aliquip nisi\",\n    \"logo\": \"exercitation commodo aliqua\",\n    \"color\": \"ex consectetur anim culpa\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"cillum consequat\",\n    \"ad_spend_tracker_url\": \"magna ali\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"id est\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"pariatur qui nulla eu\",\n    \"updated_on\": \"2008-07-09T21:45:09.972Z\",\n    \"updated_by\": \"minim sit do\",\n    \"created_on\": \"1980-04-23T19:59:04.809Z\",\n    \"created_by\": \"quis officia\",\n    \"archived\": false,\n    \"archived_on\": \"1971-04-12T07:04:16.244Z\",\n    \"archived_by\": \"labori\"\n  },\n  \"workspaces\": [\n    \"proident nulla\",\n    \"eu veniam\"\n  ]\n}"}],"_postman_id":"7365d883-a4cf-466a-aec1-0a3001b1ea3b"}],"id":"27be9f10-ab6a-406a-bdcd-db488d9b0f18","description":"<p>Brandkits allow us to track the basic colors, fonts, and other stylistic elements for a given brand</p>\n","_postman_id":"27be9f10-ab6a-406a-bdcd-db488d9b0f18"},{"name":"Briefs","item":[{"name":"Find All Briefs","id":"450428db-6c2a-465b-afed-dc12c4af1275","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//briefs?archived=<boolean>","urlObject":{"path":["briefs"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"3d47783f-7132-4ee8-8dba-e1948e02698a","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//briefs?archived=<boolean>","host":["/"],"path":["briefs"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"exer\",\n    \"description\": \"nulla aliqua\",\n    \"url\": \"aliqua ea ni\",\n    \"updated_on\": \"1980-07-23T09:01:50.257Z\",\n    \"updated_by\": \"in ullamco\",\n    \"created_on\": \"1945-04-28T16:52:20.840Z\",\n    \"created_by\": \"ex nisi\",\n    \"archived\": true,\n    \"archived_on\": \"1955-03-20T11:00:08.451Z\",\n    \"archived_by\": \"officia eu minim Excepteur\",\n    \"organization\": {\n      \"name\": \"reprehenderit aut\",\n      \"slug\": \"non Excepteur ea officia\",\n      \"logo\": \"proident eiusmod minim laborum\",\n      \"color\": \"dolor\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"laborum magna voluptate\",\n      \"ad_spend_tracker_url\": \"culpa\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"enim Ut ut ea\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"in nisi\",\n      \"updated_on\": \"1987-08-07T13:43:21.552Z\",\n      \"updated_by\": \"tempor esse\",\n      \"created_on\": \"1994-07-06T11:40:25.806Z\",\n      \"created_by\": \"officia deserunt in\",\n      \"archived\": true,\n      \"archived_on\": \"2011-05-04T00:29:40.115Z\",\n      \"archived_by\": \"in Lorem mollit sint\"\n    },\n    \"workspaces\": [\n      \"in\",\n      \"qui sed Excepteur in\"\n    ]\n  },\n  {\n    \"name\": \"dolore\",\n    \"description\": \"exercitation ullamco reprehenderit in\",\n    \"url\": \"non nostrud aliquip et\",\n    \"updated_on\": \"2018-08-07T18:09:11.032Z\",\n    \"updated_by\": \"ea culpa\",\n    \"created_on\": \"1966-10-03T12:40:04.536Z\",\n    \"created_by\": \"incididunt sint nostrud\",\n    \"archived\": true,\n    \"archived_on\": \"1966-05-20T06:56:12.308Z\",\n    \"archived_by\": \"minim consectetur\",\n    \"organization\": {\n      \"name\": \"aliquip exerc\",\n      \"slug\": \"officia dolor aliqua\",\n      \"logo\": \"laborum id ad\",\n      \"color\": \"in fugiat Ut\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"in Duis sed sint\",\n      \"ad_spend_tracker_url\": \"nisi id in\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"culpa ipsum esse fugiat\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"dolor in ut\",\n      \"updated_on\": \"2009-05-13T22:31:39.214Z\",\n      \"updated_by\": \"nulla proident pariatur eiusmod\",\n      \"created_on\": \"1989-01-25T13:47:16.576Z\",\n      \"created_by\": \"in pariatur mollit enim\",\n      \"archived\": true,\n      \"archived_on\": \"1968-01-11T11:06:00.908Z\",\n      \"archived_by\": \"Excepteur adipisicing sed in\"\n    },\n    \"workspaces\": [\n      \"velit in nulla Lorem\",\n      \"nostrud Ut sint\"\n    ]\n  }\n]"}],"_postman_id":"450428db-6c2a-465b-afed-dc12c4af1275"},{"name":"Create Brief","id":"a4abc368-a697-40de-bf5c-116121ed847e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//briefs","urlObject":{"path":["briefs"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"2ea24dd7-a93e-4832-b992-51840933785a","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//briefs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"a4abc368-a697-40de-bf5c-116121ed847e"},{"name":"Count Briefs","id":"8226816c-7a7f-44fe-b010-276dc4b3aa1b","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//briefs/count?archived=<boolean>","urlObject":{"path":["briefs","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"ff993db1-b4bd-4368-bcd1-01b950d06bba","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//briefs/count?archived=<boolean>","host":["/"],"path":["briefs","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"8226816c-7a7f-44fe-b010-276dc4b3aa1b"},{"name":"Search Briefs","id":"a159b98a-3517-48d9-9e24-3164623e87e4","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//briefs/search","urlObject":{"path":["briefs","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"dbfffe93-6aa1-4dba-932f-68a5bbf835da","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//briefs/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"exer\",\n    \"description\": \"nulla aliqua\",\n    \"url\": \"aliqua ea ni\",\n    \"updated_on\": \"1980-07-23T09:01:50.257Z\",\n    \"updated_by\": \"in ullamco\",\n    \"created_on\": \"1945-04-28T16:52:20.840Z\",\n    \"created_by\": \"ex nisi\",\n    \"archived\": true,\n    \"archived_on\": \"1955-03-20T11:00:08.451Z\",\n    \"archived_by\": \"officia eu minim Excepteur\",\n    \"organization\": {\n      \"name\": \"reprehenderit aut\",\n      \"slug\": \"non Excepteur ea officia\",\n      \"logo\": \"proident eiusmod minim laborum\",\n      \"color\": \"dolor\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"laborum magna voluptate\",\n      \"ad_spend_tracker_url\": \"culpa\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"enim Ut ut ea\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"in nisi\",\n      \"updated_on\": \"1987-08-07T13:43:21.552Z\",\n      \"updated_by\": \"tempor esse\",\n      \"created_on\": \"1994-07-06T11:40:25.806Z\",\n      \"created_by\": \"officia deserunt in\",\n      \"archived\": true,\n      \"archived_on\": \"2011-05-04T00:29:40.115Z\",\n      \"archived_by\": \"in Lorem mollit sint\"\n    },\n    \"workspaces\": [\n      \"in\",\n      \"qui sed Excepteur in\"\n    ]\n  },\n  {\n    \"name\": \"dolore\",\n    \"description\": \"exercitation ullamco reprehenderit in\",\n    \"url\": \"non nostrud aliquip et\",\n    \"updated_on\": \"2018-08-07T18:09:11.032Z\",\n    \"updated_by\": \"ea culpa\",\n    \"created_on\": \"1966-10-03T12:40:04.536Z\",\n    \"created_by\": \"incididunt sint nostrud\",\n    \"archived\": true,\n    \"archived_on\": \"1966-05-20T06:56:12.308Z\",\n    \"archived_by\": \"minim consectetur\",\n    \"organization\": {\n      \"name\": \"aliquip exerc\",\n      \"slug\": \"officia dolor aliqua\",\n      \"logo\": \"laborum id ad\",\n      \"color\": \"in fugiat Ut\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"in Duis sed sint\",\n      \"ad_spend_tracker_url\": \"nisi id in\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"culpa ipsum esse fugiat\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"dolor in ut\",\n      \"updated_on\": \"2009-05-13T22:31:39.214Z\",\n      \"updated_by\": \"nulla proident pariatur eiusmod\",\n      \"created_on\": \"1989-01-25T13:47:16.576Z\",\n      \"created_by\": \"in pariatur mollit enim\",\n      \"archived\": true,\n      \"archived_on\": \"1968-01-11T11:06:00.908Z\",\n      \"archived_by\": \"Excepteur adipisicing sed in\"\n    },\n    \"workspaces\": [\n      \"velit in nulla Lorem\",\n      \"nostrud Ut sint\"\n    ]\n  }\n]"}],"_postman_id":"a159b98a-3517-48d9-9e24-3164623e87e4"},{"name":"Find One Brief","id":"f9d003e1-a0ec-4efa-869f-924cb30aecfa","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//briefs/:id?archived=<boolean>","urlObject":{"path":["briefs",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"caa14e2f-bb09-43a4-a40d-eaf1aa33288a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"dde79f58-f74b-4d83-9012-fa217e9d7be9","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//briefs/:id?archived=<boolean>","host":["/"],"path":["briefs",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"f9d003e1-a0ec-4efa-869f-924cb30aecfa"},{"name":"Replace Brief","id":"a0fd63e4-d769-4023-99d1-d03c6ef0a17b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//briefs/:id","urlObject":{"path":["briefs",":id"],"host":["/"],"query":[],"variable":[{"id":"de307db4-4a26-45a8-86bf-dcb48f069939","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"41206443-926b-4a52-9cf8-e8386d74b844","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//briefs/:id","host":["/"],"path":["briefs",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"a0fd63e4-d769-4023-99d1-d03c6ef0a17b"},{"name":"Update Brief","id":"dcb06166-3794-48c0-b8d6-8af79c8329b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//briefs/:id","urlObject":{"path":["briefs",":id"],"host":["/"],"query":[],"variable":[{"id":"bce231e1-d248-4ffc-ac9a-731c541f5c47","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"806f378a-4fc7-4b78-8ea0-e199f8f6ddf1","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//briefs/:id","host":["/"],"path":["briefs",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"dcb06166-3794-48c0-b8d6-8af79c8329b0"},{"name":"Archive Brief","id":"7a85fc20-b9a0-4b8b-b4dd-8f1ed83f7310","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//briefs/:id","urlObject":{"path":["briefs",":id"],"host":["/"],"query":[],"variable":[{"id":"3dd8084a-abd7-40b3-a672-052699789fab","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"46d8c0e4-216f-4904-b5b6-1ad94a8aa25c","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//briefs/:id","host":["/"],"path":["briefs",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"7a85fc20-b9a0-4b8b-b4dd-8f1ed83f7310"},{"name":"Unarchive Brief","id":"f58233b2-f99b-4206-92db-199a1527abdf","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//briefs/:id/unarchive","urlObject":{"path":["briefs",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"89d7e2a4-f803-4db8-9213-f60f83f7a0d6","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"82845680-5da1-4a3a-b79b-30aea52bb400","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//briefs/:id/unarchive","host":["/"],"path":["briefs",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"f58233b2-f99b-4206-92db-199a1527abdf"},{"name":"Delete Brief","id":"4287a87a-a627-46b6-94f4-5cbbc7076c0a","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//briefs/:id/delete","urlObject":{"path":["briefs",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"8d160b90-e348-4222-9292-fd7c83fcc5c3","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"6ff36c63-d7b7-4b30-96f1-bf75bf8a48d6","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//briefs/:id/delete","host":["/"],"path":["briefs",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"4287a87a-a627-46b6-94f4-5cbbc7076c0a"}],"id":"a940cb93-2646-4b2e-84eb-3fd0f6daf9e3","description":"<p>Briefs or otherwise known as creative briefs, help guide the overall advertising direction.</p>\n","_postman_id":"a940cb93-2646-4b2e-84eb-3fd0f6daf9e3"},{"name":"Calendars","item":[{"name":"Find All Calendars","id":"529d98d2-b8c1-4ac7-9ed5-b47c10e2edf1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//calendars?archived=<boolean>","urlObject":{"path":["calendars"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"47edd7a7-6f29-41af-bb20-cf376a9fe503","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//calendars?archived=<boolean>","host":["/"],"path":["calendars"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"exer\",\n    \"description\": \"nulla aliqua\",\n    \"url\": \"aliqua ea ni\",\n    \"updated_on\": \"1980-07-23T09:01:50.257Z\",\n    \"updated_by\": \"in ullamco\",\n    \"created_on\": \"1945-04-28T16:52:20.840Z\",\n    \"created_by\": \"ex nisi\",\n    \"archived\": true,\n    \"archived_on\": \"1955-03-20T11:00:08.451Z\",\n    \"archived_by\": \"officia eu minim Excepteur\",\n    \"organization\": {\n      \"name\": \"reprehenderit aut\",\n      \"slug\": \"non Excepteur ea officia\",\n      \"logo\": \"proident eiusmod minim laborum\",\n      \"color\": \"dolor\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"laborum magna voluptate\",\n      \"ad_spend_tracker_url\": \"culpa\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"enim Ut ut ea\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"in nisi\",\n      \"updated_on\": \"1987-08-07T13:43:21.552Z\",\n      \"updated_by\": \"tempor esse\",\n      \"created_on\": \"1994-07-06T11:40:25.806Z\",\n      \"created_by\": \"officia deserunt in\",\n      \"archived\": true,\n      \"archived_on\": \"2011-05-04T00:29:40.115Z\",\n      \"archived_by\": \"in Lorem mollit sint\"\n    },\n    \"workspaces\": [\n      \"in\",\n      \"qui sed Excepteur in\"\n    ]\n  },\n  {\n    \"name\": \"dolore\",\n    \"description\": \"exercitation ullamco reprehenderit in\",\n    \"url\": \"non nostrud aliquip et\",\n    \"updated_on\": \"2018-08-07T18:09:11.032Z\",\n    \"updated_by\": \"ea culpa\",\n    \"created_on\": \"1966-10-03T12:40:04.536Z\",\n    \"created_by\": \"incididunt sint nostrud\",\n    \"archived\": true,\n    \"archived_on\": \"1966-05-20T06:56:12.308Z\",\n    \"archived_by\": \"minim consectetur\",\n    \"organization\": {\n      \"name\": \"aliquip exerc\",\n      \"slug\": \"officia dolor aliqua\",\n      \"logo\": \"laborum id ad\",\n      \"color\": \"in fugiat Ut\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"in Duis sed sint\",\n      \"ad_spend_tracker_url\": \"nisi id in\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"culpa ipsum esse fugiat\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"dolor in ut\",\n      \"updated_on\": \"2009-05-13T22:31:39.214Z\",\n      \"updated_by\": \"nulla proident pariatur eiusmod\",\n      \"created_on\": \"1989-01-25T13:47:16.576Z\",\n      \"created_by\": \"in pariatur mollit enim\",\n      \"archived\": true,\n      \"archived_on\": \"1968-01-11T11:06:00.908Z\",\n      \"archived_by\": \"Excepteur adipisicing sed in\"\n    },\n    \"workspaces\": [\n      \"velit in nulla Lorem\",\n      \"nostrud Ut sint\"\n    ]\n  }\n]"}],"_postman_id":"529d98d2-b8c1-4ac7-9ed5-b47c10e2edf1"},{"name":"Create Calendar","id":"a0e5019a-c614-4950-878e-c2fd899043a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//calendars","urlObject":{"path":["calendars"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"4e0aa9d0-e3ef-49a3-971c-7893e648615b","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//calendars"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"a0e5019a-c614-4950-878e-c2fd899043a2"},{"name":"Count Calendars","id":"7a34b620-0c34-4ed1-9396-d762fa74aa64","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//calendars/count?archived=<boolean>","urlObject":{"path":["calendars","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"d63b74e9-6577-4f79-abcd-838844f7c5fa","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//calendars/count?archived=<boolean>","host":["/"],"path":["calendars","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"7a34b620-0c34-4ed1-9396-d762fa74aa64"},{"name":"Search Calendars","id":"8fcdb92a-c94f-48b2-8381-493201b18239","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//calendars/search","urlObject":{"path":["calendars","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"9ca4a1ce-f30a-4ce0-b093-c8016d4daff6","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//calendars/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"exer\",\n    \"description\": \"nulla aliqua\",\n    \"url\": \"aliqua ea ni\",\n    \"updated_on\": \"1980-07-23T09:01:50.257Z\",\n    \"updated_by\": \"in ullamco\",\n    \"created_on\": \"1945-04-28T16:52:20.840Z\",\n    \"created_by\": \"ex nisi\",\n    \"archived\": true,\n    \"archived_on\": \"1955-03-20T11:00:08.451Z\",\n    \"archived_by\": \"officia eu minim Excepteur\",\n    \"organization\": {\n      \"name\": \"reprehenderit aut\",\n      \"slug\": \"non Excepteur ea officia\",\n      \"logo\": \"proident eiusmod minim laborum\",\n      \"color\": \"dolor\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"laborum magna voluptate\",\n      \"ad_spend_tracker_url\": \"culpa\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"enim Ut ut ea\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"in nisi\",\n      \"updated_on\": \"1987-08-07T13:43:21.552Z\",\n      \"updated_by\": \"tempor esse\",\n      \"created_on\": \"1994-07-06T11:40:25.806Z\",\n      \"created_by\": \"officia deserunt in\",\n      \"archived\": true,\n      \"archived_on\": \"2011-05-04T00:29:40.115Z\",\n      \"archived_by\": \"in Lorem mollit sint\"\n    },\n    \"workspaces\": [\n      \"in\",\n      \"qui sed Excepteur in\"\n    ]\n  },\n  {\n    \"name\": \"dolore\",\n    \"description\": \"exercitation ullamco reprehenderit in\",\n    \"url\": \"non nostrud aliquip et\",\n    \"updated_on\": \"2018-08-07T18:09:11.032Z\",\n    \"updated_by\": \"ea culpa\",\n    \"created_on\": \"1966-10-03T12:40:04.536Z\",\n    \"created_by\": \"incididunt sint nostrud\",\n    \"archived\": true,\n    \"archived_on\": \"1966-05-20T06:56:12.308Z\",\n    \"archived_by\": \"minim consectetur\",\n    \"organization\": {\n      \"name\": \"aliquip exerc\",\n      \"slug\": \"officia dolor aliqua\",\n      \"logo\": \"laborum id ad\",\n      \"color\": \"in fugiat Ut\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"in Duis sed sint\",\n      \"ad_spend_tracker_url\": \"nisi id in\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"culpa ipsum esse fugiat\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"dolor in ut\",\n      \"updated_on\": \"2009-05-13T22:31:39.214Z\",\n      \"updated_by\": \"nulla proident pariatur eiusmod\",\n      \"created_on\": \"1989-01-25T13:47:16.576Z\",\n      \"created_by\": \"in pariatur mollit enim\",\n      \"archived\": true,\n      \"archived_on\": \"1968-01-11T11:06:00.908Z\",\n      \"archived_by\": \"Excepteur adipisicing sed in\"\n    },\n    \"workspaces\": [\n      \"velit in nulla Lorem\",\n      \"nostrud Ut sint\"\n    ]\n  }\n]"}],"_postman_id":"8fcdb92a-c94f-48b2-8381-493201b18239"},{"name":"Find One Calendar","id":"11312e76-fb9c-40db-9ae2-496b4ea7fe36","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//calendars/:id?archived=<boolean>","urlObject":{"path":["calendars",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"748de8c8-07c9-4aaf-889b-cbf585192fe1","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"63fcb5e3-102b-40f6-86bc-e0ba8593558c","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//calendars/:id?archived=<boolean>","host":["/"],"path":["calendars",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"11312e76-fb9c-40db-9ae2-496b4ea7fe36"},{"name":"Replace Calendar","id":"17ff5d30-277f-4250-abdf-ad1af3241ac1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//calendars/:id","urlObject":{"path":["calendars",":id"],"host":["/"],"query":[],"variable":[{"id":"0072c876-c2ff-40da-85fb-fddf30c4ef1c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"6e852cdd-48e3-4c67-a016-f764c3b72576","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//calendars/:id","host":["/"],"path":["calendars",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"17ff5d30-277f-4250-abdf-ad1af3241ac1"},{"name":"Update Calendar","id":"375b4a95-4022-46e0-b3e4-061b9bbe7491","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//calendars/:id","urlObject":{"path":["calendars",":id"],"host":["/"],"query":[],"variable":[{"id":"c2cc024b-1005-43cf-afbf-9f881ce1c74e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ab85d4e1-27ee-4eb1-a228-1fbde7945c46","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//calendars/:id","host":["/"],"path":["calendars",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"375b4a95-4022-46e0-b3e4-061b9bbe7491"},{"name":"Archive Calendar","id":"6bacb4fc-9196-4326-83fb-1ec16cc2d4c0","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//calendars/:id","urlObject":{"path":["calendars",":id"],"host":["/"],"query":[],"variable":[{"id":"7b19ea8b-1d58-464a-8f41-aa9fe95c2b5c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"c9665182-f75c-4766-885e-0412335b8004","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//calendars/:id","host":["/"],"path":["calendars",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"6bacb4fc-9196-4326-83fb-1ec16cc2d4c0"},{"name":"Unarchive Calendar","id":"4d31b0e6-5d41-4017-8e75-7f1a475b2192","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//calendars/:id/unarchive","urlObject":{"path":["calendars",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"aa92a7d3-fa79-4078-8069-6a6ff3f6ab5a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"3b491590-73b5-496f-a9f4-aab3116ca82f","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//calendars/:id/unarchive","host":["/"],"path":["calendars",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"4d31b0e6-5d41-4017-8e75-7f1a475b2192"},{"name":"Delete Calendar","id":"3c4f1f2f-88b7-4417-a0e2-9fbb297f7e35","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//calendars/:id/delete","urlObject":{"path":["calendars",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"5ec896d0-4b6c-4c36-a411-b3f6a2a1118a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"e45bcdfa-4056-4aab-84e0-5c5589e74c9a","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//calendars/:id/delete","host":["/"],"path":["calendars",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"eiusmod reprehenderit minim non\",\n  \"description\": \"in deserunt adipisicing\",\n  \"url\": \"ull\",\n  \"updated_on\": \"2008-01-31T01:39:30.601Z\",\n  \"updated_by\": \"ex ipsum occaecat\",\n  \"created_on\": \"2003-03-26T15:37:14.670Z\",\n  \"created_by\": \"reprehenderit ut sed\",\n  \"archived\": false,\n  \"archived_on\": \"1957-03-04T11:11:02.356Z\",\n  \"archived_by\": \"lab\",\n  \"organization\": {\n    \"name\": \"Lorem Excepteur eu esse irure\",\n    \"slug\": \"deserunt enim voluptate irure\",\n    \"logo\": \"nostrud mollit\",\n    \"color\": \"dolor nisi\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"est\",\n    \"ad_spend_tracker_url\": \"exercitation irure consectetur amet\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit anim do\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolor Duis aliqua\",\n    \"updated_on\": \"1990-12-11T08:57:39.324Z\",\n    \"updated_by\": \"enim ut sed\",\n    \"created_on\": \"1989-02-07T08:43:44.592Z\",\n    \"created_by\": \"proident minim\",\n    \"archived\": true,\n    \"archived_on\": \"1993-04-09T11:59:17.824Z\",\n    \"archived_by\": \"id in pariatur Ut\"\n  },\n  \"workspaces\": [\n    \"reprehenderit nostrud Ut\",\n    \"do esse ullamc\"\n  ]\n}"}],"_postman_id":"3c4f1f2f-88b7-4417-a0e2-9fbb297f7e35"}],"id":"f64ff87a-7860-4c20-954e-4724c8be496c","description":"<p>Calendars allow you to keep track of the key dates that revolve around your advertising campaigns. This endpoint allow you to create new calendars &amp; update existing ones. </p>\n","_postman_id":"f64ff87a-7860-4c20-954e-4724c8be496c"},{"name":"Campaigns","item":[{"name":"Find All Campaigns","id":"13682157-18c7-4ff6-a25a-8451f5ab484e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//campaigns?archived=<boolean>","urlObject":{"path":["campaigns"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"6f76ba0c-225d-4729-8c63-77c3a02474d3","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//campaigns?archived=<boolean>","host":["/"],"path":["campaigns"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"esse \",\n    \"slug\": \"dolore do et irure\",\n    \"status\": \"dolor Duis non\",\n    \"description\": \"elit\",\n    \"type\": \"id pariatur d\",\n    \"estimated_start\": \"1960-11-11T19:05:26.951Z\",\n    \"actual_start\": \"1954-11-06T19:44:01.116Z\",\n    \"estimated_end\": \"1978-01-26T14:36:47.439Z\",\n    \"actual_end\": \"1965-09-27T15:58:36.831Z\",\n    \"estimated_spend\": 46624161.14068425,\n    \"actual_spend\": -62379208.99710674,\n    \"updated_on\": \"1973-12-20T17:38:36.454Z\",\n    \"updated_by\": \"adipisicing veniam ipsum commodo\",\n    \"created_on\": \"2008-04-02T01:40:09.809Z\",\n    \"created_by\": \"sunt dolore\",\n    \"archived\": false,\n    \"archived_on\": \"1991-04-22T06:39:33.179Z\",\n    \"archived_by\": \"est magna\",\n    \"organization\": {\n      \"name\": \"occaecat enim magna sed commodo\",\n      \"slug\": \"eiusmod\",\n      \"logo\": \"aliqua ad\",\n      \"color\": \"do deserunt quis\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"tempor eu ea et\",\n      \"ad_spend_tracker_url\": \"elit ad sit voluptate\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"dolor ex sint dolor\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"dolor\",\n      \"updated_on\": \"1972-03-23T19:18:57.669Z\",\n      \"updated_by\": \"nisi mollit ut\",\n      \"created_on\": \"1961-01-06T16:55:11.697Z\",\n      \"created_by\": \"dolor cillum irure offici\",\n      \"archived\": false,\n      \"archived_on\": \"1989-06-03T19:55:32.040Z\",\n      \"archived_by\": \"sit in nisi mollit\"\n    },\n    \"workspaces\": [\n      \"dolor\",\n      \"dolor\"\n    ]\n  },\n  {\n    \"name\": \"exercitation veniam et\",\n    \"slug\": \"dolor sunt in anim\",\n    \"status\": \"sed dolor\",\n    \"description\": \"sit quis sed exercitation\",\n    \"type\": \"pariatur culpa qui nisi\",\n    \"estimated_start\": \"1958-11-19T14:37:30.058Z\",\n    \"actual_start\": \"1977-03-20T02:44:05.032Z\",\n    \"estimated_end\": \"2002-09-05T19:34:48.762Z\",\n    \"actual_end\": \"2019-08-16T10:05:14.177Z\",\n    \"estimated_spend\": -7739981.1857364625,\n    \"actual_spend\": 50352446.19198847,\n    \"updated_on\": \"1960-04-11T19:28:49.586Z\",\n    \"updated_by\": \"laborum ad\",\n    \"created_on\": \"1982-12-31T03:04:47.378Z\",\n    \"created_by\": \"ut sunt ea adipisicing ut\",\n    \"archived\": false,\n    \"archived_on\": \"1997-02-12T05:37:53.191Z\",\n    \"archived_by\": \"adipisicing reprehenderit voluptate\",\n    \"organization\": {\n      \"name\": \"voluptate labore dolor ut\",\n      \"slug\": \"ut reprehenderit es\",\n      \"logo\": \"Excepteur aliquip veniam cillum ipsum\",\n      \"color\": \"in id\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"aliquip magna eu proident\",\n      \"ad_spend_tracker_url\": \"dolore Lorem\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"sit et Lorem\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"irure\",\n      \"updated_on\": \"1958-10-11T08:52:44.182Z\",\n      \"updated_by\": \"veniam eiusmod\",\n      \"created_on\": \"2013-05-25T01:30:48.743Z\",\n      \"created_by\": \"dolor\",\n      \"archived\": false,\n      \"archived_on\": \"1997-12-30T07:21:07.782Z\",\n      \"archived_by\": \"pariatur ex cillum\"\n    },\n    \"workspaces\": [\n      \"officia\",\n      \"Ut\"\n    ]\n  }\n]"}],"_postman_id":"13682157-18c7-4ff6-a25a-8451f5ab484e"},{"name":"Create Campaign","id":"668929ee-acdb-4b12-8a00-6a375d26206c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<string>\",\n  \"estimated_start\": \"<dateTime>\",\n  \"actual_start\": \"<dateTime>\",\n  \"estimated_end\": \"<dateTime>\",\n  \"actual_end\": \"<dateTime>\",\n  \"estimated_spend\": \"<number>\",\n  \"actual_spend\": \"<number>\"\n}","options":{"raw":{"language":"json"}}},"url":"//campaigns","urlObject":{"path":["campaigns"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"39982980-db5a-4ace-9dba-0b9d09545b71","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<string>\",\n  \"estimated_start\": \"<dateTime>\",\n  \"actual_start\": \"<dateTime>\",\n  \"estimated_end\": \"<dateTime>\",\n  \"actual_end\": \"<dateTime>\",\n  \"estimated_spend\": \"<number>\",\n  \"actual_spend\": \"<number>\"\n}","options":{"raw":{"language":"json"}}},"url":"//campaigns"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"dolor\",\n  \"slug\": \"ipsum pariatur\",\n  \"status\": \"id do exercitation dolor ullamco\",\n  \"description\": \"exercitation elit\",\n  \"type\": \"in cupidatat ea in mollit\",\n  \"estimated_start\": \"1952-05-12T10:29:17.822Z\",\n  \"actual_start\": \"1953-04-17T05:26:34.263Z\",\n  \"estimated_end\": \"1960-10-24T01:34:10.868Z\",\n  \"actual_end\": \"1994-08-13T02:20:58.038Z\",\n  \"estimated_spend\": 94195184.69677195,\n  \"actual_spend\": -39657920.78023984,\n  \"updated_on\": \"1996-08-15T18:22:01.308Z\",\n  \"updated_by\": \"elit mollit\",\n  \"created_on\": \"1976-12-11T19:57:21.398Z\",\n  \"created_by\": \"in dolore in tempor\",\n  \"archived\": true,\n  \"archived_on\": \"1974-01-16T00:54:18.076Z\",\n  \"archived_by\": \"reprehenderit sunt cupidatat\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"pariatur sed et\",\n    \"logo\": \"deserunt nisi\",\n    \"color\": \"ad ea\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"id non\",\n    \"ad_spend_tracker_url\": \"cillum ea\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"sint consequat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"exercitation\",\n    \"updated_on\": \"2021-04-25T19:48:02.535Z\",\n    \"updated_by\": \"mollit Ut\",\n    \"created_on\": \"1956-08-18T21:02:52.294Z\",\n    \"created_by\": \"eu\",\n    \"archived\": true,\n    \"archived_on\": \"1988-12-21T18:34:46.409Z\",\n    \"archived_by\": \"consectetur ad elit\"\n  },\n  \"workspaces\": [\n    \"est in\",\n    \"in\"\n  ]\n}"}],"_postman_id":"668929ee-acdb-4b12-8a00-6a375d26206c"},{"name":"Count Campaigns","id":"bb38978e-bf8c-421a-bb86-adbfeaf78d4c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//campaigns/count?archived=<boolean>","urlObject":{"path":["campaigns","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"d5b042ee-69cb-442d-9441-f44b91f53624","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//campaigns/count?archived=<boolean>","host":["/"],"path":["campaigns","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"bb38978e-bf8c-421a-bb86-adbfeaf78d4c"},{"name":"Search Campaigns","id":"460e9571-b009-4eaf-9d5f-dbfc255adc9e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//campaigns/search","urlObject":{"path":["campaigns","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"71075a54-cdb4-44b0-8b92-c1b6883b666a","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//campaigns/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"esse \",\n    \"slug\": \"dolore do et irure\",\n    \"status\": \"dolor Duis non\",\n    \"description\": \"elit\",\n    \"type\": \"id pariatur d\",\n    \"estimated_start\": \"1960-11-11T19:05:26.951Z\",\n    \"actual_start\": \"1954-11-06T19:44:01.116Z\",\n    \"estimated_end\": \"1978-01-26T14:36:47.439Z\",\n    \"actual_end\": \"1965-09-27T15:58:36.831Z\",\n    \"estimated_spend\": 46624161.14068425,\n    \"actual_spend\": -62379208.99710674,\n    \"updated_on\": \"1973-12-20T17:38:36.454Z\",\n    \"updated_by\": \"adipisicing veniam ipsum commodo\",\n    \"created_on\": \"2008-04-02T01:40:09.809Z\",\n    \"created_by\": \"sunt dolore\",\n    \"archived\": false,\n    \"archived_on\": \"1991-04-22T06:39:33.179Z\",\n    \"archived_by\": \"est magna\",\n    \"organization\": {\n      \"name\": \"occaecat enim magna sed commodo\",\n      \"slug\": \"eiusmod\",\n      \"logo\": \"aliqua ad\",\n      \"color\": \"do deserunt quis\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"tempor eu ea et\",\n      \"ad_spend_tracker_url\": \"elit ad sit voluptate\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"dolor ex sint dolor\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"dolor\",\n      \"updated_on\": \"1972-03-23T19:18:57.669Z\",\n      \"updated_by\": \"nisi mollit ut\",\n      \"created_on\": \"1961-01-06T16:55:11.697Z\",\n      \"created_by\": \"dolor cillum irure offici\",\n      \"archived\": false,\n      \"archived_on\": \"1989-06-03T19:55:32.040Z\",\n      \"archived_by\": \"sit in nisi mollit\"\n    },\n    \"workspaces\": [\n      \"dolor\",\n      \"dolor\"\n    ]\n  },\n  {\n    \"name\": \"exercitation veniam et\",\n    \"slug\": \"dolor sunt in anim\",\n    \"status\": \"sed dolor\",\n    \"description\": \"sit quis sed exercitation\",\n    \"type\": \"pariatur culpa qui nisi\",\n    \"estimated_start\": \"1958-11-19T14:37:30.058Z\",\n    \"actual_start\": \"1977-03-20T02:44:05.032Z\",\n    \"estimated_end\": \"2002-09-05T19:34:48.762Z\",\n    \"actual_end\": \"2019-08-16T10:05:14.177Z\",\n    \"estimated_spend\": -7739981.1857364625,\n    \"actual_spend\": 50352446.19198847,\n    \"updated_on\": \"1960-04-11T19:28:49.586Z\",\n    \"updated_by\": \"laborum ad\",\n    \"created_on\": \"1982-12-31T03:04:47.378Z\",\n    \"created_by\": \"ut sunt ea adipisicing ut\",\n    \"archived\": false,\n    \"archived_on\": \"1997-02-12T05:37:53.191Z\",\n    \"archived_by\": \"adipisicing reprehenderit voluptate\",\n    \"organization\": {\n      \"name\": \"voluptate labore dolor ut\",\n      \"slug\": \"ut reprehenderit es\",\n      \"logo\": \"Excepteur aliquip veniam cillum ipsum\",\n      \"color\": \"in id\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"aliquip magna eu proident\",\n      \"ad_spend_tracker_url\": \"dolore Lorem\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"sit et Lorem\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"irure\",\n      \"updated_on\": \"1958-10-11T08:52:44.182Z\",\n      \"updated_by\": \"veniam eiusmod\",\n      \"created_on\": \"2013-05-25T01:30:48.743Z\",\n      \"created_by\": \"dolor\",\n      \"archived\": false,\n      \"archived_on\": \"1997-12-30T07:21:07.782Z\",\n      \"archived_by\": \"pariatur ex cillum\"\n    },\n    \"workspaces\": [\n      \"officia\",\n      \"Ut\"\n    ]\n  }\n]"}],"_postman_id":"460e9571-b009-4eaf-9d5f-dbfc255adc9e"},{"name":"Find One Campaign","id":"48a96ed1-76ed-4f2e-b6b3-5e49e7db9021","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//campaigns/:id?archived=<boolean>","urlObject":{"path":["campaigns",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"48484f48-8874-49b0-b182-0c0307deb6c1","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"2c298b37-8f3c-40d4-ac98-bca6eb4250af","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//campaigns/:id?archived=<boolean>","host":["/"],"path":["campaigns",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"dolor\",\n  \"slug\": \"ipsum pariatur\",\n  \"status\": \"id do exercitation dolor ullamco\",\n  \"description\": \"exercitation elit\",\n  \"type\": \"in cupidatat ea in mollit\",\n  \"estimated_start\": \"1952-05-12T10:29:17.822Z\",\n  \"actual_start\": \"1953-04-17T05:26:34.263Z\",\n  \"estimated_end\": \"1960-10-24T01:34:10.868Z\",\n  \"actual_end\": \"1994-08-13T02:20:58.038Z\",\n  \"estimated_spend\": 94195184.69677195,\n  \"actual_spend\": -39657920.78023984,\n  \"updated_on\": \"1996-08-15T18:22:01.308Z\",\n  \"updated_by\": \"elit mollit\",\n  \"created_on\": \"1976-12-11T19:57:21.398Z\",\n  \"created_by\": \"in dolore in tempor\",\n  \"archived\": true,\n  \"archived_on\": \"1974-01-16T00:54:18.076Z\",\n  \"archived_by\": \"reprehenderit sunt cupidatat\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"pariatur sed et\",\n    \"logo\": \"deserunt nisi\",\n    \"color\": \"ad ea\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"id non\",\n    \"ad_spend_tracker_url\": \"cillum ea\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"sint consequat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"exercitation\",\n    \"updated_on\": \"2021-04-25T19:48:02.535Z\",\n    \"updated_by\": \"mollit Ut\",\n    \"created_on\": \"1956-08-18T21:02:52.294Z\",\n    \"created_by\": \"eu\",\n    \"archived\": true,\n    \"archived_on\": \"1988-12-21T18:34:46.409Z\",\n    \"archived_by\": \"consectetur ad elit\"\n  },\n  \"workspaces\": [\n    \"est in\",\n    \"in\"\n  ]\n}"}],"_postman_id":"48a96ed1-76ed-4f2e-b6b3-5e49e7db9021"},{"name":"Replace Campaign","id":"c858a329-fe2d-41d6-b6d0-5a9611a71fc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<string>\",\n  \"estimated_start\": \"<dateTime>\",\n  \"actual_start\": \"<dateTime>\",\n  \"estimated_end\": \"<dateTime>\",\n  \"actual_end\": \"<dateTime>\",\n  \"estimated_spend\": \"<number>\",\n  \"actual_spend\": \"<number>\"\n}","options":{"raw":{"language":"json"}}},"url":"//campaigns/:id","urlObject":{"path":["campaigns",":id"],"host":["/"],"query":[],"variable":[{"id":"3339003f-3446-483d-81b7-c59a7cdcd205","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ba026873-e341-4be0-871e-e1eed9232d51","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<string>\",\n  \"estimated_start\": \"<dateTime>\",\n  \"actual_start\": \"<dateTime>\",\n  \"estimated_end\": \"<dateTime>\",\n  \"actual_end\": \"<dateTime>\",\n  \"estimated_spend\": \"<number>\",\n  \"actual_spend\": \"<number>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//campaigns/:id","host":["/"],"path":["campaigns",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"dolor\",\n  \"slug\": \"ipsum pariatur\",\n  \"status\": \"id do exercitation dolor ullamco\",\n  \"description\": \"exercitation elit\",\n  \"type\": \"in cupidatat ea in mollit\",\n  \"estimated_start\": \"1952-05-12T10:29:17.822Z\",\n  \"actual_start\": \"1953-04-17T05:26:34.263Z\",\n  \"estimated_end\": \"1960-10-24T01:34:10.868Z\",\n  \"actual_end\": \"1994-08-13T02:20:58.038Z\",\n  \"estimated_spend\": 94195184.69677195,\n  \"actual_spend\": -39657920.78023984,\n  \"updated_on\": \"1996-08-15T18:22:01.308Z\",\n  \"updated_by\": \"elit mollit\",\n  \"created_on\": \"1976-12-11T19:57:21.398Z\",\n  \"created_by\": \"in dolore in tempor\",\n  \"archived\": true,\n  \"archived_on\": \"1974-01-16T00:54:18.076Z\",\n  \"archived_by\": \"reprehenderit sunt cupidatat\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"pariatur sed et\",\n    \"logo\": \"deserunt nisi\",\n    \"color\": \"ad ea\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"id non\",\n    \"ad_spend_tracker_url\": \"cillum ea\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"sint consequat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"exercitation\",\n    \"updated_on\": \"2021-04-25T19:48:02.535Z\",\n    \"updated_by\": \"mollit Ut\",\n    \"created_on\": \"1956-08-18T21:02:52.294Z\",\n    \"created_by\": \"eu\",\n    \"archived\": true,\n    \"archived_on\": \"1988-12-21T18:34:46.409Z\",\n    \"archived_by\": \"consectetur ad elit\"\n  },\n  \"workspaces\": [\n    \"est in\",\n    \"in\"\n  ]\n}"}],"_postman_id":"c858a329-fe2d-41d6-b6d0-5a9611a71fc7"},{"name":"Update Campaign","id":"492149d7-7633-4e62-94b4-df6fb95ffe78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<string>\",\n  \"estimated_start\": \"<dateTime>\",\n  \"actual_start\": \"<dateTime>\",\n  \"estimated_end\": \"<dateTime>\",\n  \"actual_end\": \"<dateTime>\",\n  \"estimated_spend\": \"<number>\",\n  \"actual_spend\": \"<number>\"\n}","options":{"raw":{"language":"json"}}},"url":"//campaigns/:id","urlObject":{"path":["campaigns",":id"],"host":["/"],"query":[],"variable":[{"id":"740817e4-ce2b-47de-896a-c0f677fef1eb","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"02ea6e95-4f7f-4b51-a696-25e1ed8e5769","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"status\": \"<string>\",\n  \"description\": \"<string>\",\n  \"type\": \"<string>\",\n  \"estimated_start\": \"<dateTime>\",\n  \"actual_start\": \"<dateTime>\",\n  \"estimated_end\": \"<dateTime>\",\n  \"actual_end\": \"<dateTime>\",\n  \"estimated_spend\": \"<number>\",\n  \"actual_spend\": \"<number>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//campaigns/:id","host":["/"],"path":["campaigns",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"dolor\",\n  \"slug\": \"ipsum pariatur\",\n  \"status\": \"id do exercitation dolor ullamco\",\n  \"description\": \"exercitation elit\",\n  \"type\": \"in cupidatat ea in mollit\",\n  \"estimated_start\": \"1952-05-12T10:29:17.822Z\",\n  \"actual_start\": \"1953-04-17T05:26:34.263Z\",\n  \"estimated_end\": \"1960-10-24T01:34:10.868Z\",\n  \"actual_end\": \"1994-08-13T02:20:58.038Z\",\n  \"estimated_spend\": 94195184.69677195,\n  \"actual_spend\": -39657920.78023984,\n  \"updated_on\": \"1996-08-15T18:22:01.308Z\",\n  \"updated_by\": \"elit mollit\",\n  \"created_on\": \"1976-12-11T19:57:21.398Z\",\n  \"created_by\": \"in dolore in tempor\",\n  \"archived\": true,\n  \"archived_on\": \"1974-01-16T00:54:18.076Z\",\n  \"archived_by\": \"reprehenderit sunt cupidatat\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"pariatur sed et\",\n    \"logo\": \"deserunt nisi\",\n    \"color\": \"ad ea\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"id non\",\n    \"ad_spend_tracker_url\": \"cillum ea\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"sint consequat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"exercitation\",\n    \"updated_on\": \"2021-04-25T19:48:02.535Z\",\n    \"updated_by\": \"mollit Ut\",\n    \"created_on\": \"1956-08-18T21:02:52.294Z\",\n    \"created_by\": \"eu\",\n    \"archived\": true,\n    \"archived_on\": \"1988-12-21T18:34:46.409Z\",\n    \"archived_by\": \"consectetur ad elit\"\n  },\n  \"workspaces\": [\n    \"est in\",\n    \"in\"\n  ]\n}"}],"_postman_id":"492149d7-7633-4e62-94b4-df6fb95ffe78"},{"name":"Archive Campaign","id":"6038fb9a-99c4-4fd9-a28b-98fc630a3936","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//campaigns/:id","urlObject":{"path":["campaigns",":id"],"host":["/"],"query":[],"variable":[{"id":"f0488743-473f-4da6-b1ae-f8ec2b207210","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d11bc0a4-d4d0-4dbf-b426-eb045ea439bc","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//campaigns/:id","host":["/"],"path":["campaigns",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"dolor\",\n  \"slug\": \"ipsum pariatur\",\n  \"status\": \"id do exercitation dolor ullamco\",\n  \"description\": \"exercitation elit\",\n  \"type\": \"in cupidatat ea in mollit\",\n  \"estimated_start\": \"1952-05-12T10:29:17.822Z\",\n  \"actual_start\": \"1953-04-17T05:26:34.263Z\",\n  \"estimated_end\": \"1960-10-24T01:34:10.868Z\",\n  \"actual_end\": \"1994-08-13T02:20:58.038Z\",\n  \"estimated_spend\": 94195184.69677195,\n  \"actual_spend\": -39657920.78023984,\n  \"updated_on\": \"1996-08-15T18:22:01.308Z\",\n  \"updated_by\": \"elit mollit\",\n  \"created_on\": \"1976-12-11T19:57:21.398Z\",\n  \"created_by\": \"in dolore in tempor\",\n  \"archived\": true,\n  \"archived_on\": \"1974-01-16T00:54:18.076Z\",\n  \"archived_by\": \"reprehenderit sunt cupidatat\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"pariatur sed et\",\n    \"logo\": \"deserunt nisi\",\n    \"color\": \"ad ea\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"id non\",\n    \"ad_spend_tracker_url\": \"cillum ea\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"sint consequat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"exercitation\",\n    \"updated_on\": \"2021-04-25T19:48:02.535Z\",\n    \"updated_by\": \"mollit Ut\",\n    \"created_on\": \"1956-08-18T21:02:52.294Z\",\n    \"created_by\": \"eu\",\n    \"archived\": true,\n    \"archived_on\": \"1988-12-21T18:34:46.409Z\",\n    \"archived_by\": \"consectetur ad elit\"\n  },\n  \"workspaces\": [\n    \"est in\",\n    \"in\"\n  ]\n}"}],"_postman_id":"6038fb9a-99c4-4fd9-a28b-98fc630a3936"},{"name":"Unarchive Campaign","id":"2f2426d8-ce6a-4f19-9fe8-65996f1c6077","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//campaigns/:id/unarchive","urlObject":{"path":["campaigns",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"992bcac5-4228-422e-9da5-d58712727292","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"1a172a74-e971-4333-880b-4561d080441b","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//campaigns/:id/unarchive","host":["/"],"path":["campaigns",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"dolor\",\n  \"slug\": \"ipsum pariatur\",\n  \"status\": \"id do exercitation dolor ullamco\",\n  \"description\": \"exercitation elit\",\n  \"type\": \"in cupidatat ea in mollit\",\n  \"estimated_start\": \"1952-05-12T10:29:17.822Z\",\n  \"actual_start\": \"1953-04-17T05:26:34.263Z\",\n  \"estimated_end\": \"1960-10-24T01:34:10.868Z\",\n  \"actual_end\": \"1994-08-13T02:20:58.038Z\",\n  \"estimated_spend\": 94195184.69677195,\n  \"actual_spend\": -39657920.78023984,\n  \"updated_on\": \"1996-08-15T18:22:01.308Z\",\n  \"updated_by\": \"elit mollit\",\n  \"created_on\": \"1976-12-11T19:57:21.398Z\",\n  \"created_by\": \"in dolore in tempor\",\n  \"archived\": true,\n  \"archived_on\": \"1974-01-16T00:54:18.076Z\",\n  \"archived_by\": \"reprehenderit sunt cupidatat\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"pariatur sed et\",\n    \"logo\": \"deserunt nisi\",\n    \"color\": \"ad ea\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"id non\",\n    \"ad_spend_tracker_url\": \"cillum ea\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"sint consequat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"exercitation\",\n    \"updated_on\": \"2021-04-25T19:48:02.535Z\",\n    \"updated_by\": \"mollit Ut\",\n    \"created_on\": \"1956-08-18T21:02:52.294Z\",\n    \"created_by\": \"eu\",\n    \"archived\": true,\n    \"archived_on\": \"1988-12-21T18:34:46.409Z\",\n    \"archived_by\": \"consectetur ad elit\"\n  },\n  \"workspaces\": [\n    \"est in\",\n    \"in\"\n  ]\n}"}],"_postman_id":"2f2426d8-ce6a-4f19-9fe8-65996f1c6077"},{"name":"Delete Campaign","id":"bd1ede08-5a1e-4392-834f-27e59bc32c76","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//campaigns/:id/delete","urlObject":{"path":["campaigns",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"7c076876-d151-4afb-94d6-81b84503d00f","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4f3f7220-dcdf-412f-a0ca-f7bf0fac1185","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//campaigns/:id/delete","host":["/"],"path":["campaigns",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"dolor\",\n  \"slug\": \"ipsum pariatur\",\n  \"status\": \"id do exercitation dolor ullamco\",\n  \"description\": \"exercitation elit\",\n  \"type\": \"in cupidatat ea in mollit\",\n  \"estimated_start\": \"1952-05-12T10:29:17.822Z\",\n  \"actual_start\": \"1953-04-17T05:26:34.263Z\",\n  \"estimated_end\": \"1960-10-24T01:34:10.868Z\",\n  \"actual_end\": \"1994-08-13T02:20:58.038Z\",\n  \"estimated_spend\": 94195184.69677195,\n  \"actual_spend\": -39657920.78023984,\n  \"updated_on\": \"1996-08-15T18:22:01.308Z\",\n  \"updated_by\": \"elit mollit\",\n  \"created_on\": \"1976-12-11T19:57:21.398Z\",\n  \"created_by\": \"in dolore in tempor\",\n  \"archived\": true,\n  \"archived_on\": \"1974-01-16T00:54:18.076Z\",\n  \"archived_by\": \"reprehenderit sunt cupidatat\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"pariatur sed et\",\n    \"logo\": \"deserunt nisi\",\n    \"color\": \"ad ea\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"id non\",\n    \"ad_spend_tracker_url\": \"cillum ea\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"sint consequat\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"exercitation\",\n    \"updated_on\": \"2021-04-25T19:48:02.535Z\",\n    \"updated_by\": \"mollit Ut\",\n    \"created_on\": \"1956-08-18T21:02:52.294Z\",\n    \"created_by\": \"eu\",\n    \"archived\": true,\n    \"archived_on\": \"1988-12-21T18:34:46.409Z\",\n    \"archived_by\": \"consectetur ad elit\"\n  },\n  \"workspaces\": [\n    \"est in\",\n    \"in\"\n  ]\n}"}],"_postman_id":"bd1ede08-5a1e-4392-834f-27e59bc32c76"}],"id":"36dfda77-57b2-434a-9f35-b124e1f54ee9","description":"<p>Campaigns are a way to track a particular advertising effort over a given period of time. Each campaign has a unique identifier and can provide a way to view how different campaigns perform over time. </p>\n","_postman_id":"36dfda77-57b2-434a-9f35-b124e1f54ee9"},{"name":"Comments","item":[{"name":"Find All Comments","id":"da625086-40e8-4129-a574-fcc4c56257cd","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//comments?archived=<boolean>","urlObject":{"path":["comments"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"188b6e6b-1064-44fa-8c29-629e58bbca35","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//comments?archived=<boolean>","host":["/"],"path":["comments"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"body\": \"sunt magna dolor sed\",\n    \"edited\": true,\n    \"updated_on\": \"1987-05-07T14:17:06.548Z\",\n    \"updated_by\": \"in sed\",\n    \"created_on\": \"1963-11-13T15:41:17.929Z\",\n    \"created_by\": \"ex\",\n    \"archived\": true,\n    \"archived_on\": \"1961-08-14T14:38:40.281Z\",\n    \"archived_by\": \"do ex quis ut reprehenderit\",\n    \"organization\": {\n      \"name\": \"irure sed ipsum\",\n      \"slug\": \"nisi cillum\",\n      \"logo\": \"in\",\n      \"color\": \"occaecat fugiat sint\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"consequat dolor\",\n      \"ad_spend_tracker_url\": \"ea Ut commodo\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"in\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"dolor mollit\",\n      \"updated_on\": \"1952-04-16T07:38:23.051Z\",\n      \"updated_by\": \"laborum\",\n      \"created_on\": \"1992-03-25T05:10:36.601Z\",\n      \"created_by\": \"adipisicing aliqua qui\",\n      \"archived\": false,\n      \"archived_on\": \"2005-11-28T15:34:47.884Z\",\n      \"archived_by\": \"magna aliquip commodo labore\"\n    },\n    \"workspaces\": [\n      \"nostrud sunt\",\n      \"ut qui\"\n    ]\n  },\n  {\n    \"body\": \"nisi in est Excepteur ut\",\n    \"edited\": true,\n    \"updated_on\": \"2004-03-31T19:35:21.775Z\",\n    \"updated_by\": \"pariatur\",\n    \"created_on\": \"2012-03-20T14:26:55.302Z\",\n    \"created_by\": \"fugiat sint\",\n    \"archived\": false,\n    \"archived_on\": \"1954-04-15T03:31:10.295Z\",\n    \"archived_by\": \"adipisicing sint\",\n    \"organization\": {\n      \"name\": \"esse magna laboris\",\n      \"slug\": \"dolore et deserunt minim\",\n      \"logo\": \"est\",\n      \"color\": \"ullamco\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"aliqua sunt\",\n      \"ad_spend_tracker_url\": \"officia commodo ut eiusmod exercitation\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"nostrud \",\n      \"teams_enabled\": false,\n      \"teams_url\": \"in a\",\n      \"updated_on\": \"1993-12-31T23:34:07.955Z\",\n      \"updated_by\": \"enim aliqua eu dolor\",\n      \"created_on\": \"2000-12-05T11:52:47.361Z\",\n      \"created_by\": \"repre\",\n      \"archived\": true,\n      \"archived_on\": \"1973-05-29T15:18:05.545Z\",\n      \"archived_by\": \"proident sed\"\n    },\n    \"workspaces\": [\n      \"eiusmod et ipsum sit cupidatat\",\n      \"Lor\"\n    ]\n  }\n]"}],"_postman_id":"da625086-40e8-4129-a574-fcc4c56257cd"},{"name":"Create Comment","id":"3c725f53-26b9-4252-8419-944c0d61d670","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"<string>\",\n  \"edited\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//comments","urlObject":{"path":["comments"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"4406593b-4898-4ce4-b5c6-d2ecbcfcb11e","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"<string>\",\n  \"edited\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//comments"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"body\": \"quis est\",\n  \"edited\": true,\n  \"updated_on\": \"1944-11-23T14:32:56.615Z\",\n  \"updated_by\": \"sit eiusmod velit\",\n  \"created_on\": \"2013-02-23T21:09:47.350Z\",\n  \"created_by\": \"officia nisi\",\n  \"archived\": false,\n  \"archived_on\": \"1981-04-28T22:44:17.984Z\",\n  \"archived_by\": \"nostrud sunt nisi\",\n  \"organization\": {\n    \"name\": \"in aliqua voluptate\",\n    \"slug\": \"ipsum\",\n    \"logo\": \"velit eu fugiat\",\n    \"color\": \"Excepteur dolore\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"ex occaecat\",\n    \"ad_spend_tracker_url\": \"sit\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"nulla\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ipsum occaecat\",\n    \"updated_on\": \"1963-12-29T01:34:09.383Z\",\n    \"updated_by\": \"labore sunt mollit\",\n    \"created_on\": \"2015-05-09T23:13:59.089Z\",\n    \"created_by\": \"do laborum qui\",\n    \"archived\": false,\n    \"archived_on\": \"1979-02-07T08:41:47.274Z\",\n    \"archived_by\": \"nulla dolore\"\n  },\n  \"workspaces\": [\n    \"quis esse ut nostrud\",\n    \"Duis culpa irure in enim\"\n  ]\n}"}],"_postman_id":"3c725f53-26b9-4252-8419-944c0d61d670"},{"name":"Count Comments","id":"90a93018-724e-4c89-a4e6-777b4f9184bd","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//comments/count?archived=<boolean>","urlObject":{"path":["comments","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"d0842f23-971b-4d0c-92c5-4212b55fb894","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//comments/count?archived=<boolean>","host":["/"],"path":["comments","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"90a93018-724e-4c89-a4e6-777b4f9184bd"},{"name":"Search Comments","id":"5269f912-17d5-416c-827a-f2b33990d8c7","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//comments/search","urlObject":{"path":["comments","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"47da0493-1782-425e-9482-ff7ff8350893","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//comments/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"body\": \"sunt magna dolor sed\",\n    \"edited\": true,\n    \"updated_on\": \"1987-05-07T14:17:06.548Z\",\n    \"updated_by\": \"in sed\",\n    \"created_on\": \"1963-11-13T15:41:17.929Z\",\n    \"created_by\": \"ex\",\n    \"archived\": true,\n    \"archived_on\": \"1961-08-14T14:38:40.281Z\",\n    \"archived_by\": \"do ex quis ut reprehenderit\",\n    \"organization\": {\n      \"name\": \"irure sed ipsum\",\n      \"slug\": \"nisi cillum\",\n      \"logo\": \"in\",\n      \"color\": \"occaecat fugiat sint\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"consequat dolor\",\n      \"ad_spend_tracker_url\": \"ea Ut commodo\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"in\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"dolor mollit\",\n      \"updated_on\": \"1952-04-16T07:38:23.051Z\",\n      \"updated_by\": \"laborum\",\n      \"created_on\": \"1992-03-25T05:10:36.601Z\",\n      \"created_by\": \"adipisicing aliqua qui\",\n      \"archived\": false,\n      \"archived_on\": \"2005-11-28T15:34:47.884Z\",\n      \"archived_by\": \"magna aliquip commodo labore\"\n    },\n    \"workspaces\": [\n      \"nostrud sunt\",\n      \"ut qui\"\n    ]\n  },\n  {\n    \"body\": \"nisi in est Excepteur ut\",\n    \"edited\": true,\n    \"updated_on\": \"2004-03-31T19:35:21.775Z\",\n    \"updated_by\": \"pariatur\",\n    \"created_on\": \"2012-03-20T14:26:55.302Z\",\n    \"created_by\": \"fugiat sint\",\n    \"archived\": false,\n    \"archived_on\": \"1954-04-15T03:31:10.295Z\",\n    \"archived_by\": \"adipisicing sint\",\n    \"organization\": {\n      \"name\": \"esse magna laboris\",\n      \"slug\": \"dolore et deserunt minim\",\n      \"logo\": \"est\",\n      \"color\": \"ullamco\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"aliqua sunt\",\n      \"ad_spend_tracker_url\": \"officia commodo ut eiusmod exercitation\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"nostrud \",\n      \"teams_enabled\": false,\n      \"teams_url\": \"in a\",\n      \"updated_on\": \"1993-12-31T23:34:07.955Z\",\n      \"updated_by\": \"enim aliqua eu dolor\",\n      \"created_on\": \"2000-12-05T11:52:47.361Z\",\n      \"created_by\": \"repre\",\n      \"archived\": true,\n      \"archived_on\": \"1973-05-29T15:18:05.545Z\",\n      \"archived_by\": \"proident sed\"\n    },\n    \"workspaces\": [\n      \"eiusmod et ipsum sit cupidatat\",\n      \"Lor\"\n    ]\n  }\n]"}],"_postman_id":"5269f912-17d5-416c-827a-f2b33990d8c7"},{"name":"Find One Comment","id":"2a816812-7c0c-4715-8a66-ea73b06bf454","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//comments/:id?archived=<boolean>","urlObject":{"path":["comments",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"d2fc4a9a-d6a9-4cd9-b980-8c3673246263","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"00369071-1563-4d31-9e8e-d8e0a0362876","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//comments/:id?archived=<boolean>","host":["/"],"path":["comments",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"body\": \"quis est\",\n  \"edited\": true,\n  \"updated_on\": \"1944-11-23T14:32:56.615Z\",\n  \"updated_by\": \"sit eiusmod velit\",\n  \"created_on\": \"2013-02-23T21:09:47.350Z\",\n  \"created_by\": \"officia nisi\",\n  \"archived\": false,\n  \"archived_on\": \"1981-04-28T22:44:17.984Z\",\n  \"archived_by\": \"nostrud sunt nisi\",\n  \"organization\": {\n    \"name\": \"in aliqua voluptate\",\n    \"slug\": \"ipsum\",\n    \"logo\": \"velit eu fugiat\",\n    \"color\": \"Excepteur dolore\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"ex occaecat\",\n    \"ad_spend_tracker_url\": \"sit\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"nulla\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ipsum occaecat\",\n    \"updated_on\": \"1963-12-29T01:34:09.383Z\",\n    \"updated_by\": \"labore sunt mollit\",\n    \"created_on\": \"2015-05-09T23:13:59.089Z\",\n    \"created_by\": \"do laborum qui\",\n    \"archived\": false,\n    \"archived_on\": \"1979-02-07T08:41:47.274Z\",\n    \"archived_by\": \"nulla dolore\"\n  },\n  \"workspaces\": [\n    \"quis esse ut nostrud\",\n    \"Duis culpa irure in enim\"\n  ]\n}"}],"_postman_id":"2a816812-7c0c-4715-8a66-ea73b06bf454"},{"name":"Replace Comment","id":"104a7bee-c360-4c44-8f50-eb443facbbfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"<string>\",\n  \"edited\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//comments/:id","urlObject":{"path":["comments",":id"],"host":["/"],"query":[],"variable":[{"id":"e9aa7dc4-0e5a-472b-8332-c2bb3c82a2a4","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a34665da-1d10-496d-a9d1-fa0973ac2fbf","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"<string>\",\n  \"edited\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//comments/:id","host":["/"],"path":["comments",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"body\": \"quis est\",\n  \"edited\": true,\n  \"updated_on\": \"1944-11-23T14:32:56.615Z\",\n  \"updated_by\": \"sit eiusmod velit\",\n  \"created_on\": \"2013-02-23T21:09:47.350Z\",\n  \"created_by\": \"officia nisi\",\n  \"archived\": false,\n  \"archived_on\": \"1981-04-28T22:44:17.984Z\",\n  \"archived_by\": \"nostrud sunt nisi\",\n  \"organization\": {\n    \"name\": \"in aliqua voluptate\",\n    \"slug\": \"ipsum\",\n    \"logo\": \"velit eu fugiat\",\n    \"color\": \"Excepteur dolore\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"ex occaecat\",\n    \"ad_spend_tracker_url\": \"sit\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"nulla\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ipsum occaecat\",\n    \"updated_on\": \"1963-12-29T01:34:09.383Z\",\n    \"updated_by\": \"labore sunt mollit\",\n    \"created_on\": \"2015-05-09T23:13:59.089Z\",\n    \"created_by\": \"do laborum qui\",\n    \"archived\": false,\n    \"archived_on\": \"1979-02-07T08:41:47.274Z\",\n    \"archived_by\": \"nulla dolore\"\n  },\n  \"workspaces\": [\n    \"quis esse ut nostrud\",\n    \"Duis culpa irure in enim\"\n  ]\n}"}],"_postman_id":"104a7bee-c360-4c44-8f50-eb443facbbfb"},{"name":"Update Comment","id":"425d587e-fb34-486d-b2e6-4ee9bd9a11dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"<string>\",\n  \"edited\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//comments/:id","urlObject":{"path":["comments",":id"],"host":["/"],"query":[],"variable":[{"id":"7944c7b3-65bf-4191-984b-a7a9eb52e279","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"f9f378cb-0d14-48e1-8402-2fe360c9e7f1","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"body\": \"<string>\",\n  \"edited\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//comments/:id","host":["/"],"path":["comments",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"body\": \"quis est\",\n  \"edited\": true,\n  \"updated_on\": \"1944-11-23T14:32:56.615Z\",\n  \"updated_by\": \"sit eiusmod velit\",\n  \"created_on\": \"2013-02-23T21:09:47.350Z\",\n  \"created_by\": \"officia nisi\",\n  \"archived\": false,\n  \"archived_on\": \"1981-04-28T22:44:17.984Z\",\n  \"archived_by\": \"nostrud sunt nisi\",\n  \"organization\": {\n    \"name\": \"in aliqua voluptate\",\n    \"slug\": \"ipsum\",\n    \"logo\": \"velit eu fugiat\",\n    \"color\": \"Excepteur dolore\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"ex occaecat\",\n    \"ad_spend_tracker_url\": \"sit\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"nulla\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ipsum occaecat\",\n    \"updated_on\": \"1963-12-29T01:34:09.383Z\",\n    \"updated_by\": \"labore sunt mollit\",\n    \"created_on\": \"2015-05-09T23:13:59.089Z\",\n    \"created_by\": \"do laborum qui\",\n    \"archived\": false,\n    \"archived_on\": \"1979-02-07T08:41:47.274Z\",\n    \"archived_by\": \"nulla dolore\"\n  },\n  \"workspaces\": [\n    \"quis esse ut nostrud\",\n    \"Duis culpa irure in enim\"\n  ]\n}"}],"_postman_id":"425d587e-fb34-486d-b2e6-4ee9bd9a11dc"},{"name":"Archive Comment","id":"4f8c62d8-f3fd-467a-8646-bee707f08a04","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//comments/:id","urlObject":{"path":["comments",":id"],"host":["/"],"query":[],"variable":[{"id":"39e2ab87-4235-430a-84a3-816ef65ef2c5","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"5536588e-b3b2-42e2-a225-e1492dbe28e3","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//comments/:id","host":["/"],"path":["comments",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"body\": \"quis est\",\n  \"edited\": true,\n  \"updated_on\": \"1944-11-23T14:32:56.615Z\",\n  \"updated_by\": \"sit eiusmod velit\",\n  \"created_on\": \"2013-02-23T21:09:47.350Z\",\n  \"created_by\": \"officia nisi\",\n  \"archived\": false,\n  \"archived_on\": \"1981-04-28T22:44:17.984Z\",\n  \"archived_by\": \"nostrud sunt nisi\",\n  \"organization\": {\n    \"name\": \"in aliqua voluptate\",\n    \"slug\": \"ipsum\",\n    \"logo\": \"velit eu fugiat\",\n    \"color\": \"Excepteur dolore\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"ex occaecat\",\n    \"ad_spend_tracker_url\": \"sit\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"nulla\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ipsum occaecat\",\n    \"updated_on\": \"1963-12-29T01:34:09.383Z\",\n    \"updated_by\": \"labore sunt mollit\",\n    \"created_on\": \"2015-05-09T23:13:59.089Z\",\n    \"created_by\": \"do laborum qui\",\n    \"archived\": false,\n    \"archived_on\": \"1979-02-07T08:41:47.274Z\",\n    \"archived_by\": \"nulla dolore\"\n  },\n  \"workspaces\": [\n    \"quis esse ut nostrud\",\n    \"Duis culpa irure in enim\"\n  ]\n}"}],"_postman_id":"4f8c62d8-f3fd-467a-8646-bee707f08a04"},{"name":"Unarchive Comment","id":"4e582f94-2083-476b-adaa-11a408bd6a1e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//comments/:id/unarchive","urlObject":{"path":["comments",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"b42a6485-0bb6-420e-9169-5c0783a16a2a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"16d6e22a-e71a-4c3b-b50a-04a96330988f","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//comments/:id/unarchive","host":["/"],"path":["comments",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"body\": \"quis est\",\n  \"edited\": true,\n  \"updated_on\": \"1944-11-23T14:32:56.615Z\",\n  \"updated_by\": \"sit eiusmod velit\",\n  \"created_on\": \"2013-02-23T21:09:47.350Z\",\n  \"created_by\": \"officia nisi\",\n  \"archived\": false,\n  \"archived_on\": \"1981-04-28T22:44:17.984Z\",\n  \"archived_by\": \"nostrud sunt nisi\",\n  \"organization\": {\n    \"name\": \"in aliqua voluptate\",\n    \"slug\": \"ipsum\",\n    \"logo\": \"velit eu fugiat\",\n    \"color\": \"Excepteur dolore\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"ex occaecat\",\n    \"ad_spend_tracker_url\": \"sit\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"nulla\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ipsum occaecat\",\n    \"updated_on\": \"1963-12-29T01:34:09.383Z\",\n    \"updated_by\": \"labore sunt mollit\",\n    \"created_on\": \"2015-05-09T23:13:59.089Z\",\n    \"created_by\": \"do laborum qui\",\n    \"archived\": false,\n    \"archived_on\": \"1979-02-07T08:41:47.274Z\",\n    \"archived_by\": \"nulla dolore\"\n  },\n  \"workspaces\": [\n    \"quis esse ut nostrud\",\n    \"Duis culpa irure in enim\"\n  ]\n}"}],"_postman_id":"4e582f94-2083-476b-adaa-11a408bd6a1e"},{"name":"Delete Comment","id":"81a1ff86-3d61-4b07-aa24-be5a1babd3a1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//comments/:id/delete","urlObject":{"path":["comments",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"09e8dc4d-17ca-401e-9c1d-297d8579b465","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"18693f18-51a4-4054-82bb-0364b19486ac","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//comments/:id/delete","host":["/"],"path":["comments",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"body\": \"quis est\",\n  \"edited\": true,\n  \"updated_on\": \"1944-11-23T14:32:56.615Z\",\n  \"updated_by\": \"sit eiusmod velit\",\n  \"created_on\": \"2013-02-23T21:09:47.350Z\",\n  \"created_by\": \"officia nisi\",\n  \"archived\": false,\n  \"archived_on\": \"1981-04-28T22:44:17.984Z\",\n  \"archived_by\": \"nostrud sunt nisi\",\n  \"organization\": {\n    \"name\": \"in aliqua voluptate\",\n    \"slug\": \"ipsum\",\n    \"logo\": \"velit eu fugiat\",\n    \"color\": \"Excepteur dolore\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"ex occaecat\",\n    \"ad_spend_tracker_url\": \"sit\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"nulla\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ipsum occaecat\",\n    \"updated_on\": \"1963-12-29T01:34:09.383Z\",\n    \"updated_by\": \"labore sunt mollit\",\n    \"created_on\": \"2015-05-09T23:13:59.089Z\",\n    \"created_by\": \"do laborum qui\",\n    \"archived\": false,\n    \"archived_on\": \"1979-02-07T08:41:47.274Z\",\n    \"archived_by\": \"nulla dolore\"\n  },\n  \"workspaces\": [\n    \"quis esse ut nostrud\",\n    \"Duis culpa irure in enim\"\n  ]\n}"}],"_postman_id":"81a1ff86-3d61-4b07-aa24-be5a1babd3a1"}],"id":"d64435fb-4592-4692-9c44-48349c883459","description":"<p>Comments allow users to collaborate on a given resource by posting comments</p>\n","_postman_id":"d64435fb-4592-4692-9c44-48349c883459"},{"name":"Dashboards","item":[{"name":"Find All Dashboards","id":"dc86cea2-9c46-411a-99b7-cdf60ec729c5","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//dashboards?archived=<boolean>","urlObject":{"path":["dashboards"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"c9815ca6-96f9-4f5a-bcf8-df2aa6ad112e","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//dashboards?archived=<boolean>","host":["/"],"path":["dashboards"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"est laborum\",\n    \"description\": \"tempor enim\",\n    \"visibility\": \"et sit veniam in \",\n    \"url\": \"id deserunt irure quis incididunt\",\n    \"updated_on\": \"1978-12-24T14:53:18.310Z\",\n    \"updated_by\": \"id aliquip\",\n    \"created_on\": \"1974-07-13T08:20:26.492Z\",\n    \"created_by\": \"dolor dolor aute sit\",\n    \"archived\": true,\n    \"archived_on\": \"1965-09-12T10:47:41.267Z\",\n    \"archived_by\": \"dolor dolore\",\n    \"organization\": {\n      \"name\": \"el\",\n      \"slug\": \"qui esse laboris elit minim\",\n      \"logo\": \"nostrud ex cillum\",\n      \"color\": \"Ut culpa esse magna sint\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"officia\",\n      \"ad_spend_tracker_url\": \"aute Duis\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"ea voluptate do\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"et in aliquip ex\",\n      \"updated_on\": \"2001-02-25T20:00:31.948Z\",\n      \"updated_by\": \"sint adipisicing cillum\",\n      \"created_on\": \"2019-01-20T12:23:38.629Z\",\n      \"created_by\": \"ullamco sint eu non sit\",\n      \"archived\": true,\n      \"archived_on\": \"1982-09-27T06:56:16.545Z\",\n      \"archived_by\": \"sunt incididunt esse reprehenderit\"\n    },\n    \"workspaces\": [\n      \"et sint dolore veniam\",\n      \"do ullamco\"\n    ]\n  },\n  {\n    \"name\": \"v\",\n    \"description\": \"sit anim dolore ipsum incididunt\",\n    \"visibility\": \"exercitation\",\n    \"url\": \"nostrud aute tempor\",\n    \"updated_on\": \"2012-07-14T08:52:43.914Z\",\n    \"updated_by\": \"laborum mollit\",\n    \"created_on\": \"2003-11-30T09:16:26.810Z\",\n    \"created_by\": \"irure\",\n    \"archived\": true,\n    \"archived_on\": \"1956-07-17T02:24:29.755Z\",\n    \"archived_by\": \"fugiat magna\",\n    \"organization\": {\n      \"name\": \"dolor eiusmod\",\n      \"slug\": \"do irure elit\",\n      \"logo\": \"dolore laboris dolor ullamco nisi\",\n      \"color\": \"ex quis dolore\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"pariatur\",\n      \"ad_spend_tracker_url\": \"magna nulla\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"reprehenderit tempor\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"do\",\n      \"updated_on\": \"1949-03-30T06:30:49.407Z\",\n      \"updated_by\": \"elit fugiat aliqua\",\n      \"created_on\": \"1954-10-04T10:53:27.969Z\",\n      \"created_by\": \"dolor culpa des\",\n      \"archived\": false,\n      \"archived_on\": \"1997-06-27T13:30:21.694Z\",\n      \"archived_by\": \"nulla co\"\n    },\n    \"workspaces\": [\n      \"proident dolore eu\",\n      \"occaecat in\"\n    ]\n  }\n]"}],"_postman_id":"dc86cea2-9c46-411a-99b7-cdf60ec729c5"},{"name":"Create Dashboard","id":"f7310d83-dc71-45c4-b399-a32fb439fe40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//dashboards","urlObject":{"path":["dashboards"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"271cf170-523a-4e86-804b-d4d9c5fa98fc","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//dashboards"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"est laboris enim nulla non\",\n  \"description\": \"anim aliqua dolor\",\n  \"visibility\": \"aliquip dolore nulla\",\n  \"url\": \"ullamco sit\",\n  \"updated_on\": \"1983-02-03T05:33:09.708Z\",\n  \"updated_by\": \"consequat dolor commodo veniam\",\n  \"created_on\": \"2012-01-10T05:51:24.374Z\",\n  \"created_by\": \"deserunt eu\",\n  \"archived\": true,\n  \"archived_on\": \"2011-07-07T06:16:36.072Z\",\n  \"archived_by\": \"Duis do\",\n  \"organization\": {\n    \"name\": \"ut sunt aliqua\",\n    \"slug\": \"irure qui\",\n    \"logo\": \"eiusmod adipisicing esse proident\",\n    \"color\": \"eu occaecat ad ullamco\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"deserunt Ut commodo\",\n    \"ad_spend_tracker_url\": \"eu Ut labore proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"do sint occaecat\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit\",\n    \"updated_on\": \"1969-03-11T19:10:00.967Z\",\n    \"updated_by\": \"dolore sit nostrud deserun\",\n    \"created_on\": \"1975-11-04T17:45:16.267Z\",\n    \"created_by\": \"pariatur sed velit tempor sint\",\n    \"archived\": false,\n    \"archived_on\": \"2018-07-26T17:23:58.517Z\",\n    \"archived_by\": \"adipisicing dolor\"\n  },\n  \"workspaces\": [\n    \"labore voluptate Lorem ad\",\n    \"ut anim Excepteur\"\n  ]\n}"}],"_postman_id":"f7310d83-dc71-45c4-b399-a32fb439fe40"},{"name":"Count Dashboards","id":"9a94a6e8-76c0-4b04-89d9-61828ac82fd1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//dashboards/count?archived=<boolean>","urlObject":{"path":["dashboards","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"bb5c2c97-5187-4ba1-b4b7-0bd81ce583f4","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//dashboards/count?archived=<boolean>","host":["/"],"path":["dashboards","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"9a94a6e8-76c0-4b04-89d9-61828ac82fd1"},{"name":"Search Dashboards","id":"35c8a0ba-1225-4ad1-9422-b5eecd88059c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//dashboards/search","urlObject":{"path":["dashboards","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"ba04d7c5-ffa3-4d43-9d23-a86e5e47d64c","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//dashboards/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"est laborum\",\n    \"description\": \"tempor enim\",\n    \"visibility\": \"et sit veniam in \",\n    \"url\": \"id deserunt irure quis incididunt\",\n    \"updated_on\": \"1978-12-24T14:53:18.310Z\",\n    \"updated_by\": \"id aliquip\",\n    \"created_on\": \"1974-07-13T08:20:26.492Z\",\n    \"created_by\": \"dolor dolor aute sit\",\n    \"archived\": true,\n    \"archived_on\": \"1965-09-12T10:47:41.267Z\",\n    \"archived_by\": \"dolor dolore\",\n    \"organization\": {\n      \"name\": \"el\",\n      \"slug\": \"qui esse laboris elit minim\",\n      \"logo\": \"nostrud ex cillum\",\n      \"color\": \"Ut culpa esse magna sint\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"officia\",\n      \"ad_spend_tracker_url\": \"aute Duis\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"ea voluptate do\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"et in aliquip ex\",\n      \"updated_on\": \"2001-02-25T20:00:31.948Z\",\n      \"updated_by\": \"sint adipisicing cillum\",\n      \"created_on\": \"2019-01-20T12:23:38.629Z\",\n      \"created_by\": \"ullamco sint eu non sit\",\n      \"archived\": true,\n      \"archived_on\": \"1982-09-27T06:56:16.545Z\",\n      \"archived_by\": \"sunt incididunt esse reprehenderit\"\n    },\n    \"workspaces\": [\n      \"et sint dolore veniam\",\n      \"do ullamco\"\n    ]\n  },\n  {\n    \"name\": \"v\",\n    \"description\": \"sit anim dolore ipsum incididunt\",\n    \"visibility\": \"exercitation\",\n    \"url\": \"nostrud aute tempor\",\n    \"updated_on\": \"2012-07-14T08:52:43.914Z\",\n    \"updated_by\": \"laborum mollit\",\n    \"created_on\": \"2003-11-30T09:16:26.810Z\",\n    \"created_by\": \"irure\",\n    \"archived\": true,\n    \"archived_on\": \"1956-07-17T02:24:29.755Z\",\n    \"archived_by\": \"fugiat magna\",\n    \"organization\": {\n      \"name\": \"dolor eiusmod\",\n      \"slug\": \"do irure elit\",\n      \"logo\": \"dolore laboris dolor ullamco nisi\",\n      \"color\": \"ex quis dolore\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"pariatur\",\n      \"ad_spend_tracker_url\": \"magna nulla\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"reprehenderit tempor\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"do\",\n      \"updated_on\": \"1949-03-30T06:30:49.407Z\",\n      \"updated_by\": \"elit fugiat aliqua\",\n      \"created_on\": \"1954-10-04T10:53:27.969Z\",\n      \"created_by\": \"dolor culpa des\",\n      \"archived\": false,\n      \"archived_on\": \"1997-06-27T13:30:21.694Z\",\n      \"archived_by\": \"nulla co\"\n    },\n    \"workspaces\": [\n      \"proident dolore eu\",\n      \"occaecat in\"\n    ]\n  }\n]"}],"_postman_id":"35c8a0ba-1225-4ad1-9422-b5eecd88059c"},{"name":"Find One Dashboard","id":"d83f28a6-35ed-436b-b833-bc5135cc5536","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//dashboards/:id?archived=<boolean>","urlObject":{"path":["dashboards",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"4de6dcd3-9079-4166-b9dd-7bf1f63845c7","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"aa94e6bc-0980-4cf6-862f-7639a12da712","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//dashboards/:id?archived=<boolean>","host":["/"],"path":["dashboards",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"est laboris enim nulla non\",\n  \"description\": \"anim aliqua dolor\",\n  \"visibility\": \"aliquip dolore nulla\",\n  \"url\": \"ullamco sit\",\n  \"updated_on\": \"1983-02-03T05:33:09.708Z\",\n  \"updated_by\": \"consequat dolor commodo veniam\",\n  \"created_on\": \"2012-01-10T05:51:24.374Z\",\n  \"created_by\": \"deserunt eu\",\n  \"archived\": true,\n  \"archived_on\": \"2011-07-07T06:16:36.072Z\",\n  \"archived_by\": \"Duis do\",\n  \"organization\": {\n    \"name\": \"ut sunt aliqua\",\n    \"slug\": \"irure qui\",\n    \"logo\": \"eiusmod adipisicing esse proident\",\n    \"color\": \"eu occaecat ad ullamco\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"deserunt Ut commodo\",\n    \"ad_spend_tracker_url\": \"eu Ut labore proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"do sint occaecat\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit\",\n    \"updated_on\": \"1969-03-11T19:10:00.967Z\",\n    \"updated_by\": \"dolore sit nostrud deserun\",\n    \"created_on\": \"1975-11-04T17:45:16.267Z\",\n    \"created_by\": \"pariatur sed velit tempor sint\",\n    \"archived\": false,\n    \"archived_on\": \"2018-07-26T17:23:58.517Z\",\n    \"archived_by\": \"adipisicing dolor\"\n  },\n  \"workspaces\": [\n    \"labore voluptate Lorem ad\",\n    \"ut anim Excepteur\"\n  ]\n}"}],"_postman_id":"d83f28a6-35ed-436b-b833-bc5135cc5536"},{"name":"Replace Dashboard","id":"ae8d040b-9ebc-46a4-9ab0-cb16260b9c00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//dashboards/:id","urlObject":{"path":["dashboards",":id"],"host":["/"],"query":[],"variable":[{"id":"28823649-af8b-4db6-bb0a-1afbd7822c7a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"6a14fece-0600-4938-839a-7ce006917a39","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//dashboards/:id","host":["/"],"path":["dashboards",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"est laboris enim nulla non\",\n  \"description\": \"anim aliqua dolor\",\n  \"visibility\": \"aliquip dolore nulla\",\n  \"url\": \"ullamco sit\",\n  \"updated_on\": \"1983-02-03T05:33:09.708Z\",\n  \"updated_by\": \"consequat dolor commodo veniam\",\n  \"created_on\": \"2012-01-10T05:51:24.374Z\",\n  \"created_by\": \"deserunt eu\",\n  \"archived\": true,\n  \"archived_on\": \"2011-07-07T06:16:36.072Z\",\n  \"archived_by\": \"Duis do\",\n  \"organization\": {\n    \"name\": \"ut sunt aliqua\",\n    \"slug\": \"irure qui\",\n    \"logo\": \"eiusmod adipisicing esse proident\",\n    \"color\": \"eu occaecat ad ullamco\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"deserunt Ut commodo\",\n    \"ad_spend_tracker_url\": \"eu Ut labore proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"do sint occaecat\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit\",\n    \"updated_on\": \"1969-03-11T19:10:00.967Z\",\n    \"updated_by\": \"dolore sit nostrud deserun\",\n    \"created_on\": \"1975-11-04T17:45:16.267Z\",\n    \"created_by\": \"pariatur sed velit tempor sint\",\n    \"archived\": false,\n    \"archived_on\": \"2018-07-26T17:23:58.517Z\",\n    \"archived_by\": \"adipisicing dolor\"\n  },\n  \"workspaces\": [\n    \"labore voluptate Lorem ad\",\n    \"ut anim Excepteur\"\n  ]\n}"}],"_postman_id":"ae8d040b-9ebc-46a4-9ab0-cb16260b9c00"},{"name":"Update Dashboard","id":"89906d01-2e3c-4411-acfe-fbadadbdf303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//dashboards/:id","urlObject":{"path":["dashboards",":id"],"host":["/"],"query":[],"variable":[{"id":"9a443b44-1e4b-426f-b39c-2f3269b625bb","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"f3bdc4f8-32a0-4709-968a-181bda7f2eb5","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"visibility\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//dashboards/:id","host":["/"],"path":["dashboards",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"est laboris enim nulla non\",\n  \"description\": \"anim aliqua dolor\",\n  \"visibility\": \"aliquip dolore nulla\",\n  \"url\": \"ullamco sit\",\n  \"updated_on\": \"1983-02-03T05:33:09.708Z\",\n  \"updated_by\": \"consequat dolor commodo veniam\",\n  \"created_on\": \"2012-01-10T05:51:24.374Z\",\n  \"created_by\": \"deserunt eu\",\n  \"archived\": true,\n  \"archived_on\": \"2011-07-07T06:16:36.072Z\",\n  \"archived_by\": \"Duis do\",\n  \"organization\": {\n    \"name\": \"ut sunt aliqua\",\n    \"slug\": \"irure qui\",\n    \"logo\": \"eiusmod adipisicing esse proident\",\n    \"color\": \"eu occaecat ad ullamco\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"deserunt Ut commodo\",\n    \"ad_spend_tracker_url\": \"eu Ut labore proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"do sint occaecat\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit\",\n    \"updated_on\": \"1969-03-11T19:10:00.967Z\",\n    \"updated_by\": \"dolore sit nostrud deserun\",\n    \"created_on\": \"1975-11-04T17:45:16.267Z\",\n    \"created_by\": \"pariatur sed velit tempor sint\",\n    \"archived\": false,\n    \"archived_on\": \"2018-07-26T17:23:58.517Z\",\n    \"archived_by\": \"adipisicing dolor\"\n  },\n  \"workspaces\": [\n    \"labore voluptate Lorem ad\",\n    \"ut anim Excepteur\"\n  ]\n}"}],"_postman_id":"89906d01-2e3c-4411-acfe-fbadadbdf303"},{"name":"Archive Dashboard","id":"dfe56493-9164-4ff5-89f8-458ff9de83f5","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//dashboards/:id","urlObject":{"path":["dashboards",":id"],"host":["/"],"query":[],"variable":[{"id":"36211993-6281-4bfd-b8de-62a4987e7273","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"1465caca-57a3-42bb-b266-49fdbe793af5","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//dashboards/:id","host":["/"],"path":["dashboards",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"est laboris enim nulla non\",\n  \"description\": \"anim aliqua dolor\",\n  \"visibility\": \"aliquip dolore nulla\",\n  \"url\": \"ullamco sit\",\n  \"updated_on\": \"1983-02-03T05:33:09.708Z\",\n  \"updated_by\": \"consequat dolor commodo veniam\",\n  \"created_on\": \"2012-01-10T05:51:24.374Z\",\n  \"created_by\": \"deserunt eu\",\n  \"archived\": true,\n  \"archived_on\": \"2011-07-07T06:16:36.072Z\",\n  \"archived_by\": \"Duis do\",\n  \"organization\": {\n    \"name\": \"ut sunt aliqua\",\n    \"slug\": \"irure qui\",\n    \"logo\": \"eiusmod adipisicing esse proident\",\n    \"color\": \"eu occaecat ad ullamco\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"deserunt Ut commodo\",\n    \"ad_spend_tracker_url\": \"eu Ut labore proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"do sint occaecat\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit\",\n    \"updated_on\": \"1969-03-11T19:10:00.967Z\",\n    \"updated_by\": \"dolore sit nostrud deserun\",\n    \"created_on\": \"1975-11-04T17:45:16.267Z\",\n    \"created_by\": \"pariatur sed velit tempor sint\",\n    \"archived\": false,\n    \"archived_on\": \"2018-07-26T17:23:58.517Z\",\n    \"archived_by\": \"adipisicing dolor\"\n  },\n  \"workspaces\": [\n    \"labore voluptate Lorem ad\",\n    \"ut anim Excepteur\"\n  ]\n}"}],"_postman_id":"dfe56493-9164-4ff5-89f8-458ff9de83f5"},{"name":"Unarchive Dashboard","id":"f6c6dd00-5432-40db-bbe2-bdab34038017","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//dashboards/:id/unarchive","urlObject":{"path":["dashboards",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"d2405312-1d4c-467a-9ba6-e08d2813decd","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"7f8e2f13-1e5a-4ec8-b541-12884aedd873","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//dashboards/:id/unarchive","host":["/"],"path":["dashboards",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"est laboris enim nulla non\",\n  \"description\": \"anim aliqua dolor\",\n  \"visibility\": \"aliquip dolore nulla\",\n  \"url\": \"ullamco sit\",\n  \"updated_on\": \"1983-02-03T05:33:09.708Z\",\n  \"updated_by\": \"consequat dolor commodo veniam\",\n  \"created_on\": \"2012-01-10T05:51:24.374Z\",\n  \"created_by\": \"deserunt eu\",\n  \"archived\": true,\n  \"archived_on\": \"2011-07-07T06:16:36.072Z\",\n  \"archived_by\": \"Duis do\",\n  \"organization\": {\n    \"name\": \"ut sunt aliqua\",\n    \"slug\": \"irure qui\",\n    \"logo\": \"eiusmod adipisicing esse proident\",\n    \"color\": \"eu occaecat ad ullamco\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"deserunt Ut commodo\",\n    \"ad_spend_tracker_url\": \"eu Ut labore proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"do sint occaecat\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit\",\n    \"updated_on\": \"1969-03-11T19:10:00.967Z\",\n    \"updated_by\": \"dolore sit nostrud deserun\",\n    \"created_on\": \"1975-11-04T17:45:16.267Z\",\n    \"created_by\": \"pariatur sed velit tempor sint\",\n    \"archived\": false,\n    \"archived_on\": \"2018-07-26T17:23:58.517Z\",\n    \"archived_by\": \"adipisicing dolor\"\n  },\n  \"workspaces\": [\n    \"labore voluptate Lorem ad\",\n    \"ut anim Excepteur\"\n  ]\n}"}],"_postman_id":"f6c6dd00-5432-40db-bbe2-bdab34038017"},{"name":"Delete Dashboard","id":"8ff96fe0-c935-45f4-afb3-2fe4d4d88d5e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//dashboards/:id/delete","urlObject":{"path":["dashboards",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"f517b2ba-b199-41d8-bd8f-4e70bd8a7b99","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"9a0f9252-cbce-4b2b-830a-58500e918213","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//dashboards/:id/delete","host":["/"],"path":["dashboards",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"est laboris enim nulla non\",\n  \"description\": \"anim aliqua dolor\",\n  \"visibility\": \"aliquip dolore nulla\",\n  \"url\": \"ullamco sit\",\n  \"updated_on\": \"1983-02-03T05:33:09.708Z\",\n  \"updated_by\": \"consequat dolor commodo veniam\",\n  \"created_on\": \"2012-01-10T05:51:24.374Z\",\n  \"created_by\": \"deserunt eu\",\n  \"archived\": true,\n  \"archived_on\": \"2011-07-07T06:16:36.072Z\",\n  \"archived_by\": \"Duis do\",\n  \"organization\": {\n    \"name\": \"ut sunt aliqua\",\n    \"slug\": \"irure qui\",\n    \"logo\": \"eiusmod adipisicing esse proident\",\n    \"color\": \"eu occaecat ad ullamco\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"deserunt Ut commodo\",\n    \"ad_spend_tracker_url\": \"eu Ut labore proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"do sint occaecat\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit\",\n    \"updated_on\": \"1969-03-11T19:10:00.967Z\",\n    \"updated_by\": \"dolore sit nostrud deserun\",\n    \"created_on\": \"1975-11-04T17:45:16.267Z\",\n    \"created_by\": \"pariatur sed velit tempor sint\",\n    \"archived\": false,\n    \"archived_on\": \"2018-07-26T17:23:58.517Z\",\n    \"archived_by\": \"adipisicing dolor\"\n  },\n  \"workspaces\": [\n    \"labore voluptate Lorem ad\",\n    \"ut anim Excepteur\"\n  ]\n}"}],"_postman_id":"8ff96fe0-c935-45f4-afb3-2fe4d4d88d5e"}],"id":"29565bdc-11f1-4f98-b8c9-087b9dbec158","description":"<p>Dashboards, or otherwise known as Performance Dashboards - give you insights into the full lifecycle performance of your advertising efforts. </p>\n","_postman_id":"29565bdc-11f1-4f98-b8c9-087b9dbec158"},{"name":"Events","item":[{"name":"Find All Events","id":"52e5ab9d-e0b4-444e-abe2-e5d6e0b90253","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//events?archived=<boolean>","urlObject":{"path":["events"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"a08b7990-e668-4984-8185-e3dfcc658650","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//events?archived=<boolean>","host":["/"],"path":["events"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"type\": \"cu\",\n    \"anonymous_id\": \"irure sint aute sed Excepteur\",\n    \"user_id\": \"magna id ut veniam\",\n    \"device\": {},\n    \"url\": \"laboru\",\n    \"referrer\": \"incididunt nostru\",\n    \"user_agent\": \"dolor\",\n    \"timestamp_sent\": \"nisi nostrud exercitation\",\n    \"timestamp_received\": \"adipisicing irure occaecat\",\n    \"version\": \"dolor\",\n    \"data\": {},\n    \"ip_address\": \"do labore id tempor ut\",\n    \"locale\": {},\n    \"location\": {},\n    \"network\": {},\n    \"os\": {},\n    \"timezone\": \"officia cillum eu\",\n    \"organization\": {\n      \"name\": \"Excepteur voluptate ad\",\n      \"slug\": \"nisi nostrud\",\n      \"logo\": \"pariatur est\",\n      \"color\": \"fugiat\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"laboris\",\n      \"ad_spend_tracker_url\": \"nulla\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"et officia in\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"est\",\n      \"updated_on\": \"2012-12-09T04:24:24.017Z\",\n      \"updated_by\": \"elit ut adipisicing\",\n      \"created_on\": \"1973-07-05T16:46:03.791Z\",\n      \"created_by\": \"anim et laboris ea\",\n      \"archived\": false,\n      \"archived_on\": \"1999-10-29T05:59:14.220Z\",\n      \"archived_by\": \"Ex\"\n    },\n    \"workspaces\": [\n      \"veniam non proident\",\n      \"officia in\"\n    ]\n  },\n  {\n    \"type\": \"id\",\n    \"anonymous_id\": \"dolor dolore reprehenderit do laboris\",\n    \"user_id\": \"cupidatat deserunt et ipsum\",\n    \"device\": {},\n    \"url\": \"consequat\",\n    \"referrer\": \"culpa aliqua irure\",\n    \"user_agent\": \"occaecat laboris non\",\n    \"timestamp_sent\": \"cupidatat commodo elit\",\n    \"timestamp_received\": \"Duis commodo quis voluptate\",\n    \"version\": \"do\",\n    \"data\": {},\n    \"ip_address\": \"officia culpa\",\n    \"locale\": {},\n    \"location\": {},\n    \"network\": {},\n    \"os\": {},\n    \"timezone\": \"eiusmod est et dolor proident\",\n    \"organization\": {\n      \"name\": \"sunt amet\",\n      \"slug\": \"ea dolore mollit\",\n      \"logo\": \"pariatur se\",\n      \"color\": \"laborum ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"Excepteur\",\n      \"ad_spend_tracker_url\": \"Ut labore minim\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"pariatur sit et dolore\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"cillum nisi minim\",\n      \"updated_on\": \"2015-11-15T22:11:57.998Z\",\n      \"updated_by\": \"nostrud magna laborum nisi am\",\n      \"created_on\": \"1962-05-01T06:02:09.195Z\",\n      \"created_by\": \"in esse id Duis sit\",\n      \"archived\": true,\n      \"archived_on\": \"1945-05-06T20:24:11.161Z\",\n      \"archived_by\": \"elit fugiat\"\n    },\n    \"workspaces\": [\n      \"amet et\",\n      \"dolore est Dui\"\n    ]\n  }\n]"}],"_postman_id":"52e5ab9d-e0b4-444e-abe2-e5d6e0b90253"},{"name":"Create Event","id":"fb0b8f0f-2f60-41b3-a14d-052d4b77be9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"anonymous_id\": \"<string>\",\n  \"user_id\": \"<string>\",\n  \"device\": \"<object>\",\n  \"url\": \"<string>\",\n  \"referrer\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"timestamp_sent\": \"<string>\",\n  \"timestamp_received\": \"<string>\",\n  \"version\": \"<string>\",\n  \"data\": \"<object>\",\n  \"ip_address\": \"<string>\",\n  \"locale\": \"<object>\",\n  \"location\": \"<object>\",\n  \"network\": \"<object>\",\n  \"os\": \"<object>\",\n  \"timezone\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//events","urlObject":{"path":["events"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"74ccd752-98f8-43d4-af92-899dd1a5cc43","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"anonymous_id\": \"<string>\",\n  \"user_id\": \"<string>\",\n  \"device\": \"<object>\",\n  \"url\": \"<string>\",\n  \"referrer\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"timestamp_sent\": \"<string>\",\n  \"timestamp_received\": \"<string>\",\n  \"version\": \"<string>\",\n  \"data\": \"<object>\",\n  \"ip_address\": \"<string>\",\n  \"locale\": \"<object>\",\n  \"location\": \"<object>\",\n  \"network\": \"<object>\",\n  \"os\": \"<object>\",\n  \"timezone\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//events"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"quis ullamco enim sint\",\n  \"anonymous_id\": \"laboris volupta\",\n  \"user_id\": \"o\",\n  \"device\": {},\n  \"url\": \"laborum amet\",\n  \"referrer\": \"officia amet\",\n  \"user_agent\": \"aute esse dolor\",\n  \"timestamp_sent\": \"irure qui\",\n  \"timestamp_received\": \"occaecat culpa Lorem sunt exercitation\",\n  \"version\": \"exercitati\",\n  \"data\": {},\n  \"ip_address\": \"culpa\",\n  \"locale\": {},\n  \"location\": {},\n  \"network\": {},\n  \"os\": {},\n  \"timezone\": \"ullamco Excepteur consequat dolore\",\n  \"organization\": {\n    \"name\": \"dolor veniam Ut aute\",\n    \"slug\": \"est mo\",\n    \"logo\": \"ea non\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aliqua elit ex ut\",\n    \"ad_spend_tracker_url\": \"voluptate occ\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"laborum ut\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"nisi irure eu\",\n    \"updated_on\": \"1970-05-31T02:46:19.696Z\",\n    \"updated_by\": \"aliquip \",\n    \"created_on\": \"2018-08-19T09:49:56.068Z\",\n    \"created_by\": \"eu minim commodo laboris enim\",\n    \"archived\": false,\n    \"archived_on\": \"1943-08-14T22:50:22.263Z\",\n    \"archived_by\": \"minim dolore ex la\"\n  },\n  \"workspaces\": [\n    \"ipsum aliquip quis\",\n    \"in pariatur deserunt\"\n  ]\n}"}],"_postman_id":"fb0b8f0f-2f60-41b3-a14d-052d4b77be9b"},{"name":"Count Events","id":"6f53be9b-0c2a-454c-a023-e39c113de90c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//events/count?archived=<boolean>","urlObject":{"path":["events","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"e0a8b2a5-3236-4466-b55a-57432afc52c9","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//events/count?archived=<boolean>","host":["/"],"path":["events","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"6f53be9b-0c2a-454c-a023-e39c113de90c"},{"name":"Search Events","id":"ea8e0281-3086-43a6-b560-cd29755b4b9e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//events/search","urlObject":{"path":["events","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"de945721-e1aa-4442-b4cb-9470c505c3ea","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//events/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"type\": \"cu\",\n    \"anonymous_id\": \"irure sint aute sed Excepteur\",\n    \"user_id\": \"magna id ut veniam\",\n    \"device\": {},\n    \"url\": \"laboru\",\n    \"referrer\": \"incididunt nostru\",\n    \"user_agent\": \"dolor\",\n    \"timestamp_sent\": \"nisi nostrud exercitation\",\n    \"timestamp_received\": \"adipisicing irure occaecat\",\n    \"version\": \"dolor\",\n    \"data\": {},\n    \"ip_address\": \"do labore id tempor ut\",\n    \"locale\": {},\n    \"location\": {},\n    \"network\": {},\n    \"os\": {},\n    \"timezone\": \"officia cillum eu\",\n    \"organization\": {\n      \"name\": \"Excepteur voluptate ad\",\n      \"slug\": \"nisi nostrud\",\n      \"logo\": \"pariatur est\",\n      \"color\": \"fugiat\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"laboris\",\n      \"ad_spend_tracker_url\": \"nulla\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"et officia in\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"est\",\n      \"updated_on\": \"2012-12-09T04:24:24.017Z\",\n      \"updated_by\": \"elit ut adipisicing\",\n      \"created_on\": \"1973-07-05T16:46:03.791Z\",\n      \"created_by\": \"anim et laboris ea\",\n      \"archived\": false,\n      \"archived_on\": \"1999-10-29T05:59:14.220Z\",\n      \"archived_by\": \"Ex\"\n    },\n    \"workspaces\": [\n      \"veniam non proident\",\n      \"officia in\"\n    ]\n  },\n  {\n    \"type\": \"id\",\n    \"anonymous_id\": \"dolor dolore reprehenderit do laboris\",\n    \"user_id\": \"cupidatat deserunt et ipsum\",\n    \"device\": {},\n    \"url\": \"consequat\",\n    \"referrer\": \"culpa aliqua irure\",\n    \"user_agent\": \"occaecat laboris non\",\n    \"timestamp_sent\": \"cupidatat commodo elit\",\n    \"timestamp_received\": \"Duis commodo quis voluptate\",\n    \"version\": \"do\",\n    \"data\": {},\n    \"ip_address\": \"officia culpa\",\n    \"locale\": {},\n    \"location\": {},\n    \"network\": {},\n    \"os\": {},\n    \"timezone\": \"eiusmod est et dolor proident\",\n    \"organization\": {\n      \"name\": \"sunt amet\",\n      \"slug\": \"ea dolore mollit\",\n      \"logo\": \"pariatur se\",\n      \"color\": \"laborum ipsum\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"Excepteur\",\n      \"ad_spend_tracker_url\": \"Ut labore minim\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"pariatur sit et dolore\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"cillum nisi minim\",\n      \"updated_on\": \"2015-11-15T22:11:57.998Z\",\n      \"updated_by\": \"nostrud magna laborum nisi am\",\n      \"created_on\": \"1962-05-01T06:02:09.195Z\",\n      \"created_by\": \"in esse id Duis sit\",\n      \"archived\": true,\n      \"archived_on\": \"1945-05-06T20:24:11.161Z\",\n      \"archived_by\": \"elit fugiat\"\n    },\n    \"workspaces\": [\n      \"amet et\",\n      \"dolore est Dui\"\n    ]\n  }\n]"}],"_postman_id":"ea8e0281-3086-43a6-b560-cd29755b4b9e"},{"name":"Find One Event","id":"ff376f07-9e21-450b-99a9-afd2229aa811","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//events/:id?archived=<boolean>","urlObject":{"path":["events",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"f77bdefa-a416-463c-926e-24f246163de8","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"1233443e-d80a-4a51-b782-1241738ac377","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//events/:id?archived=<boolean>","host":["/"],"path":["events",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"quis ullamco enim sint\",\n  \"anonymous_id\": \"laboris volupta\",\n  \"user_id\": \"o\",\n  \"device\": {},\n  \"url\": \"laborum amet\",\n  \"referrer\": \"officia amet\",\n  \"user_agent\": \"aute esse dolor\",\n  \"timestamp_sent\": \"irure qui\",\n  \"timestamp_received\": \"occaecat culpa Lorem sunt exercitation\",\n  \"version\": \"exercitati\",\n  \"data\": {},\n  \"ip_address\": \"culpa\",\n  \"locale\": {},\n  \"location\": {},\n  \"network\": {},\n  \"os\": {},\n  \"timezone\": \"ullamco Excepteur consequat dolore\",\n  \"organization\": {\n    \"name\": \"dolor veniam Ut aute\",\n    \"slug\": \"est mo\",\n    \"logo\": \"ea non\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aliqua elit ex ut\",\n    \"ad_spend_tracker_url\": \"voluptate occ\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"laborum ut\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"nisi irure eu\",\n    \"updated_on\": \"1970-05-31T02:46:19.696Z\",\n    \"updated_by\": \"aliquip \",\n    \"created_on\": \"2018-08-19T09:49:56.068Z\",\n    \"created_by\": \"eu minim commodo laboris enim\",\n    \"archived\": false,\n    \"archived_on\": \"1943-08-14T22:50:22.263Z\",\n    \"archived_by\": \"minim dolore ex la\"\n  },\n  \"workspaces\": [\n    \"ipsum aliquip quis\",\n    \"in pariatur deserunt\"\n  ]\n}"}],"_postman_id":"ff376f07-9e21-450b-99a9-afd2229aa811"},{"name":"Replace Event","id":"5a5a7916-ce75-46c5-a8df-aa6dc68aef34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"anonymous_id\": \"<string>\",\n  \"user_id\": \"<string>\",\n  \"device\": \"<object>\",\n  \"url\": \"<string>\",\n  \"referrer\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"timestamp_sent\": \"<string>\",\n  \"timestamp_received\": \"<string>\",\n  \"version\": \"<string>\",\n  \"data\": \"<object>\",\n  \"ip_address\": \"<string>\",\n  \"locale\": \"<object>\",\n  \"location\": \"<object>\",\n  \"network\": \"<object>\",\n  \"os\": \"<object>\",\n  \"timezone\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//events/:id","urlObject":{"path":["events",":id"],"host":["/"],"query":[],"variable":[{"id":"f42a99e4-f66b-418b-9786-55360f335355","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"5649d085-6c99-4f9c-b11d-a9c81b348e58","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"anonymous_id\": \"<string>\",\n  \"user_id\": \"<string>\",\n  \"device\": \"<object>\",\n  \"url\": \"<string>\",\n  \"referrer\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"timestamp_sent\": \"<string>\",\n  \"timestamp_received\": \"<string>\",\n  \"version\": \"<string>\",\n  \"data\": \"<object>\",\n  \"ip_address\": \"<string>\",\n  \"locale\": \"<object>\",\n  \"location\": \"<object>\",\n  \"network\": \"<object>\",\n  \"os\": \"<object>\",\n  \"timezone\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//events/:id","host":["/"],"path":["events",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"quis ullamco enim sint\",\n  \"anonymous_id\": \"laboris volupta\",\n  \"user_id\": \"o\",\n  \"device\": {},\n  \"url\": \"laborum amet\",\n  \"referrer\": \"officia amet\",\n  \"user_agent\": \"aute esse dolor\",\n  \"timestamp_sent\": \"irure qui\",\n  \"timestamp_received\": \"occaecat culpa Lorem sunt exercitation\",\n  \"version\": \"exercitati\",\n  \"data\": {},\n  \"ip_address\": \"culpa\",\n  \"locale\": {},\n  \"location\": {},\n  \"network\": {},\n  \"os\": {},\n  \"timezone\": \"ullamco Excepteur consequat dolore\",\n  \"organization\": {\n    \"name\": \"dolor veniam Ut aute\",\n    \"slug\": \"est mo\",\n    \"logo\": \"ea non\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aliqua elit ex ut\",\n    \"ad_spend_tracker_url\": \"voluptate occ\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"laborum ut\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"nisi irure eu\",\n    \"updated_on\": \"1970-05-31T02:46:19.696Z\",\n    \"updated_by\": \"aliquip \",\n    \"created_on\": \"2018-08-19T09:49:56.068Z\",\n    \"created_by\": \"eu minim commodo laboris enim\",\n    \"archived\": false,\n    \"archived_on\": \"1943-08-14T22:50:22.263Z\",\n    \"archived_by\": \"minim dolore ex la\"\n  },\n  \"workspaces\": [\n    \"ipsum aliquip quis\",\n    \"in pariatur deserunt\"\n  ]\n}"}],"_postman_id":"5a5a7916-ce75-46c5-a8df-aa6dc68aef34"},{"name":"Update Event","id":"69279df0-9317-4fd6-8517-7ef8c40111c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"anonymous_id\": \"<string>\",\n  \"user_id\": \"<string>\",\n  \"device\": \"<object>\",\n  \"url\": \"<string>\",\n  \"referrer\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"timestamp_sent\": \"<string>\",\n  \"timestamp_received\": \"<string>\",\n  \"version\": \"<string>\",\n  \"data\": \"<object>\",\n  \"ip_address\": \"<string>\",\n  \"locale\": \"<object>\",\n  \"location\": \"<object>\",\n  \"network\": \"<object>\",\n  \"os\": \"<object>\",\n  \"timezone\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//events/:id","urlObject":{"path":["events",":id"],"host":["/"],"query":[],"variable":[{"id":"c18ee983-4049-4b0c-b184-7d13aae79c42","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"fb7edd1c-d35b-440b-9eca-25dc170f83fa","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"anonymous_id\": \"<string>\",\n  \"user_id\": \"<string>\",\n  \"device\": \"<object>\",\n  \"url\": \"<string>\",\n  \"referrer\": \"<string>\",\n  \"user_agent\": \"<string>\",\n  \"timestamp_sent\": \"<string>\",\n  \"timestamp_received\": \"<string>\",\n  \"version\": \"<string>\",\n  \"data\": \"<object>\",\n  \"ip_address\": \"<string>\",\n  \"locale\": \"<object>\",\n  \"location\": \"<object>\",\n  \"network\": \"<object>\",\n  \"os\": \"<object>\",\n  \"timezone\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//events/:id","host":["/"],"path":["events",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"quis ullamco enim sint\",\n  \"anonymous_id\": \"laboris volupta\",\n  \"user_id\": \"o\",\n  \"device\": {},\n  \"url\": \"laborum amet\",\n  \"referrer\": \"officia amet\",\n  \"user_agent\": \"aute esse dolor\",\n  \"timestamp_sent\": \"irure qui\",\n  \"timestamp_received\": \"occaecat culpa Lorem sunt exercitation\",\n  \"version\": \"exercitati\",\n  \"data\": {},\n  \"ip_address\": \"culpa\",\n  \"locale\": {},\n  \"location\": {},\n  \"network\": {},\n  \"os\": {},\n  \"timezone\": \"ullamco Excepteur consequat dolore\",\n  \"organization\": {\n    \"name\": \"dolor veniam Ut aute\",\n    \"slug\": \"est mo\",\n    \"logo\": \"ea non\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aliqua elit ex ut\",\n    \"ad_spend_tracker_url\": \"voluptate occ\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"laborum ut\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"nisi irure eu\",\n    \"updated_on\": \"1970-05-31T02:46:19.696Z\",\n    \"updated_by\": \"aliquip \",\n    \"created_on\": \"2018-08-19T09:49:56.068Z\",\n    \"created_by\": \"eu minim commodo laboris enim\",\n    \"archived\": false,\n    \"archived_on\": \"1943-08-14T22:50:22.263Z\",\n    \"archived_by\": \"minim dolore ex la\"\n  },\n  \"workspaces\": [\n    \"ipsum aliquip quis\",\n    \"in pariatur deserunt\"\n  ]\n}"}],"_postman_id":"69279df0-9317-4fd6-8517-7ef8c40111c2"},{"name":"Archive Event","id":"90d6e763-1003-4849-9641-fe1ef63e68d2","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//events/:id","urlObject":{"path":["events",":id"],"host":["/"],"query":[],"variable":[{"id":"54fc9b9d-8a71-4f85-a614-804229a1b93d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"85467610-cb4a-4134-b642-e52f4c94ee8c","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//events/:id","host":["/"],"path":["events",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"quis ullamco enim sint\",\n  \"anonymous_id\": \"laboris volupta\",\n  \"user_id\": \"o\",\n  \"device\": {},\n  \"url\": \"laborum amet\",\n  \"referrer\": \"officia amet\",\n  \"user_agent\": \"aute esse dolor\",\n  \"timestamp_sent\": \"irure qui\",\n  \"timestamp_received\": \"occaecat culpa Lorem sunt exercitation\",\n  \"version\": \"exercitati\",\n  \"data\": {},\n  \"ip_address\": \"culpa\",\n  \"locale\": {},\n  \"location\": {},\n  \"network\": {},\n  \"os\": {},\n  \"timezone\": \"ullamco Excepteur consequat dolore\",\n  \"organization\": {\n    \"name\": \"dolor veniam Ut aute\",\n    \"slug\": \"est mo\",\n    \"logo\": \"ea non\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aliqua elit ex ut\",\n    \"ad_spend_tracker_url\": \"voluptate occ\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"laborum ut\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"nisi irure eu\",\n    \"updated_on\": \"1970-05-31T02:46:19.696Z\",\n    \"updated_by\": \"aliquip \",\n    \"created_on\": \"2018-08-19T09:49:56.068Z\",\n    \"created_by\": \"eu minim commodo laboris enim\",\n    \"archived\": false,\n    \"archived_on\": \"1943-08-14T22:50:22.263Z\",\n    \"archived_by\": \"minim dolore ex la\"\n  },\n  \"workspaces\": [\n    \"ipsum aliquip quis\",\n    \"in pariatur deserunt\"\n  ]\n}"}],"_postman_id":"90d6e763-1003-4849-9641-fe1ef63e68d2"},{"name":"Unarchive Event","id":"2514b60d-87cf-451f-9b77-c783d3e4f7e4","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//events/:id/unarchive","urlObject":{"path":["events",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"218e4bc9-0a32-4d58-b0f7-2b6b2ac02093","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d3905b20-9241-4368-a547-45f0804274ec","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//events/:id/unarchive","host":["/"],"path":["events",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"quis ullamco enim sint\",\n  \"anonymous_id\": \"laboris volupta\",\n  \"user_id\": \"o\",\n  \"device\": {},\n  \"url\": \"laborum amet\",\n  \"referrer\": \"officia amet\",\n  \"user_agent\": \"aute esse dolor\",\n  \"timestamp_sent\": \"irure qui\",\n  \"timestamp_received\": \"occaecat culpa Lorem sunt exercitation\",\n  \"version\": \"exercitati\",\n  \"data\": {},\n  \"ip_address\": \"culpa\",\n  \"locale\": {},\n  \"location\": {},\n  \"network\": {},\n  \"os\": {},\n  \"timezone\": \"ullamco Excepteur consequat dolore\",\n  \"organization\": {\n    \"name\": \"dolor veniam Ut aute\",\n    \"slug\": \"est mo\",\n    \"logo\": \"ea non\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aliqua elit ex ut\",\n    \"ad_spend_tracker_url\": \"voluptate occ\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"laborum ut\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"nisi irure eu\",\n    \"updated_on\": \"1970-05-31T02:46:19.696Z\",\n    \"updated_by\": \"aliquip \",\n    \"created_on\": \"2018-08-19T09:49:56.068Z\",\n    \"created_by\": \"eu minim commodo laboris enim\",\n    \"archived\": false,\n    \"archived_on\": \"1943-08-14T22:50:22.263Z\",\n    \"archived_by\": \"minim dolore ex la\"\n  },\n  \"workspaces\": [\n    \"ipsum aliquip quis\",\n    \"in pariatur deserunt\"\n  ]\n}"}],"_postman_id":"2514b60d-87cf-451f-9b77-c783d3e4f7e4"},{"name":"Delete Event","id":"786109ac-a3b8-49f0-8a69-f8f2d410033d","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//events/:id/delete","urlObject":{"path":["events",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"8a6cb920-0b41-48cf-baa9-e7f40bca0fa9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"3d746221-f407-482c-b646-34233787685d","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//events/:id/delete","host":["/"],"path":["events",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"quis ullamco enim sint\",\n  \"anonymous_id\": \"laboris volupta\",\n  \"user_id\": \"o\",\n  \"device\": {},\n  \"url\": \"laborum amet\",\n  \"referrer\": \"officia amet\",\n  \"user_agent\": \"aute esse dolor\",\n  \"timestamp_sent\": \"irure qui\",\n  \"timestamp_received\": \"occaecat culpa Lorem sunt exercitation\",\n  \"version\": \"exercitati\",\n  \"data\": {},\n  \"ip_address\": \"culpa\",\n  \"locale\": {},\n  \"location\": {},\n  \"network\": {},\n  \"os\": {},\n  \"timezone\": \"ullamco Excepteur consequat dolore\",\n  \"organization\": {\n    \"name\": \"dolor veniam Ut aute\",\n    \"slug\": \"est mo\",\n    \"logo\": \"ea non\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"aliqua elit ex ut\",\n    \"ad_spend_tracker_url\": \"voluptate occ\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"laborum ut\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"nisi irure eu\",\n    \"updated_on\": \"1970-05-31T02:46:19.696Z\",\n    \"updated_by\": \"aliquip \",\n    \"created_on\": \"2018-08-19T09:49:56.068Z\",\n    \"created_by\": \"eu minim commodo laboris enim\",\n    \"archived\": false,\n    \"archived_on\": \"1943-08-14T22:50:22.263Z\",\n    \"archived_by\": \"minim dolore ex la\"\n  },\n  \"workspaces\": [\n    \"ipsum aliquip quis\",\n    \"in pariatur deserunt\"\n  ]\n}"}],"_postman_id":"786109ac-a3b8-49f0-8a69-f8f2d410033d"}],"id":"d12ecd97-1d45-4437-9aa3-388453dfba10","description":"<p>Events allow us to collect information about the interactions that occur your website, landing pages, emails and more. This can help provide additional insights into the behavior of customers. </p>\n","_postman_id":"d12ecd97-1d45-4437-9aa3-388453dfba10"},{"name":"Folders","item":[{"name":"Find All Folders","id":"de8385f7-e597-4b96-9c9c-32cf55a3888f","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//folders?archived=<boolean>","urlObject":{"path":["folders"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"a7fd1d2c-05a5-4eeb-bc64-fa21ee17c887","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//folders?archived=<boolean>","host":["/"],"path":["folders"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"ipsum d\",\n    \"slug\": \"reprehenderit sunt adipisici\",\n    \"public\": false,\n    \"updated_on\": \"1969-04-25T20:37:41.917Z\",\n    \"updated_by\": \"ullamco dolor\",\n    \"created_on\": \"1964-02-09T02:06:44.633Z\",\n    \"created_by\": \"dolore exercitation aliquip\",\n    \"archived\": true,\n    \"archived_on\": \"1951-04-14T20:00:38.172Z\",\n    \"archived_by\": \"cillum ipsum exercitation magna\",\n    \"organization\": {\n      \"name\": \"ut\",\n      \"slug\": \"nisi irure commodo\",\n      \"logo\": \"reprehenderit\",\n      \"color\": \"in amet elit irure aliqua\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"ut\",\n      \"ad_spend_tracker_url\": \"ex elit laboris mollit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"officia consectetur minim\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"non si\",\n      \"updated_on\": \"1976-09-30T03:19:06.353Z\",\n      \"updated_by\": \"in in quis ea in\",\n      \"created_on\": \"1993-05-28T23:21:31.205Z\",\n      \"created_by\": \"sit in\",\n      \"archived\": false,\n      \"archived_on\": \"2005-02-27T13:23:00.306Z\",\n      \"archived_by\": \"Lorem ea sint cillum dolore\"\n    },\n    \"workspaces\": [\n      \"consequat Excepteur\",\n      \"cupidatat eiusmod quis\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  {\n    \"name\": \"e\",\n    \"slug\": \"reprehenderit\",\n    \"public\": true,\n    \"updated_on\": \"2011-02-19T18:30:18.568Z\",\n    \"updated_by\": \"i\",\n    \"created_on\": \"1945-01-30T13:08:00.225Z\",\n    \"created_by\": \"aliqua qui\",\n    \"archived\": true,\n    \"archived_on\": \"1946-10-10T18:12:17.424Z\",\n    \"archived_by\": \"Lorem eu dolor\",\n    \"organization\": {\n      \"name\": \"dolore consectetur\",\n      \"slug\": \"cillum a\",\n      \"logo\": \"eiusmod incididunt labore\",\n      \"color\": \"id exercitation pariatur non\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"proident aliquip do dolore non\",\n      \"ad_spend_tracker_url\": \"officia do\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"cillum laboris in nostrud esse\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"id pariatur sint\",\n      \"updated_on\": \"1949-11-21T05:47:51.823Z\",\n      \"updated_by\": \"occa\",\n      \"created_on\": \"1993-11-17T12:31:55.216Z\",\n      \"created_by\": \"irure\",\n      \"archived\": true,\n      \"archived_on\": \"1999-12-28T05:16:07.748Z\",\n      \"archived_by\": \"enim sed elit aliqua in\"\n    },\n    \"workspaces\": [\n      \"aute minim aliqua\",\n      \"sed sit reprehenderit\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n]"}],"_postman_id":"de8385f7-e597-4b96-9c9c-32cf55a3888f"},{"name":"Create Folder","id":"cb54c221-29f7-4811-9487-d5551a4d3826","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"public\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//folders","urlObject":{"path":["folders"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"c6877529-dbd6-4991-98e6-9623c697b448","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"public\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//folders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed cillum\",\n  \"slug\": \"dolore ipsum fugiat\",\n  \"public\": false,\n  \"updated_on\": \"1966-11-27T08:56:20.474Z\",\n  \"updated_by\": \"dolor non\",\n  \"created_on\": \"1972-04-19T01:27:59.628Z\",\n  \"created_by\": \"sed sit\",\n  \"archived\": true,\n  \"archived_on\": \"1942-02-19T02:48:11.591Z\",\n  \"archived_by\": \"sit minim in\",\n  \"organization\": {\n    \"name\": \"Duis\",\n    \"slug\": \"pariatur eiusmod labo\",\n    \"logo\": \"dolore eiusmod consequat\",\n    \"color\": \"sit\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"elit\",\n    \"ad_spend_tracker_url\": \"sint anim elit sed\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"nulla consequat officia mollit\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"velit\",\n    \"updated_on\": \"1945-03-10T12:29:59.499Z\",\n    \"updated_by\": \"sit enim veli\",\n    \"created_on\": \"1976-11-02T11:58:03.413Z\",\n    \"created_by\": \"quis\",\n    \"archived\": false,\n    \"archived_on\": \"2017-01-09T17:18:04.514Z\",\n    \"archived_by\": \"esse eiusmod\"\n  },\n  \"workspaces\": [\n    \"sit pariatur\",\n    \"dolor ad\"\n  ],\n  \"folder\": {\n    \"name\": \"ad est consequat velit officia\",\n    \"slug\": \"Excepteur qui pariatur dolore\",\n    \"public\": true,\n    \"updated_on\": \"2000-01-02T18:07:42.156Z\",\n    \"updated_by\": \"nulla sit ullamco id\",\n    \"created_on\": \"1965-04-19T16:48:21.063Z\",\n    \"created_by\": \"culpa sunt\",\n    \"archived\": true,\n    \"archived_on\": \"2011-05-26T22:58:29.254Z\",\n    \"archived_by\": \"consectetur adipisicing ut\",\n    \"organization\": {\n      \"name\": \"cillum\",\n      \"slug\": \"nulla magna dolore\",\n      \"logo\": \"tempor consectetur sit mollit cupid\",\n      \"color\": \"sed minim occaecat et\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt cupidatat enim\",\n      \"ad_spend_tracker_url\": \"ut dolore fugiat\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aute exercitation\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"ullamco laborum qui cupidatat\",\n      \"updated_on\": \"1975-07-25T14:09:29.884Z\",\n      \"updated_by\": \"aliquip cillum non eu ad\",\n      \"created_on\": \"1953-05-07T20:59:07.280Z\",\n      \"created_by\": \"fugiat al\",\n      \"archived\": true,\n      \"archived_on\": \"2018-12-13T23:59:56.937Z\",\n      \"archived_by\": \"qui est mollit exercitation\"\n    },\n    \"workspaces\": [\n      \"sit mollit nisi\",\n      \"labore anim minim\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n}"}],"_postman_id":"cb54c221-29f7-4811-9487-d5551a4d3826"},{"name":"Count Folders","id":"a0b8f7ff-9f91-49a3-b81d-6a72d433b872","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//folders/count?archived=<boolean>","urlObject":{"path":["folders","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"188ce512-d52f-4b86-859f-e090153dcf43","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//folders/count?archived=<boolean>","host":["/"],"path":["folders","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"a0b8f7ff-9f91-49a3-b81d-6a72d433b872"},{"name":"Search Folders","id":"53eede2d-3211-421f-bf88-856d69023bd4","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//folders/search","urlObject":{"path":["folders","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"3c9a1b2a-b452-49ef-8ee6-498c92a6f1ef","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//folders/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"ipsum d\",\n    \"slug\": \"reprehenderit sunt adipisici\",\n    \"public\": false,\n    \"updated_on\": \"1969-04-25T20:37:41.917Z\",\n    \"updated_by\": \"ullamco dolor\",\n    \"created_on\": \"1964-02-09T02:06:44.633Z\",\n    \"created_by\": \"dolore exercitation aliquip\",\n    \"archived\": true,\n    \"archived_on\": \"1951-04-14T20:00:38.172Z\",\n    \"archived_by\": \"cillum ipsum exercitation magna\",\n    \"organization\": {\n      \"name\": \"ut\",\n      \"slug\": \"nisi irure commodo\",\n      \"logo\": \"reprehenderit\",\n      \"color\": \"in amet elit irure aliqua\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"ut\",\n      \"ad_spend_tracker_url\": \"ex elit laboris mollit\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"officia consectetur minim\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"non si\",\n      \"updated_on\": \"1976-09-30T03:19:06.353Z\",\n      \"updated_by\": \"in in quis ea in\",\n      \"created_on\": \"1993-05-28T23:21:31.205Z\",\n      \"created_by\": \"sit in\",\n      \"archived\": false,\n      \"archived_on\": \"2005-02-27T13:23:00.306Z\",\n      \"archived_by\": \"Lorem ea sint cillum dolore\"\n    },\n    \"workspaces\": [\n      \"consequat Excepteur\",\n      \"cupidatat eiusmod quis\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  },\n  {\n    \"name\": \"e\",\n    \"slug\": \"reprehenderit\",\n    \"public\": true,\n    \"updated_on\": \"2011-02-19T18:30:18.568Z\",\n    \"updated_by\": \"i\",\n    \"created_on\": \"1945-01-30T13:08:00.225Z\",\n    \"created_by\": \"aliqua qui\",\n    \"archived\": true,\n    \"archived_on\": \"1946-10-10T18:12:17.424Z\",\n    \"archived_by\": \"Lorem eu dolor\",\n    \"organization\": {\n      \"name\": \"dolore consectetur\",\n      \"slug\": \"cillum a\",\n      \"logo\": \"eiusmod incididunt labore\",\n      \"color\": \"id exercitation pariatur non\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"proident aliquip do dolore non\",\n      \"ad_spend_tracker_url\": \"officia do\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"cillum laboris in nostrud esse\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"id pariatur sint\",\n      \"updated_on\": \"1949-11-21T05:47:51.823Z\",\n      \"updated_by\": \"occa\",\n      \"created_on\": \"1993-11-17T12:31:55.216Z\",\n      \"created_by\": \"irure\",\n      \"archived\": true,\n      \"archived_on\": \"1999-12-28T05:16:07.748Z\",\n      \"archived_by\": \"enim sed elit aliqua in\"\n    },\n    \"workspaces\": [\n      \"aute minim aliqua\",\n      \"sed sit reprehenderit\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n]"}],"_postman_id":"53eede2d-3211-421f-bf88-856d69023bd4"},{"name":"Find One Folder","id":"2082b6ce-c629-4102-8802-d98bd66563f1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//folders/:id?archived=<boolean>","urlObject":{"path":["folders",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"4e4fd22e-9748-443e-aa10-920f56b5fe68","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ca8c6bf4-e4f7-4e3e-b3a5-1be84799d04a","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//folders/:id?archived=<boolean>","host":["/"],"path":["folders",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed cillum\",\n  \"slug\": \"dolore ipsum fugiat\",\n  \"public\": false,\n  \"updated_on\": \"1966-11-27T08:56:20.474Z\",\n  \"updated_by\": \"dolor non\",\n  \"created_on\": \"1972-04-19T01:27:59.628Z\",\n  \"created_by\": \"sed sit\",\n  \"archived\": true,\n  \"archived_on\": \"1942-02-19T02:48:11.591Z\",\n  \"archived_by\": \"sit minim in\",\n  \"organization\": {\n    \"name\": \"Duis\",\n    \"slug\": \"pariatur eiusmod labo\",\n    \"logo\": \"dolore eiusmod consequat\",\n    \"color\": \"sit\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"elit\",\n    \"ad_spend_tracker_url\": \"sint anim elit sed\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"nulla consequat officia mollit\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"velit\",\n    \"updated_on\": \"1945-03-10T12:29:59.499Z\",\n    \"updated_by\": \"sit enim veli\",\n    \"created_on\": \"1976-11-02T11:58:03.413Z\",\n    \"created_by\": \"quis\",\n    \"archived\": false,\n    \"archived_on\": \"2017-01-09T17:18:04.514Z\",\n    \"archived_by\": \"esse eiusmod\"\n  },\n  \"workspaces\": [\n    \"sit pariatur\",\n    \"dolor ad\"\n  ],\n  \"folder\": {\n    \"name\": \"ad est consequat velit officia\",\n    \"slug\": \"Excepteur qui pariatur dolore\",\n    \"public\": true,\n    \"updated_on\": \"2000-01-02T18:07:42.156Z\",\n    \"updated_by\": \"nulla sit ullamco id\",\n    \"created_on\": \"1965-04-19T16:48:21.063Z\",\n    \"created_by\": \"culpa sunt\",\n    \"archived\": true,\n    \"archived_on\": \"2011-05-26T22:58:29.254Z\",\n    \"archived_by\": \"consectetur adipisicing ut\",\n    \"organization\": {\n      \"name\": \"cillum\",\n      \"slug\": \"nulla magna dolore\",\n      \"logo\": \"tempor consectetur sit mollit cupid\",\n      \"color\": \"sed minim occaecat et\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt cupidatat enim\",\n      \"ad_spend_tracker_url\": \"ut dolore fugiat\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aute exercitation\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"ullamco laborum qui cupidatat\",\n      \"updated_on\": \"1975-07-25T14:09:29.884Z\",\n      \"updated_by\": \"aliquip cillum non eu ad\",\n      \"created_on\": \"1953-05-07T20:59:07.280Z\",\n      \"created_by\": \"fugiat al\",\n      \"archived\": true,\n      \"archived_on\": \"2018-12-13T23:59:56.937Z\",\n      \"archived_by\": \"qui est mollit exercitation\"\n    },\n    \"workspaces\": [\n      \"sit mollit nisi\",\n      \"labore anim minim\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n}"}],"_postman_id":"2082b6ce-c629-4102-8802-d98bd66563f1"},{"name":"Replace Folder","id":"88c08f17-5a4d-4244-b324-222b26bf76b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"public\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//folders/:id","urlObject":{"path":["folders",":id"],"host":["/"],"query":[],"variable":[{"id":"682d7ca9-2c59-495d-b588-91d28c9393e2","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"2fbd284e-03ce-4d6e-840f-8deb5e6acdf4","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"public\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//folders/:id","host":["/"],"path":["folders",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed cillum\",\n  \"slug\": \"dolore ipsum fugiat\",\n  \"public\": false,\n  \"updated_on\": \"1966-11-27T08:56:20.474Z\",\n  \"updated_by\": \"dolor non\",\n  \"created_on\": \"1972-04-19T01:27:59.628Z\",\n  \"created_by\": \"sed sit\",\n  \"archived\": true,\n  \"archived_on\": \"1942-02-19T02:48:11.591Z\",\n  \"archived_by\": \"sit minim in\",\n  \"organization\": {\n    \"name\": \"Duis\",\n    \"slug\": \"pariatur eiusmod labo\",\n    \"logo\": \"dolore eiusmod consequat\",\n    \"color\": \"sit\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"elit\",\n    \"ad_spend_tracker_url\": \"sint anim elit sed\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"nulla consequat officia mollit\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"velit\",\n    \"updated_on\": \"1945-03-10T12:29:59.499Z\",\n    \"updated_by\": \"sit enim veli\",\n    \"created_on\": \"1976-11-02T11:58:03.413Z\",\n    \"created_by\": \"quis\",\n    \"archived\": false,\n    \"archived_on\": \"2017-01-09T17:18:04.514Z\",\n    \"archived_by\": \"esse eiusmod\"\n  },\n  \"workspaces\": [\n    \"sit pariatur\",\n    \"dolor ad\"\n  ],\n  \"folder\": {\n    \"name\": \"ad est consequat velit officia\",\n    \"slug\": \"Excepteur qui pariatur dolore\",\n    \"public\": true,\n    \"updated_on\": \"2000-01-02T18:07:42.156Z\",\n    \"updated_by\": \"nulla sit ullamco id\",\n    \"created_on\": \"1965-04-19T16:48:21.063Z\",\n    \"created_by\": \"culpa sunt\",\n    \"archived\": true,\n    \"archived_on\": \"2011-05-26T22:58:29.254Z\",\n    \"archived_by\": \"consectetur adipisicing ut\",\n    \"organization\": {\n      \"name\": \"cillum\",\n      \"slug\": \"nulla magna dolore\",\n      \"logo\": \"tempor consectetur sit mollit cupid\",\n      \"color\": \"sed minim occaecat et\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt cupidatat enim\",\n      \"ad_spend_tracker_url\": \"ut dolore fugiat\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aute exercitation\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"ullamco laborum qui cupidatat\",\n      \"updated_on\": \"1975-07-25T14:09:29.884Z\",\n      \"updated_by\": \"aliquip cillum non eu ad\",\n      \"created_on\": \"1953-05-07T20:59:07.280Z\",\n      \"created_by\": \"fugiat al\",\n      \"archived\": true,\n      \"archived_on\": \"2018-12-13T23:59:56.937Z\",\n      \"archived_by\": \"qui est mollit exercitation\"\n    },\n    \"workspaces\": [\n      \"sit mollit nisi\",\n      \"labore anim minim\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n}"}],"_postman_id":"88c08f17-5a4d-4244-b324-222b26bf76b0"},{"name":"Update Folder","id":"150c45ba-8daa-479e-ad04-afd45e4f5be2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"public\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//folders/:id","urlObject":{"path":["folders",":id"],"host":["/"],"query":[],"variable":[{"id":"475e345c-8b2e-41d9-aa22-da87bce43f9a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"9500e1a2-252b-4a6d-8d45-e8942f9f7add","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"public\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//folders/:id","host":["/"],"path":["folders",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed cillum\",\n  \"slug\": \"dolore ipsum fugiat\",\n  \"public\": false,\n  \"updated_on\": \"1966-11-27T08:56:20.474Z\",\n  \"updated_by\": \"dolor non\",\n  \"created_on\": \"1972-04-19T01:27:59.628Z\",\n  \"created_by\": \"sed sit\",\n  \"archived\": true,\n  \"archived_on\": \"1942-02-19T02:48:11.591Z\",\n  \"archived_by\": \"sit minim in\",\n  \"organization\": {\n    \"name\": \"Duis\",\n    \"slug\": \"pariatur eiusmod labo\",\n    \"logo\": \"dolore eiusmod consequat\",\n    \"color\": \"sit\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"elit\",\n    \"ad_spend_tracker_url\": \"sint anim elit sed\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"nulla consequat officia mollit\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"velit\",\n    \"updated_on\": \"1945-03-10T12:29:59.499Z\",\n    \"updated_by\": \"sit enim veli\",\n    \"created_on\": \"1976-11-02T11:58:03.413Z\",\n    \"created_by\": \"quis\",\n    \"archived\": false,\n    \"archived_on\": \"2017-01-09T17:18:04.514Z\",\n    \"archived_by\": \"esse eiusmod\"\n  },\n  \"workspaces\": [\n    \"sit pariatur\",\n    \"dolor ad\"\n  ],\n  \"folder\": {\n    \"name\": \"ad est consequat velit officia\",\n    \"slug\": \"Excepteur qui pariatur dolore\",\n    \"public\": true,\n    \"updated_on\": \"2000-01-02T18:07:42.156Z\",\n    \"updated_by\": \"nulla sit ullamco id\",\n    \"created_on\": \"1965-04-19T16:48:21.063Z\",\n    \"created_by\": \"culpa sunt\",\n    \"archived\": true,\n    \"archived_on\": \"2011-05-26T22:58:29.254Z\",\n    \"archived_by\": \"consectetur adipisicing ut\",\n    \"organization\": {\n      \"name\": \"cillum\",\n      \"slug\": \"nulla magna dolore\",\n      \"logo\": \"tempor consectetur sit mollit cupid\",\n      \"color\": \"sed minim occaecat et\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt cupidatat enim\",\n      \"ad_spend_tracker_url\": \"ut dolore fugiat\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aute exercitation\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"ullamco laborum qui cupidatat\",\n      \"updated_on\": \"1975-07-25T14:09:29.884Z\",\n      \"updated_by\": \"aliquip cillum non eu ad\",\n      \"created_on\": \"1953-05-07T20:59:07.280Z\",\n      \"created_by\": \"fugiat al\",\n      \"archived\": true,\n      \"archived_on\": \"2018-12-13T23:59:56.937Z\",\n      \"archived_by\": \"qui est mollit exercitation\"\n    },\n    \"workspaces\": [\n      \"sit mollit nisi\",\n      \"labore anim minim\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n}"}],"_postman_id":"150c45ba-8daa-479e-ad04-afd45e4f5be2"},{"name":"Archive Folder","id":"1d274a91-4cb8-4628-a1f3-3e45be7635d3","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//folders/:id","urlObject":{"path":["folders",":id"],"host":["/"],"query":[],"variable":[{"id":"b05aa2c9-c261-4e09-b82f-952b1b757c42","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"121f56a7-8b4f-4596-adb9-82cadbd0cc8f","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//folders/:id","host":["/"],"path":["folders",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed cillum\",\n  \"slug\": \"dolore ipsum fugiat\",\n  \"public\": false,\n  \"updated_on\": \"1966-11-27T08:56:20.474Z\",\n  \"updated_by\": \"dolor non\",\n  \"created_on\": \"1972-04-19T01:27:59.628Z\",\n  \"created_by\": \"sed sit\",\n  \"archived\": true,\n  \"archived_on\": \"1942-02-19T02:48:11.591Z\",\n  \"archived_by\": \"sit minim in\",\n  \"organization\": {\n    \"name\": \"Duis\",\n    \"slug\": \"pariatur eiusmod labo\",\n    \"logo\": \"dolore eiusmod consequat\",\n    \"color\": \"sit\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"elit\",\n    \"ad_spend_tracker_url\": \"sint anim elit sed\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"nulla consequat officia mollit\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"velit\",\n    \"updated_on\": \"1945-03-10T12:29:59.499Z\",\n    \"updated_by\": \"sit enim veli\",\n    \"created_on\": \"1976-11-02T11:58:03.413Z\",\n    \"created_by\": \"quis\",\n    \"archived\": false,\n    \"archived_on\": \"2017-01-09T17:18:04.514Z\",\n    \"archived_by\": \"esse eiusmod\"\n  },\n  \"workspaces\": [\n    \"sit pariatur\",\n    \"dolor ad\"\n  ],\n  \"folder\": {\n    \"name\": \"ad est consequat velit officia\",\n    \"slug\": \"Excepteur qui pariatur dolore\",\n    \"public\": true,\n    \"updated_on\": \"2000-01-02T18:07:42.156Z\",\n    \"updated_by\": \"nulla sit ullamco id\",\n    \"created_on\": \"1965-04-19T16:48:21.063Z\",\n    \"created_by\": \"culpa sunt\",\n    \"archived\": true,\n    \"archived_on\": \"2011-05-26T22:58:29.254Z\",\n    \"archived_by\": \"consectetur adipisicing ut\",\n    \"organization\": {\n      \"name\": \"cillum\",\n      \"slug\": \"nulla magna dolore\",\n      \"logo\": \"tempor consectetur sit mollit cupid\",\n      \"color\": \"sed minim occaecat et\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt cupidatat enim\",\n      \"ad_spend_tracker_url\": \"ut dolore fugiat\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aute exercitation\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"ullamco laborum qui cupidatat\",\n      \"updated_on\": \"1975-07-25T14:09:29.884Z\",\n      \"updated_by\": \"aliquip cillum non eu ad\",\n      \"created_on\": \"1953-05-07T20:59:07.280Z\",\n      \"created_by\": \"fugiat al\",\n      \"archived\": true,\n      \"archived_on\": \"2018-12-13T23:59:56.937Z\",\n      \"archived_by\": \"qui est mollit exercitation\"\n    },\n    \"workspaces\": [\n      \"sit mollit nisi\",\n      \"labore anim minim\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n}"}],"_postman_id":"1d274a91-4cb8-4628-a1f3-3e45be7635d3"},{"name":"Unarchive Folder","id":"f5f14457-69d2-4a94-8f96-8b49232f5242","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//folders/:id/unarchive","urlObject":{"path":["folders",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"edfff2e9-5940-4fd8-850b-5f32d84dac77","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"e2ff0d22-b944-465c-b6f5-27fbf1e9b445","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//folders/:id/unarchive","host":["/"],"path":["folders",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed cillum\",\n  \"slug\": \"dolore ipsum fugiat\",\n  \"public\": false,\n  \"updated_on\": \"1966-11-27T08:56:20.474Z\",\n  \"updated_by\": \"dolor non\",\n  \"created_on\": \"1972-04-19T01:27:59.628Z\",\n  \"created_by\": \"sed sit\",\n  \"archived\": true,\n  \"archived_on\": \"1942-02-19T02:48:11.591Z\",\n  \"archived_by\": \"sit minim in\",\n  \"organization\": {\n    \"name\": \"Duis\",\n    \"slug\": \"pariatur eiusmod labo\",\n    \"logo\": \"dolore eiusmod consequat\",\n    \"color\": \"sit\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"elit\",\n    \"ad_spend_tracker_url\": \"sint anim elit sed\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"nulla consequat officia mollit\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"velit\",\n    \"updated_on\": \"1945-03-10T12:29:59.499Z\",\n    \"updated_by\": \"sit enim veli\",\n    \"created_on\": \"1976-11-02T11:58:03.413Z\",\n    \"created_by\": \"quis\",\n    \"archived\": false,\n    \"archived_on\": \"2017-01-09T17:18:04.514Z\",\n    \"archived_by\": \"esse eiusmod\"\n  },\n  \"workspaces\": [\n    \"sit pariatur\",\n    \"dolor ad\"\n  ],\n  \"folder\": {\n    \"name\": \"ad est consequat velit officia\",\n    \"slug\": \"Excepteur qui pariatur dolore\",\n    \"public\": true,\n    \"updated_on\": \"2000-01-02T18:07:42.156Z\",\n    \"updated_by\": \"nulla sit ullamco id\",\n    \"created_on\": \"1965-04-19T16:48:21.063Z\",\n    \"created_by\": \"culpa sunt\",\n    \"archived\": true,\n    \"archived_on\": \"2011-05-26T22:58:29.254Z\",\n    \"archived_by\": \"consectetur adipisicing ut\",\n    \"organization\": {\n      \"name\": \"cillum\",\n      \"slug\": \"nulla magna dolore\",\n      \"logo\": \"tempor consectetur sit mollit cupid\",\n      \"color\": \"sed minim occaecat et\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt cupidatat enim\",\n      \"ad_spend_tracker_url\": \"ut dolore fugiat\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aute exercitation\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"ullamco laborum qui cupidatat\",\n      \"updated_on\": \"1975-07-25T14:09:29.884Z\",\n      \"updated_by\": \"aliquip cillum non eu ad\",\n      \"created_on\": \"1953-05-07T20:59:07.280Z\",\n      \"created_by\": \"fugiat al\",\n      \"archived\": true,\n      \"archived_on\": \"2018-12-13T23:59:56.937Z\",\n      \"archived_by\": \"qui est mollit exercitation\"\n    },\n    \"workspaces\": [\n      \"sit mollit nisi\",\n      \"labore anim minim\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n}"}],"_postman_id":"f5f14457-69d2-4a94-8f96-8b49232f5242"},{"name":"Delete Folder","id":"fc517f5c-bcc6-416d-98b2-849b65e317e6","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//folders/:id/delete","urlObject":{"path":["folders",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"22fe9199-1d4e-47de-8b03-816cfb093062","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ddd4f416-9448-49e3-8fac-2c7b08ae021b","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//folders/:id/delete","host":["/"],"path":["folders",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"sed cillum\",\n  \"slug\": \"dolore ipsum fugiat\",\n  \"public\": false,\n  \"updated_on\": \"1966-11-27T08:56:20.474Z\",\n  \"updated_by\": \"dolor non\",\n  \"created_on\": \"1972-04-19T01:27:59.628Z\",\n  \"created_by\": \"sed sit\",\n  \"archived\": true,\n  \"archived_on\": \"1942-02-19T02:48:11.591Z\",\n  \"archived_by\": \"sit minim in\",\n  \"organization\": {\n    \"name\": \"Duis\",\n    \"slug\": \"pariatur eiusmod labo\",\n    \"logo\": \"dolore eiusmod consequat\",\n    \"color\": \"sit\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"elit\",\n    \"ad_spend_tracker_url\": \"sint anim elit sed\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"nulla consequat officia mollit\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"velit\",\n    \"updated_on\": \"1945-03-10T12:29:59.499Z\",\n    \"updated_by\": \"sit enim veli\",\n    \"created_on\": \"1976-11-02T11:58:03.413Z\",\n    \"created_by\": \"quis\",\n    \"archived\": false,\n    \"archived_on\": \"2017-01-09T17:18:04.514Z\",\n    \"archived_by\": \"esse eiusmod\"\n  },\n  \"workspaces\": [\n    \"sit pariatur\",\n    \"dolor ad\"\n  ],\n  \"folder\": {\n    \"name\": \"ad est consequat velit officia\",\n    \"slug\": \"Excepteur qui pariatur dolore\",\n    \"public\": true,\n    \"updated_on\": \"2000-01-02T18:07:42.156Z\",\n    \"updated_by\": \"nulla sit ullamco id\",\n    \"created_on\": \"1965-04-19T16:48:21.063Z\",\n    \"created_by\": \"culpa sunt\",\n    \"archived\": true,\n    \"archived_on\": \"2011-05-26T22:58:29.254Z\",\n    \"archived_by\": \"consectetur adipisicing ut\",\n    \"organization\": {\n      \"name\": \"cillum\",\n      \"slug\": \"nulla magna dolore\",\n      \"logo\": \"tempor consectetur sit mollit cupid\",\n      \"color\": \"sed minim occaecat et\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt cupidatat enim\",\n      \"ad_spend_tracker_url\": \"ut dolore fugiat\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aute exercitation\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"ullamco laborum qui cupidatat\",\n      \"updated_on\": \"1975-07-25T14:09:29.884Z\",\n      \"updated_by\": \"aliquip cillum non eu ad\",\n      \"created_on\": \"1953-05-07T20:59:07.280Z\",\n      \"created_by\": \"fugiat al\",\n      \"archived\": true,\n      \"archived_on\": \"2018-12-13T23:59:56.937Z\",\n      \"archived_by\": \"qui est mollit exercitation\"\n    },\n    \"workspaces\": [\n      \"sit mollit nisi\",\n      \"labore anim minim\"\n    ],\n    \"folder\": {\n      \"value\": \"<Circular reference to #/components/schemas/Folder detected>\"\n    }\n  }\n}"}],"_postman_id":"fc517f5c-bcc6-416d-98b2-849b65e317e6"}],"id":"bb5d81e7-9568-4526-9c26-09503c1e4d98","description":"<p>Folders provide a way to logically group assets that are hosted within the Ai Ad Platform. </p>\n","_postman_id":"bb5d81e7-9568-4526-9c26-09503c1e4d98"},{"name":"Groups","item":[{"name":"Find All Groups","id":"6d8d7f96-2719-4625-96da-6b0230be1506","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//groups?archived=<boolean>","urlObject":{"path":["groups"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"d0ed2cdf-6f2b-4c46-919b-b14720303269","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//groups?archived=<boolean>","host":["/"],"path":["groups"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"quis dolore sed\",\n    \"description\": \"Ut enim eu\",\n    \"updated_on\": \"1979-06-21T06:45:06.793Z\",\n    \"updated_by\": \"labore Excepteur ullamco aliquip\",\n    \"created_on\": \"1959-10-01T03:32:57.274Z\",\n    \"created_by\": \"laboris esse\",\n    \"archived\": false,\n    \"archived_on\": \"1942-08-20T16:48:43.370Z\",\n    \"archived_by\": \"anim aute\",\n    \"organization\": {\n      \"name\": \"laboris Excepteur\",\n      \"slug\": \"reprehenderit\",\n      \"logo\": \"mollit ex laborum deserunt\",\n      \"color\": \"quis labore\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"Lorem Duis\",\n      \"ad_spend_tracker_url\": \"cillum\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"dolore Lorem ex Excepteur\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"ut laborum esse\",\n      \"updated_on\": \"1960-09-24T16:39:23.362Z\",\n      \"updated_by\": \"ut officia reprehenderit do\",\n      \"created_on\": \"1945-05-19T20:31:28.176Z\",\n      \"created_by\": \"culp\",\n      \"archived\": false,\n      \"archived_on\": \"2007-09-11T11:37:25.578Z\",\n      \"archived_by\": \"do veniam\"\n    },\n    \"workspaces\": [\n      \"velit veniam\",\n      \"dolore proident voluptate non\"\n    ],\n    \"members\": [\n      \"enim est pariatur\",\n      \"amet sit\"\n    ]\n  },\n  {\n    \"name\": \"elit \",\n    \"description\": \"eiusmod\",\n    \"updated_on\": \"1980-12-02T20:25:06.899Z\",\n    \"updated_by\": \"eu in\",\n    \"created_on\": \"2011-09-06T02:26:30.941Z\",\n    \"created_by\": \"dolore anim do consectetur Duis\",\n    \"archived\": false,\n    \"archived_on\": \"2018-09-18T09:39:33.454Z\",\n    \"archived_by\": \"tempor dolore sit\",\n    \"organization\": {\n      \"name\": \"ea\",\n      \"slug\": \"exercitation mollit cillum\",\n      \"logo\": \"mollit fugiat sunt est do\",\n      \"color\": \"ut occaecat\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"sed aliq\",\n      \"ad_spend_tracker_url\": \"laboris velit culpa\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"sit\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"laboris do dolor aliquip\",\n      \"updated_on\": \"2008-06-25T04:32:46.384Z\",\n      \"updated_by\": \"elit et\",\n      \"created_on\": \"1944-10-07T10:02:00.167Z\",\n      \"created_by\": \"in do\",\n      \"archived\": false,\n      \"archived_on\": \"1970-12-04T19:04:49.312Z\",\n      \"archived_by\": \"laborum\"\n    },\n    \"workspaces\": [\n      \"ea sed magna\",\n      \"nostrud magna\"\n    ],\n    \"members\": [\n      \"amet laborum ut eiusmod\",\n      \"anim tempor fugiat Excepteur\"\n    ]\n  }\n]"}],"_postman_id":"6d8d7f96-2719-4625-96da-6b0230be1506"},{"name":"Create Group","id":"d4ae56bc-8d11-4805-b0ad-f3d1da2009b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//groups","urlObject":{"path":["groups"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"73db762d-e59f-4397-88ac-342d0dc39b94","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//groups"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"reprehenderit occaecat exercitation\",\n  \"description\": \"dolore ut laborum\",\n  \"updated_on\": \"1966-05-27T19:15:36.558Z\",\n  \"updated_by\": \"ad consectetur Excepteur\",\n  \"created_on\": \"2007-03-10T15:37:53.469Z\",\n  \"created_by\": \"eu minim Excepteur ea sit\",\n  \"archived\": true,\n  \"archived_on\": \"1962-05-14T05:38:34.243Z\",\n  \"archived_by\": \"pariatur\",\n  \"organization\": {\n    \"name\": \"magna Lorem\",\n    \"slug\": \"sit anim\",\n    \"logo\": \"ullamco Duis quis labore esse\",\n    \"color\": \"incididunt\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"anim qui culpa Lorem\",\n    \"ad_spend_tracker_url\": \"enim labore\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Ut ea dolor Duis\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"do\",\n    \"updated_on\": \"1977-07-31T08:24:55.360Z\",\n    \"updated_by\": \"magna do\",\n    \"created_on\": \"1999-08-22T05:56:35.546Z\",\n    \"created_by\": \"ullamco ea irure\",\n    \"archived\": true,\n    \"archived_on\": \"2009-05-10T02:32:50.831Z\",\n    \"archived_by\": \"ut et qui\"\n  },\n  \"workspaces\": [\n    \"eiusmod labore cillum ad\",\n    \"voluptate et a\"\n  ],\n  \"members\": [\n    \"fugiat dolore eu adipisicing cillum\",\n    \"Excepteur veniam\"\n  ]\n}"}],"_postman_id":"d4ae56bc-8d11-4805-b0ad-f3d1da2009b8"},{"name":"Count Groups","id":"51d595a6-05e5-438c-9e48-778d7f70c6b1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//groups/count?archived=<boolean>","urlObject":{"path":["groups","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"a1c2f64f-3e95-45f6-80b3-f8b4aead0869","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//groups/count?archived=<boolean>","host":["/"],"path":["groups","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"51d595a6-05e5-438c-9e48-778d7f70c6b1"},{"name":"Search Groups","id":"f6bb08d5-ac96-4409-9a58-b877f87eeed8","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//groups/search","urlObject":{"path":["groups","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"ba406780-a1fd-44dc-9a95-41bbaeaa2d58","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//groups/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"quis dolore sed\",\n    \"description\": \"Ut enim eu\",\n    \"updated_on\": \"1979-06-21T06:45:06.793Z\",\n    \"updated_by\": \"labore Excepteur ullamco aliquip\",\n    \"created_on\": \"1959-10-01T03:32:57.274Z\",\n    \"created_by\": \"laboris esse\",\n    \"archived\": false,\n    \"archived_on\": \"1942-08-20T16:48:43.370Z\",\n    \"archived_by\": \"anim aute\",\n    \"organization\": {\n      \"name\": \"laboris Excepteur\",\n      \"slug\": \"reprehenderit\",\n      \"logo\": \"mollit ex laborum deserunt\",\n      \"color\": \"quis labore\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"Lorem Duis\",\n      \"ad_spend_tracker_url\": \"cillum\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"dolore Lorem ex Excepteur\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"ut laborum esse\",\n      \"updated_on\": \"1960-09-24T16:39:23.362Z\",\n      \"updated_by\": \"ut officia reprehenderit do\",\n      \"created_on\": \"1945-05-19T20:31:28.176Z\",\n      \"created_by\": \"culp\",\n      \"archived\": false,\n      \"archived_on\": \"2007-09-11T11:37:25.578Z\",\n      \"archived_by\": \"do veniam\"\n    },\n    \"workspaces\": [\n      \"velit veniam\",\n      \"dolore proident voluptate non\"\n    ],\n    \"members\": [\n      \"enim est pariatur\",\n      \"amet sit\"\n    ]\n  },\n  {\n    \"name\": \"elit \",\n    \"description\": \"eiusmod\",\n    \"updated_on\": \"1980-12-02T20:25:06.899Z\",\n    \"updated_by\": \"eu in\",\n    \"created_on\": \"2011-09-06T02:26:30.941Z\",\n    \"created_by\": \"dolore anim do consectetur Duis\",\n    \"archived\": false,\n    \"archived_on\": \"2018-09-18T09:39:33.454Z\",\n    \"archived_by\": \"tempor dolore sit\",\n    \"organization\": {\n      \"name\": \"ea\",\n      \"slug\": \"exercitation mollit cillum\",\n      \"logo\": \"mollit fugiat sunt est do\",\n      \"color\": \"ut occaecat\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"sed aliq\",\n      \"ad_spend_tracker_url\": \"laboris velit culpa\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"sit\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"laboris do dolor aliquip\",\n      \"updated_on\": \"2008-06-25T04:32:46.384Z\",\n      \"updated_by\": \"elit et\",\n      \"created_on\": \"1944-10-07T10:02:00.167Z\",\n      \"created_by\": \"in do\",\n      \"archived\": false,\n      \"archived_on\": \"1970-12-04T19:04:49.312Z\",\n      \"archived_by\": \"laborum\"\n    },\n    \"workspaces\": [\n      \"ea sed magna\",\n      \"nostrud magna\"\n    ],\n    \"members\": [\n      \"amet laborum ut eiusmod\",\n      \"anim tempor fugiat Excepteur\"\n    ]\n  }\n]"}],"_postman_id":"f6bb08d5-ac96-4409-9a58-b877f87eeed8"},{"name":"Find One Group","id":"9fcd5e4d-b617-46fd-bb5c-6454f3269780","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//groups/:id?archived=<boolean>","urlObject":{"path":["groups",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"69da1188-e5c1-43d2-a601-08aa0bc1022a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"90634e16-56be-451f-9310-490490f569a4","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//groups/:id?archived=<boolean>","host":["/"],"path":["groups",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"reprehenderit occaecat exercitation\",\n  \"description\": \"dolore ut laborum\",\n  \"updated_on\": \"1966-05-27T19:15:36.558Z\",\n  \"updated_by\": \"ad consectetur Excepteur\",\n  \"created_on\": \"2007-03-10T15:37:53.469Z\",\n  \"created_by\": \"eu minim Excepteur ea sit\",\n  \"archived\": true,\n  \"archived_on\": \"1962-05-14T05:38:34.243Z\",\n  \"archived_by\": \"pariatur\",\n  \"organization\": {\n    \"name\": \"magna Lorem\",\n    \"slug\": \"sit anim\",\n    \"logo\": \"ullamco Duis quis labore esse\",\n    \"color\": \"incididunt\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"anim qui culpa Lorem\",\n    \"ad_spend_tracker_url\": \"enim labore\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Ut ea dolor Duis\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"do\",\n    \"updated_on\": \"1977-07-31T08:24:55.360Z\",\n    \"updated_by\": \"magna do\",\n    \"created_on\": \"1999-08-22T05:56:35.546Z\",\n    \"created_by\": \"ullamco ea irure\",\n    \"archived\": true,\n    \"archived_on\": \"2009-05-10T02:32:50.831Z\",\n    \"archived_by\": \"ut et qui\"\n  },\n  \"workspaces\": [\n    \"eiusmod labore cillum ad\",\n    \"voluptate et a\"\n  ],\n  \"members\": [\n    \"fugiat dolore eu adipisicing cillum\",\n    \"Excepteur veniam\"\n  ]\n}"}],"_postman_id":"9fcd5e4d-b617-46fd-bb5c-6454f3269780"},{"name":"Replace Group","id":"096a1113-0120-42d4-82f5-f77063d24bf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//groups/:id","urlObject":{"path":["groups",":id"],"host":["/"],"query":[],"variable":[{"id":"b3a5b90f-2d7b-4ddd-822d-ed4499b0093f","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"db5986e0-dddf-4375-994b-231cbeeef9db","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//groups/:id","host":["/"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"reprehenderit occaecat exercitation\",\n  \"description\": \"dolore ut laborum\",\n  \"updated_on\": \"1966-05-27T19:15:36.558Z\",\n  \"updated_by\": \"ad consectetur Excepteur\",\n  \"created_on\": \"2007-03-10T15:37:53.469Z\",\n  \"created_by\": \"eu minim Excepteur ea sit\",\n  \"archived\": true,\n  \"archived_on\": \"1962-05-14T05:38:34.243Z\",\n  \"archived_by\": \"pariatur\",\n  \"organization\": {\n    \"name\": \"magna Lorem\",\n    \"slug\": \"sit anim\",\n    \"logo\": \"ullamco Duis quis labore esse\",\n    \"color\": \"incididunt\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"anim qui culpa Lorem\",\n    \"ad_spend_tracker_url\": \"enim labore\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Ut ea dolor Duis\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"do\",\n    \"updated_on\": \"1977-07-31T08:24:55.360Z\",\n    \"updated_by\": \"magna do\",\n    \"created_on\": \"1999-08-22T05:56:35.546Z\",\n    \"created_by\": \"ullamco ea irure\",\n    \"archived\": true,\n    \"archived_on\": \"2009-05-10T02:32:50.831Z\",\n    \"archived_by\": \"ut et qui\"\n  },\n  \"workspaces\": [\n    \"eiusmod labore cillum ad\",\n    \"voluptate et a\"\n  ],\n  \"members\": [\n    \"fugiat dolore eu adipisicing cillum\",\n    \"Excepteur veniam\"\n  ]\n}"}],"_postman_id":"096a1113-0120-42d4-82f5-f77063d24bf7"},{"name":"Update Group","id":"9806d7a1-f955-405e-b909-94e109cc3737","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//groups/:id","urlObject":{"path":["groups",":id"],"host":["/"],"query":[],"variable":[{"id":"03b90b78-c7e4-4478-a79d-499eac9c3e7a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"9c58b477-a29c-4762-96ac-4f94d04b3c1d","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//groups/:id","host":["/"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"reprehenderit occaecat exercitation\",\n  \"description\": \"dolore ut laborum\",\n  \"updated_on\": \"1966-05-27T19:15:36.558Z\",\n  \"updated_by\": \"ad consectetur Excepteur\",\n  \"created_on\": \"2007-03-10T15:37:53.469Z\",\n  \"created_by\": \"eu minim Excepteur ea sit\",\n  \"archived\": true,\n  \"archived_on\": \"1962-05-14T05:38:34.243Z\",\n  \"archived_by\": \"pariatur\",\n  \"organization\": {\n    \"name\": \"magna Lorem\",\n    \"slug\": \"sit anim\",\n    \"logo\": \"ullamco Duis quis labore esse\",\n    \"color\": \"incididunt\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"anim qui culpa Lorem\",\n    \"ad_spend_tracker_url\": \"enim labore\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Ut ea dolor Duis\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"do\",\n    \"updated_on\": \"1977-07-31T08:24:55.360Z\",\n    \"updated_by\": \"magna do\",\n    \"created_on\": \"1999-08-22T05:56:35.546Z\",\n    \"created_by\": \"ullamco ea irure\",\n    \"archived\": true,\n    \"archived_on\": \"2009-05-10T02:32:50.831Z\",\n    \"archived_by\": \"ut et qui\"\n  },\n  \"workspaces\": [\n    \"eiusmod labore cillum ad\",\n    \"voluptate et a\"\n  ],\n  \"members\": [\n    \"fugiat dolore eu adipisicing cillum\",\n    \"Excepteur veniam\"\n  ]\n}"}],"_postman_id":"9806d7a1-f955-405e-b909-94e109cc3737"},{"name":"Archive Group","id":"d43dcea0-1b4a-4607-9c4d-f7af7c44133e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//groups/:id","urlObject":{"path":["groups",":id"],"host":["/"],"query":[],"variable":[{"id":"c6661798-1e7b-4298-a817-d8b68ffb92dc","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"e103fb93-7af9-41f0-b605-4b36588ab9e1","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//groups/:id","host":["/"],"path":["groups",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"reprehenderit occaecat exercitation\",\n  \"description\": \"dolore ut laborum\",\n  \"updated_on\": \"1966-05-27T19:15:36.558Z\",\n  \"updated_by\": \"ad consectetur Excepteur\",\n  \"created_on\": \"2007-03-10T15:37:53.469Z\",\n  \"created_by\": \"eu minim Excepteur ea sit\",\n  \"archived\": true,\n  \"archived_on\": \"1962-05-14T05:38:34.243Z\",\n  \"archived_by\": \"pariatur\",\n  \"organization\": {\n    \"name\": \"magna Lorem\",\n    \"slug\": \"sit anim\",\n    \"logo\": \"ullamco Duis quis labore esse\",\n    \"color\": \"incididunt\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"anim qui culpa Lorem\",\n    \"ad_spend_tracker_url\": \"enim labore\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Ut ea dolor Duis\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"do\",\n    \"updated_on\": \"1977-07-31T08:24:55.360Z\",\n    \"updated_by\": \"magna do\",\n    \"created_on\": \"1999-08-22T05:56:35.546Z\",\n    \"created_by\": \"ullamco ea irure\",\n    \"archived\": true,\n    \"archived_on\": \"2009-05-10T02:32:50.831Z\",\n    \"archived_by\": \"ut et qui\"\n  },\n  \"workspaces\": [\n    \"eiusmod labore cillum ad\",\n    \"voluptate et a\"\n  ],\n  \"members\": [\n    \"fugiat dolore eu adipisicing cillum\",\n    \"Excepteur veniam\"\n  ]\n}"}],"_postman_id":"d43dcea0-1b4a-4607-9c4d-f7af7c44133e"},{"name":"Unarchive Group","id":"5bbab877-b66a-412a-b213-545c7f2187c9","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//groups/:id/unarchive","urlObject":{"path":["groups",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"a436e135-d42a-4751-9300-5129efb517e5","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a65305cd-1d51-4fb8-b189-bdd8d250ce1a","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//groups/:id/unarchive","host":["/"],"path":["groups",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"reprehenderit occaecat exercitation\",\n  \"description\": \"dolore ut laborum\",\n  \"updated_on\": \"1966-05-27T19:15:36.558Z\",\n  \"updated_by\": \"ad consectetur Excepteur\",\n  \"created_on\": \"2007-03-10T15:37:53.469Z\",\n  \"created_by\": \"eu minim Excepteur ea sit\",\n  \"archived\": true,\n  \"archived_on\": \"1962-05-14T05:38:34.243Z\",\n  \"archived_by\": \"pariatur\",\n  \"organization\": {\n    \"name\": \"magna Lorem\",\n    \"slug\": \"sit anim\",\n    \"logo\": \"ullamco Duis quis labore esse\",\n    \"color\": \"incididunt\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"anim qui culpa Lorem\",\n    \"ad_spend_tracker_url\": \"enim labore\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Ut ea dolor Duis\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"do\",\n    \"updated_on\": \"1977-07-31T08:24:55.360Z\",\n    \"updated_by\": \"magna do\",\n    \"created_on\": \"1999-08-22T05:56:35.546Z\",\n    \"created_by\": \"ullamco ea irure\",\n    \"archived\": true,\n    \"archived_on\": \"2009-05-10T02:32:50.831Z\",\n    \"archived_by\": \"ut et qui\"\n  },\n  \"workspaces\": [\n    \"eiusmod labore cillum ad\",\n    \"voluptate et a\"\n  ],\n  \"members\": [\n    \"fugiat dolore eu adipisicing cillum\",\n    \"Excepteur veniam\"\n  ]\n}"}],"_postman_id":"5bbab877-b66a-412a-b213-545c7f2187c9"},{"name":"Delete Group","id":"8f901522-ba92-49f6-8bdc-1a0592496e29","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//groups/:id/delete","urlObject":{"path":["groups",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"2ff0af51-8bc8-492f-ad77-1ec3edcbaabb","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"7f1eb054-22df-4435-a430-aa6ecd17956f","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//groups/:id/delete","host":["/"],"path":["groups",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"reprehenderit occaecat exercitation\",\n  \"description\": \"dolore ut laborum\",\n  \"updated_on\": \"1966-05-27T19:15:36.558Z\",\n  \"updated_by\": \"ad consectetur Excepteur\",\n  \"created_on\": \"2007-03-10T15:37:53.469Z\",\n  \"created_by\": \"eu minim Excepteur ea sit\",\n  \"archived\": true,\n  \"archived_on\": \"1962-05-14T05:38:34.243Z\",\n  \"archived_by\": \"pariatur\",\n  \"organization\": {\n    \"name\": \"magna Lorem\",\n    \"slug\": \"sit anim\",\n    \"logo\": \"ullamco Duis quis labore esse\",\n    \"color\": \"incididunt\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"anim qui culpa Lorem\",\n    \"ad_spend_tracker_url\": \"enim labore\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Ut ea dolor Duis\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"do\",\n    \"updated_on\": \"1977-07-31T08:24:55.360Z\",\n    \"updated_by\": \"magna do\",\n    \"created_on\": \"1999-08-22T05:56:35.546Z\",\n    \"created_by\": \"ullamco ea irure\",\n    \"archived\": true,\n    \"archived_on\": \"2009-05-10T02:32:50.831Z\",\n    \"archived_by\": \"ut et qui\"\n  },\n  \"workspaces\": [\n    \"eiusmod labore cillum ad\",\n    \"voluptate et a\"\n  ],\n  \"members\": [\n    \"fugiat dolore eu adipisicing cillum\",\n    \"Excepteur veniam\"\n  ]\n}"}],"_postman_id":"8f901522-ba92-49f6-8bdc-1a0592496e29"}],"id":"2fe4f164-1363-4cc9-9f56-2818ad6627be","description":"<p>Groups provide a way to organize users in ways that make sense. These groups can make it easier to share certain items within the system. </p>\n","_postman_id":"2fe4f164-1363-4cc9-9f56-2818ad6627be"},{"name":"Notifications","item":[{"name":"Find All Notifications","id":"5d8e7374-589d-4212-b7ad-01f9104464f2","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//notifications?archived=<boolean>","urlObject":{"path":["notifications"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"32b29fd7-fb6b-4795-803f-0af1106ca186","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//notifications?archived=<boolean>","host":["/"],"path":["notifications"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"type\": \"pariatur\",\n    \"body\": \"mollit dolor\",\n    \"url\": \"laboris Except\",\n    \"updated_on\": \"1951-09-12T18:51:41.561Z\",\n    \"updated_by\": \"labore eu reprehenderit fugiat\",\n    \"created_on\": \"1980-05-23T09:59:12.167Z\",\n    \"created_by\": \"dolor quis ea culpa\",\n    \"archived\": true,\n    \"archived_on\": \"2012-08-15T15:06:37.193Z\",\n    \"archived_by\": \"occaecat\",\n    \"organization\": {\n      \"name\": \"ut officia de\",\n      \"slug\": \"ut\",\n      \"logo\": \"quis adipisicing esse eu\",\n      \"color\": \"esse reprehenderit nostrud minim\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"esse in sit\",\n      \"ad_spend_tracker_url\": \"ipsum proident dolor nulla\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"labo\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"sunt amet Lorem\",\n      \"updated_on\": \"2006-10-25T03:00:50.599Z\",\n      \"updated_by\": \"reprehenderit fugiat v\",\n      \"created_on\": \"1956-08-01T11:22:18.609Z\",\n      \"created_by\": \"incididunt reprehenderit velit\",\n      \"archived\": false,\n      \"archived_on\": \"2019-10-12T10:49:52.136Z\",\n      \"archived_by\": \"in magna dolore Duis non\"\n    },\n    \"workspaces\": [\n      \"mollit cillum Lorem\",\n      \"mollit elit consectetur\"\n    ]\n  },\n  {\n    \"type\": \"non\",\n    \"body\": \"sit quis culpa aliqua Ut\",\n    \"url\": \"nostrud ipsum ad\",\n    \"updated_on\": \"1996-06-09T12:51:06.422Z\",\n    \"updated_by\": \"quis ut ad\",\n    \"created_on\": \"1972-03-11T02:44:01.261Z\",\n    \"created_by\": \"sint irure\",\n    \"archived\": true,\n    \"archived_on\": \"1990-03-18T18:28:04.110Z\",\n    \"archived_by\": \"quis\",\n    \"organization\": {\n      \"name\": \"qui laborum aliqua ullamco magna\",\n      \"slug\": \"sed sint veniam\",\n      \"logo\": \"adipisicing elit esse\",\n      \"color\": \"occaecat ea\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"dolore reprehenderit eu ad magna\",\n      \"ad_spend_tracker_url\": \"dolor\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"aliqua dolor veniam sed consequat\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"Duis veniam voluptate aute\",\n      \"updated_on\": \"1994-03-10T19:43:22.335Z\",\n      \"updated_by\": \"deserunt commodo\",\n      \"created_on\": \"1980-08-01T03:31:29.231Z\",\n      \"created_by\": \"ullamco\",\n      \"archived\": true,\n      \"archived_on\": \"1957-08-11T05:53:34.324Z\",\n      \"archived_by\": \"dolor sint aliqua exercitation\"\n    },\n    \"workspaces\": [\n      \"eius\",\n      \"adipisicing sed dolor\"\n    ]\n  }\n]"}],"_postman_id":"5d8e7374-589d-4212-b7ad-01f9104464f2"},{"name":"Create Notification","id":"713730e8-db3b-465d-9c6a-cd7ed922834a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"body\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//notifications","urlObject":{"path":["notifications"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"38bf2a32-9683-4387-97e3-7706a9e3b560","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"body\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//notifications"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"do labore\",\n  \"body\": \"est commodo\",\n  \"url\": \"laboris ad Duis irure\",\n  \"updated_on\": \"1975-05-22T02:00:38.066Z\",\n  \"updated_by\": \"consequat voluptate\",\n  \"created_on\": \"1998-06-24T00:56:06.405Z\",\n  \"created_by\": \"ex dolor\",\n  \"archived\": false,\n  \"archived_on\": \"1951-02-04T16:34:41.051Z\",\n  \"archived_by\": \"mo\",\n  \"organization\": {\n    \"name\": \"Duis occaecat in adipisicing dolor\",\n    \"slug\": \"dolore \",\n    \"logo\": \"elit consequat\",\n    \"color\": \"cillum sit dolor ipsum\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"culpa ad do non\",\n    \"ad_spend_tracker_url\": \"sint ipsum \",\n    \"slack_enabled\": false,\n    \"slack_url\": \"officia nisi\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit ea in sunt\",\n    \"updated_on\": \"1956-03-02T15:28:21.261Z\",\n    \"updated_by\": \"pariatur nisi eiusmod commodo\",\n    \"created_on\": \"2002-09-25T11:47:14.374Z\",\n    \"created_by\": \"proident cupidatat incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"1980-10-05T00:35:00.614Z\",\n    \"archived_by\": \"in u\"\n  },\n  \"workspaces\": [\n    \"reprehenderit qui Duis\",\n    \"aliqua quis anim\"\n  ]\n}"}],"_postman_id":"713730e8-db3b-465d-9c6a-cd7ed922834a"},{"name":"Count Notifications","id":"895c53c6-3ed5-4c9e-8ed6-c2339beec181","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//notifications/count?archived=<boolean>","urlObject":{"path":["notifications","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"8d2d616c-e7c9-4e54-a12d-61e292d08b17","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//notifications/count?archived=<boolean>","host":["/"],"path":["notifications","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"895c53c6-3ed5-4c9e-8ed6-c2339beec181"},{"name":"Search Notifications","id":"970999eb-e9bb-4d3e-a9e1-6bd7e6dfc50a","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//notifications/search","urlObject":{"path":["notifications","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"5c08fd34-9f58-42f1-9bcb-e574cebaf0e3","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//notifications/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"type\": \"pariatur\",\n    \"body\": \"mollit dolor\",\n    \"url\": \"laboris Except\",\n    \"updated_on\": \"1951-09-12T18:51:41.561Z\",\n    \"updated_by\": \"labore eu reprehenderit fugiat\",\n    \"created_on\": \"1980-05-23T09:59:12.167Z\",\n    \"created_by\": \"dolor quis ea culpa\",\n    \"archived\": true,\n    \"archived_on\": \"2012-08-15T15:06:37.193Z\",\n    \"archived_by\": \"occaecat\",\n    \"organization\": {\n      \"name\": \"ut officia de\",\n      \"slug\": \"ut\",\n      \"logo\": \"quis adipisicing esse eu\",\n      \"color\": \"esse reprehenderit nostrud minim\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"esse in sit\",\n      \"ad_spend_tracker_url\": \"ipsum proident dolor nulla\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"labo\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"sunt amet Lorem\",\n      \"updated_on\": \"2006-10-25T03:00:50.599Z\",\n      \"updated_by\": \"reprehenderit fugiat v\",\n      \"created_on\": \"1956-08-01T11:22:18.609Z\",\n      \"created_by\": \"incididunt reprehenderit velit\",\n      \"archived\": false,\n      \"archived_on\": \"2019-10-12T10:49:52.136Z\",\n      \"archived_by\": \"in magna dolore Duis non\"\n    },\n    \"workspaces\": [\n      \"mollit cillum Lorem\",\n      \"mollit elit consectetur\"\n    ]\n  },\n  {\n    \"type\": \"non\",\n    \"body\": \"sit quis culpa aliqua Ut\",\n    \"url\": \"nostrud ipsum ad\",\n    \"updated_on\": \"1996-06-09T12:51:06.422Z\",\n    \"updated_by\": \"quis ut ad\",\n    \"created_on\": \"1972-03-11T02:44:01.261Z\",\n    \"created_by\": \"sint irure\",\n    \"archived\": true,\n    \"archived_on\": \"1990-03-18T18:28:04.110Z\",\n    \"archived_by\": \"quis\",\n    \"organization\": {\n      \"name\": \"qui laborum aliqua ullamco magna\",\n      \"slug\": \"sed sint veniam\",\n      \"logo\": \"adipisicing elit esse\",\n      \"color\": \"occaecat ea\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"dolore reprehenderit eu ad magna\",\n      \"ad_spend_tracker_url\": \"dolor\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"aliqua dolor veniam sed consequat\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"Duis veniam voluptate aute\",\n      \"updated_on\": \"1994-03-10T19:43:22.335Z\",\n      \"updated_by\": \"deserunt commodo\",\n      \"created_on\": \"1980-08-01T03:31:29.231Z\",\n      \"created_by\": \"ullamco\",\n      \"archived\": true,\n      \"archived_on\": \"1957-08-11T05:53:34.324Z\",\n      \"archived_by\": \"dolor sint aliqua exercitation\"\n    },\n    \"workspaces\": [\n      \"eius\",\n      \"adipisicing sed dolor\"\n    ]\n  }\n]"}],"_postman_id":"970999eb-e9bb-4d3e-a9e1-6bd7e6dfc50a"},{"name":"Find One Notification","id":"1512b04d-8d0d-4dbe-9f16-dfd76f67c31f","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//notifications/:id?archived=<boolean>","urlObject":{"path":["notifications",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"03ad0370-c130-40ff-9960-d4c938ff6952","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"fb936ed5-609e-462c-b5e8-a87ec2b48a78","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//notifications/:id?archived=<boolean>","host":["/"],"path":["notifications",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"do labore\",\n  \"body\": \"est commodo\",\n  \"url\": \"laboris ad Duis irure\",\n  \"updated_on\": \"1975-05-22T02:00:38.066Z\",\n  \"updated_by\": \"consequat voluptate\",\n  \"created_on\": \"1998-06-24T00:56:06.405Z\",\n  \"created_by\": \"ex dolor\",\n  \"archived\": false,\n  \"archived_on\": \"1951-02-04T16:34:41.051Z\",\n  \"archived_by\": \"mo\",\n  \"organization\": {\n    \"name\": \"Duis occaecat in adipisicing dolor\",\n    \"slug\": \"dolore \",\n    \"logo\": \"elit consequat\",\n    \"color\": \"cillum sit dolor ipsum\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"culpa ad do non\",\n    \"ad_spend_tracker_url\": \"sint ipsum \",\n    \"slack_enabled\": false,\n    \"slack_url\": \"officia nisi\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit ea in sunt\",\n    \"updated_on\": \"1956-03-02T15:28:21.261Z\",\n    \"updated_by\": \"pariatur nisi eiusmod commodo\",\n    \"created_on\": \"2002-09-25T11:47:14.374Z\",\n    \"created_by\": \"proident cupidatat incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"1980-10-05T00:35:00.614Z\",\n    \"archived_by\": \"in u\"\n  },\n  \"workspaces\": [\n    \"reprehenderit qui Duis\",\n    \"aliqua quis anim\"\n  ]\n}"}],"_postman_id":"1512b04d-8d0d-4dbe-9f16-dfd76f67c31f"},{"name":"Replace Notification","id":"cf5b2b6b-33ea-486d-abe3-f9d3a5245b24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"body\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//notifications/:id","urlObject":{"path":["notifications",":id"],"host":["/"],"query":[],"variable":[{"id":"b915ab5e-ce60-4c62-ada0-9e075011904e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"aa30ef71-6ae4-45b5-a31f-b93674d8eadb","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"body\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//notifications/:id","host":["/"],"path":["notifications",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"do labore\",\n  \"body\": \"est commodo\",\n  \"url\": \"laboris ad Duis irure\",\n  \"updated_on\": \"1975-05-22T02:00:38.066Z\",\n  \"updated_by\": \"consequat voluptate\",\n  \"created_on\": \"1998-06-24T00:56:06.405Z\",\n  \"created_by\": \"ex dolor\",\n  \"archived\": false,\n  \"archived_on\": \"1951-02-04T16:34:41.051Z\",\n  \"archived_by\": \"mo\",\n  \"organization\": {\n    \"name\": \"Duis occaecat in adipisicing dolor\",\n    \"slug\": \"dolore \",\n    \"logo\": \"elit consequat\",\n    \"color\": \"cillum sit dolor ipsum\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"culpa ad do non\",\n    \"ad_spend_tracker_url\": \"sint ipsum \",\n    \"slack_enabled\": false,\n    \"slack_url\": \"officia nisi\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit ea in sunt\",\n    \"updated_on\": \"1956-03-02T15:28:21.261Z\",\n    \"updated_by\": \"pariatur nisi eiusmod commodo\",\n    \"created_on\": \"2002-09-25T11:47:14.374Z\",\n    \"created_by\": \"proident cupidatat incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"1980-10-05T00:35:00.614Z\",\n    \"archived_by\": \"in u\"\n  },\n  \"workspaces\": [\n    \"reprehenderit qui Duis\",\n    \"aliqua quis anim\"\n  ]\n}"}],"_postman_id":"cf5b2b6b-33ea-486d-abe3-f9d3a5245b24"},{"name":"Update Notification","id":"307e541e-a029-48da-9a5d-d2537144c53a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"body\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//notifications/:id","urlObject":{"path":["notifications",":id"],"host":["/"],"query":[],"variable":[{"id":"fd0a737e-4065-4493-a780-c088dd9e3dde","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a4555835-19b3-4cbd-a19b-aa3293f3fdb7","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"body\": \"<string>\",\n  \"url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//notifications/:id","host":["/"],"path":["notifications",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"do labore\",\n  \"body\": \"est commodo\",\n  \"url\": \"laboris ad Duis irure\",\n  \"updated_on\": \"1975-05-22T02:00:38.066Z\",\n  \"updated_by\": \"consequat voluptate\",\n  \"created_on\": \"1998-06-24T00:56:06.405Z\",\n  \"created_by\": \"ex dolor\",\n  \"archived\": false,\n  \"archived_on\": \"1951-02-04T16:34:41.051Z\",\n  \"archived_by\": \"mo\",\n  \"organization\": {\n    \"name\": \"Duis occaecat in adipisicing dolor\",\n    \"slug\": \"dolore \",\n    \"logo\": \"elit consequat\",\n    \"color\": \"cillum sit dolor ipsum\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"culpa ad do non\",\n    \"ad_spend_tracker_url\": \"sint ipsum \",\n    \"slack_enabled\": false,\n    \"slack_url\": \"officia nisi\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit ea in sunt\",\n    \"updated_on\": \"1956-03-02T15:28:21.261Z\",\n    \"updated_by\": \"pariatur nisi eiusmod commodo\",\n    \"created_on\": \"2002-09-25T11:47:14.374Z\",\n    \"created_by\": \"proident cupidatat incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"1980-10-05T00:35:00.614Z\",\n    \"archived_by\": \"in u\"\n  },\n  \"workspaces\": [\n    \"reprehenderit qui Duis\",\n    \"aliqua quis anim\"\n  ]\n}"}],"_postman_id":"307e541e-a029-48da-9a5d-d2537144c53a"},{"name":"Archive Notification","id":"77a4107d-48eb-46be-a215-4e01131c98b1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//notifications/:id","urlObject":{"path":["notifications",":id"],"host":["/"],"query":[],"variable":[{"id":"1af08c6b-3c54-42f0-bf4d-6ff05e9ffea8","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"0242656e-36c6-4509-afc9-caa76afd75b7","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//notifications/:id","host":["/"],"path":["notifications",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"do labore\",\n  \"body\": \"est commodo\",\n  \"url\": \"laboris ad Duis irure\",\n  \"updated_on\": \"1975-05-22T02:00:38.066Z\",\n  \"updated_by\": \"consequat voluptate\",\n  \"created_on\": \"1998-06-24T00:56:06.405Z\",\n  \"created_by\": \"ex dolor\",\n  \"archived\": false,\n  \"archived_on\": \"1951-02-04T16:34:41.051Z\",\n  \"archived_by\": \"mo\",\n  \"organization\": {\n    \"name\": \"Duis occaecat in adipisicing dolor\",\n    \"slug\": \"dolore \",\n    \"logo\": \"elit consequat\",\n    \"color\": \"cillum sit dolor ipsum\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"culpa ad do non\",\n    \"ad_spend_tracker_url\": \"sint ipsum \",\n    \"slack_enabled\": false,\n    \"slack_url\": \"officia nisi\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit ea in sunt\",\n    \"updated_on\": \"1956-03-02T15:28:21.261Z\",\n    \"updated_by\": \"pariatur nisi eiusmod commodo\",\n    \"created_on\": \"2002-09-25T11:47:14.374Z\",\n    \"created_by\": \"proident cupidatat incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"1980-10-05T00:35:00.614Z\",\n    \"archived_by\": \"in u\"\n  },\n  \"workspaces\": [\n    \"reprehenderit qui Duis\",\n    \"aliqua quis anim\"\n  ]\n}"}],"_postman_id":"77a4107d-48eb-46be-a215-4e01131c98b1"},{"name":"Unarchive Notification","id":"c12a7d13-cb4f-4e8b-b43a-dd95080ffbd4","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//notifications/:id/unarchive","urlObject":{"path":["notifications",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"f75b05d5-7ae1-4b9e-bd8a-2202a19a0f9a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d34a8570-03a3-479e-bceb-64fc8443c372","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//notifications/:id/unarchive","host":["/"],"path":["notifications",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"do labore\",\n  \"body\": \"est commodo\",\n  \"url\": \"laboris ad Duis irure\",\n  \"updated_on\": \"1975-05-22T02:00:38.066Z\",\n  \"updated_by\": \"consequat voluptate\",\n  \"created_on\": \"1998-06-24T00:56:06.405Z\",\n  \"created_by\": \"ex dolor\",\n  \"archived\": false,\n  \"archived_on\": \"1951-02-04T16:34:41.051Z\",\n  \"archived_by\": \"mo\",\n  \"organization\": {\n    \"name\": \"Duis occaecat in adipisicing dolor\",\n    \"slug\": \"dolore \",\n    \"logo\": \"elit consequat\",\n    \"color\": \"cillum sit dolor ipsum\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"culpa ad do non\",\n    \"ad_spend_tracker_url\": \"sint ipsum \",\n    \"slack_enabled\": false,\n    \"slack_url\": \"officia nisi\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit ea in sunt\",\n    \"updated_on\": \"1956-03-02T15:28:21.261Z\",\n    \"updated_by\": \"pariatur nisi eiusmod commodo\",\n    \"created_on\": \"2002-09-25T11:47:14.374Z\",\n    \"created_by\": \"proident cupidatat incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"1980-10-05T00:35:00.614Z\",\n    \"archived_by\": \"in u\"\n  },\n  \"workspaces\": [\n    \"reprehenderit qui Duis\",\n    \"aliqua quis anim\"\n  ]\n}"}],"_postman_id":"c12a7d13-cb4f-4e8b-b43a-dd95080ffbd4"},{"name":"Delete Notification","id":"5ba65df0-cc92-4ca2-bc1f-48267277a35c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//notifications/:id/delete","urlObject":{"path":["notifications",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"3a0ca853-c934-4a77-9952-78856ac28f03","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4a7b8cc8-9e84-4a16-8cca-cfc82c5ccac9","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//notifications/:id/delete","host":["/"],"path":["notifications",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"type\": \"do labore\",\n  \"body\": \"est commodo\",\n  \"url\": \"laboris ad Duis irure\",\n  \"updated_on\": \"1975-05-22T02:00:38.066Z\",\n  \"updated_by\": \"consequat voluptate\",\n  \"created_on\": \"1998-06-24T00:56:06.405Z\",\n  \"created_by\": \"ex dolor\",\n  \"archived\": false,\n  \"archived_on\": \"1951-02-04T16:34:41.051Z\",\n  \"archived_by\": \"mo\",\n  \"organization\": {\n    \"name\": \"Duis occaecat in adipisicing dolor\",\n    \"slug\": \"dolore \",\n    \"logo\": \"elit consequat\",\n    \"color\": \"cillum sit dolor ipsum\",\n    \"active\": false,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"culpa ad do non\",\n    \"ad_spend_tracker_url\": \"sint ipsum \",\n    \"slack_enabled\": false,\n    \"slack_url\": \"officia nisi\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"sit ea in sunt\",\n    \"updated_on\": \"1956-03-02T15:28:21.261Z\",\n    \"updated_by\": \"pariatur nisi eiusmod commodo\",\n    \"created_on\": \"2002-09-25T11:47:14.374Z\",\n    \"created_by\": \"proident cupidatat incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"1980-10-05T00:35:00.614Z\",\n    \"archived_by\": \"in u\"\n  },\n  \"workspaces\": [\n    \"reprehenderit qui Duis\",\n    \"aliqua quis anim\"\n  ]\n}"}],"_postman_id":"5ba65df0-cc92-4ca2-bc1f-48267277a35c"}],"id":"5afd6290-2d9f-45f5-84fe-dd083280380c","description":"<p>Notifications are a way for the AIAD Platform to provide users with pertinent information in real time. When certain events such as being invited to a resource occur, you will receive a notification either within the Platform interface or via email. </p>\n","_postman_id":"5afd6290-2d9f-45f5-84fe-dd083280380c"},{"name":"Organizations","item":[{"name":"Find All Organizations","id":"a38d027b-ffc0-4857-a6e2-9b599a50e172","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//organizations","urlObject":{"path":["organizations"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"0a6f2fb2-5e2b-4a98-860d-f84da4034bbc","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//organizations"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a38d027b-ffc0-4857-a6e2-9b599a50e172"},{"name":"Create Organization","id":"86d32781-ffc2-4c45-b06d-f4dc1f137bc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\",\n  \"active\": \"<boolean>\",\n  \"enable_workspaces\": \"<boolean>\",\n  \"onboarding_url\": \"<string>\",\n  \"ad_spend_tracker_url\": \"<string>\",\n  \"slack_enabled\": \"<boolean>\",\n  \"slack_url\": \"<string>\",\n  \"teams_enabled\": \"<boolean>\",\n  \"teams_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//organizations","urlObject":{"path":["organizations"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"50efbbce-d742-4ab0-9237-a245517624b0","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\",\n  \"active\": \"<boolean>\",\n  \"enable_workspaces\": \"<boolean>\",\n  \"onboarding_url\": \"<string>\",\n  \"ad_spend_tracker_url\": \"<string>\",\n  \"slack_enabled\": \"<boolean>\",\n  \"slack_url\": \"<string>\",\n  \"teams_enabled\": \"<boolean>\",\n  \"teams_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//organizations"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"86d32781-ffc2-4c45-b06d-f4dc1f137bc4"},{"name":"Count Organizations","id":"e55dc38b-e134-4608-994c-db0815485f65","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//organizations/count","urlObject":{"path":["organizations","count"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"9bc118fc-b7b7-4512-a980-a4cbecf88522","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//organizations/count"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e55dc38b-e134-4608-994c-db0815485f65"},{"name":"Find One Organization","id":"c2a2a7c4-a32d-4027-8af1-050a769ca381","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//organizations/:id","urlObject":{"path":["organizations",":id"],"host":["/"],"query":[],"variable":[{"id":"c03a4caa-c2ca-4a28-bcd0-fb5b41c05e87","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d8d87077-3f86-4f9a-b0d8-1b9f24425968","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//organizations/:id","host":["/"],"path":["organizations",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c2a2a7c4-a32d-4027-8af1-050a769ca381"},{"name":"Update Organization","id":"d081ac95-8f7e-4c49-8514-88db0eca8720","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\",\n  \"active\": \"<boolean>\",\n  \"enable_workspaces\": \"<boolean>\",\n  \"onboarding_url\": \"<string>\",\n  \"ad_spend_tracker_url\": \"<string>\",\n  \"slack_enabled\": \"<boolean>\",\n  \"slack_url\": \"<string>\",\n  \"teams_enabled\": \"<boolean>\",\n  \"teams_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//organizations/:id","urlObject":{"path":["organizations",":id"],"host":["/"],"query":[],"variable":[{"id":"fa152465-061a-45ad-9144-0bb533479bd6","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"91d717f0-a83f-41ed-9c01-b73002206de6","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\",\n  \"active\": \"<boolean>\",\n  \"enable_workspaces\": \"<boolean>\",\n  \"onboarding_url\": \"<string>\",\n  \"ad_spend_tracker_url\": \"<string>\",\n  \"slack_enabled\": \"<boolean>\",\n  \"slack_url\": \"<string>\",\n  \"teams_enabled\": \"<boolean>\",\n  \"teams_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//organizations/:id","host":["/"],"path":["organizations",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d081ac95-8f7e-4c49-8514-88db0eca8720"},{"name":"Remove Organizations","id":"95a3aed6-a5a0-4a92-8c27-8fbfed6054fe","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//organizations/:id","urlObject":{"path":["organizations",":id"],"host":["/"],"query":[],"variable":[{"id":"17f938b3-c2b4-43f4-a2cf-54f22ffaeed3","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"df0d821f-4b01-4d44-93cf-3c88796da7f3","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//organizations/:id","host":["/"],"path":["organizations",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"95a3aed6-a5a0-4a92-8c27-8fbfed6054fe"},{"name":"Unarchive Organization","id":"a75eb3b6-cf4c-4855-90e8-b033306cd4a7","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//organizations/:id/unarchive","urlObject":{"path":["organizations",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"98f805b2-bc8d-44a7-93c2-fb1075d5c853","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ddb5c6ef-7327-4290-8774-95f05d230afc","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//organizations/:id/unarchive","host":["/"],"path":["organizations",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a75eb3b6-cf4c-4855-90e8-b033306cd4a7"}],"id":"773df06d-6f3f-478e-b1a7-8951351f807d","description":"<p>An Organization is the highest level within the Ai Ad Platform. Workspaces and all other entities exist within the context of an organization. </p>\n","_postman_id":"773df06d-6f3f-478e-b1a7-8951351f807d"},{"name":"Personas","item":[{"name":"Find All Personas","id":"f54bf490-d0e7-450a-9d31-a03a72a6b0a7","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//personas?archived=<boolean>","urlObject":{"path":["personas"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"e802b45a-449d-4fb1-8a9c-641bbfce4e0b","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//personas?archived=<boolean>","host":["/"],"path":["personas"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"minim ut\",\n    \"avatar\": \"in in\",\n    \"description\": \"non et p\",\n    \"attributes\": {},\n    \"narrative\": {},\n    \"updated_on\": \"1993-04-21T01:02:42.478Z\",\n    \"updated_by\": \"officia aliqua adipisicing do\",\n    \"created_on\": \"1988-02-05T23:55:47.102Z\",\n    \"created_by\": \"ex\",\n    \"archived\": false,\n    \"archived_on\": \"1955-09-18T05:21:42.048Z\",\n    \"archived_by\": \"dolor cillum consectetur\",\n    \"organization\": {\n      \"name\": \"veniam et anim fugiat enim\",\n      \"slug\": \"commodo sint labore dolore\",\n      \"logo\": \"non\",\n      \"color\": \"dolor\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"fugiat exercitation nostrud\",\n      \"ad_spend_tracker_url\": \"aliquip aliqua\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"nisi conse\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"commodo ut sit\",\n      \"updated_on\": \"2013-05-10T02:47:09.825Z\",\n      \"updated_by\": \"tempor dolor officia deserunt\",\n      \"created_on\": \"1957-05-15T00:05:53.167Z\",\n      \"created_by\": \"dolor nulla quis do deserunt\",\n      \"archived\": false,\n      \"archived_on\": \"2011-11-06T00:16:21.120Z\",\n      \"archived_by\": \"ex qui\"\n    },\n    \"workspaces\": [\n      \"exercitation elit eiusmod dolore\",\n      \"cillum\"\n    ]\n  },\n  {\n    \"name\": \"magna sit in\",\n    \"avatar\": \"est\",\n    \"description\": \"ut voluptate\",\n    \"attributes\": {},\n    \"narrative\": {},\n    \"updated_on\": \"1996-08-25T08:49:42.445Z\",\n    \"updated_by\": \"consequat Exce\",\n    \"created_on\": \"1985-09-16T16:32:05.724Z\",\n    \"created_by\": \"nulla irure\",\n    \"archived\": false,\n    \"archived_on\": \"2010-07-30T19:19:03.016Z\",\n    \"archived_by\": \"in aliqua minim ex eu\",\n    \"organization\": {\n      \"name\": \"nulla officia\",\n      \"slug\": \"ut eiusmod\",\n      \"logo\": \"anim labore\",\n      \"color\": \"enim ea\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"est\",\n      \"ad_spend_tracker_url\": \"ea\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"eiusmod deserunt eu\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"in off\",\n      \"updated_on\": \"2020-02-20T12:09:48.698Z\",\n      \"updated_by\": \"ex id velit\",\n      \"created_on\": \"1995-05-11T01:38:09.598Z\",\n      \"created_by\": \"occaecat laborum tempor enim\",\n      \"archived\": false,\n      \"archived_on\": \"1972-05-18T04:51:03.576Z\",\n      \"archived_by\": \"nostrud dolor et Ut\"\n    },\n    \"workspaces\": [\n      \"qui nostrud\",\n      \"cupidatat ut ad aliqua commodo\"\n    ]\n  }\n]"}],"_postman_id":"f54bf490-d0e7-450a-9d31-a03a72a6b0a7"},{"name":"Create Persona","id":"bab89e81-0120-4662-8e3c-f9bf8d57adae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"avatar\": \"<string>\",\n  \"description\": \"<string>\",\n  \"attributes\": \"<object>\",\n  \"narrative\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//personas","urlObject":{"path":["personas"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"a9548f7c-7038-4397-b94d-3d47f20c48db","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"avatar\": \"<string>\",\n  \"description\": \"<string>\",\n  \"attributes\": \"<object>\",\n  \"narrative\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//personas"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"ipsum minim consequat\",\n  \"avatar\": \"Duis ex nostrud\",\n  \"description\": \"consequat dolor cupidatat incididunt\",\n  \"attributes\": {},\n  \"narrative\": {},\n  \"updated_on\": \"1962-03-07T23:22:43.738Z\",\n  \"updated_by\": \"minim incididunt ut\",\n  \"created_on\": \"2010-01-25T14:39:00.966Z\",\n  \"created_by\": \"aute sed in Lorem\",\n  \"archived\": false,\n  \"archived_on\": \"2018-03-30T17:09:42.912Z\",\n  \"archived_by\": \"labore incididunt dolore\",\n  \"organization\": {\n    \"name\": \"sit ad labore reprehenderit aliquip\",\n    \"slug\": \"in irure\",\n    \"logo\": \"sed ex dolore\",\n    \"color\": \"ex qui\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"Excepteur anim mollit\",\n    \"ad_spend_tracker_url\": \"Lorem ipsum elit esse m\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur amet\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"irure sed\",\n    \"updated_on\": \"1953-04-28T05:22:44.055Z\",\n    \"updated_by\": \"aute elit ut\",\n    \"created_on\": \"1957-11-17T21:53:53.367Z\",\n    \"created_by\": \"do reprehenderit consectetur sit pariatur\",\n    \"archived\": false,\n    \"archived_on\": \"1942-07-04T09:44:22.736Z\",\n    \"archived_by\": \"dolore velit\"\n  },\n  \"workspaces\": [\n    \"ullamco ut\",\n    \"dolore ullamco mollit proident\"\n  ]\n}"}],"_postman_id":"bab89e81-0120-4662-8e3c-f9bf8d57adae"},{"name":"Count Personas","id":"1a603681-bc1d-4e3e-adc3-1fff171dc2d5","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//personas/count?archived=<boolean>","urlObject":{"path":["personas","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"bbe8aa7f-73fc-4b18-bdb9-e9a09a740e87","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//personas/count?archived=<boolean>","host":["/"],"path":["personas","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"1a603681-bc1d-4e3e-adc3-1fff171dc2d5"},{"name":"Search Personas","id":"e3b9a091-0696-4377-9fc0-0ba79c28778e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//personas/search","urlObject":{"path":["personas","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"79aebffa-7a87-4c44-9a1b-dac92b0aebd3","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//personas/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"minim ut\",\n    \"avatar\": \"in in\",\n    \"description\": \"non et p\",\n    \"attributes\": {},\n    \"narrative\": {},\n    \"updated_on\": \"1993-04-21T01:02:42.478Z\",\n    \"updated_by\": \"officia aliqua adipisicing do\",\n    \"created_on\": \"1988-02-05T23:55:47.102Z\",\n    \"created_by\": \"ex\",\n    \"archived\": false,\n    \"archived_on\": \"1955-09-18T05:21:42.048Z\",\n    \"archived_by\": \"dolor cillum consectetur\",\n    \"organization\": {\n      \"name\": \"veniam et anim fugiat enim\",\n      \"slug\": \"commodo sint labore dolore\",\n      \"logo\": \"non\",\n      \"color\": \"dolor\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"fugiat exercitation nostrud\",\n      \"ad_spend_tracker_url\": \"aliquip aliqua\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"nisi conse\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"commodo ut sit\",\n      \"updated_on\": \"2013-05-10T02:47:09.825Z\",\n      \"updated_by\": \"tempor dolor officia deserunt\",\n      \"created_on\": \"1957-05-15T00:05:53.167Z\",\n      \"created_by\": \"dolor nulla quis do deserunt\",\n      \"archived\": false,\n      \"archived_on\": \"2011-11-06T00:16:21.120Z\",\n      \"archived_by\": \"ex qui\"\n    },\n    \"workspaces\": [\n      \"exercitation elit eiusmod dolore\",\n      \"cillum\"\n    ]\n  },\n  {\n    \"name\": \"magna sit in\",\n    \"avatar\": \"est\",\n    \"description\": \"ut voluptate\",\n    \"attributes\": {},\n    \"narrative\": {},\n    \"updated_on\": \"1996-08-25T08:49:42.445Z\",\n    \"updated_by\": \"consequat Exce\",\n    \"created_on\": \"1985-09-16T16:32:05.724Z\",\n    \"created_by\": \"nulla irure\",\n    \"archived\": false,\n    \"archived_on\": \"2010-07-30T19:19:03.016Z\",\n    \"archived_by\": \"in aliqua minim ex eu\",\n    \"organization\": {\n      \"name\": \"nulla officia\",\n      \"slug\": \"ut eiusmod\",\n      \"logo\": \"anim labore\",\n      \"color\": \"enim ea\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"est\",\n      \"ad_spend_tracker_url\": \"ea\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"eiusmod deserunt eu\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"in off\",\n      \"updated_on\": \"2020-02-20T12:09:48.698Z\",\n      \"updated_by\": \"ex id velit\",\n      \"created_on\": \"1995-05-11T01:38:09.598Z\",\n      \"created_by\": \"occaecat laborum tempor enim\",\n      \"archived\": false,\n      \"archived_on\": \"1972-05-18T04:51:03.576Z\",\n      \"archived_by\": \"nostrud dolor et Ut\"\n    },\n    \"workspaces\": [\n      \"qui nostrud\",\n      \"cupidatat ut ad aliqua commodo\"\n    ]\n  }\n]"}],"_postman_id":"e3b9a091-0696-4377-9fc0-0ba79c28778e"},{"name":"Find One Persona","id":"40ca1b8a-7edb-47a6-a208-917bb83e6acc","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//personas/:id?archived=<boolean>","urlObject":{"path":["personas",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"d643b995-4f00-4569-a528-c98671c87fe2","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"41c3ff63-2273-4a47-b3d6-8a9629e6cb92","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//personas/:id?archived=<boolean>","host":["/"],"path":["personas",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"ipsum minim consequat\",\n  \"avatar\": \"Duis ex nostrud\",\n  \"description\": \"consequat dolor cupidatat incididunt\",\n  \"attributes\": {},\n  \"narrative\": {},\n  \"updated_on\": \"1962-03-07T23:22:43.738Z\",\n  \"updated_by\": \"minim incididunt ut\",\n  \"created_on\": \"2010-01-25T14:39:00.966Z\",\n  \"created_by\": \"aute sed in Lorem\",\n  \"archived\": false,\n  \"archived_on\": \"2018-03-30T17:09:42.912Z\",\n  \"archived_by\": \"labore incididunt dolore\",\n  \"organization\": {\n    \"name\": \"sit ad labore reprehenderit aliquip\",\n    \"slug\": \"in irure\",\n    \"logo\": \"sed ex dolore\",\n    \"color\": \"ex qui\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"Excepteur anim mollit\",\n    \"ad_spend_tracker_url\": \"Lorem ipsum elit esse m\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur amet\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"irure sed\",\n    \"updated_on\": \"1953-04-28T05:22:44.055Z\",\n    \"updated_by\": \"aute elit ut\",\n    \"created_on\": \"1957-11-17T21:53:53.367Z\",\n    \"created_by\": \"do reprehenderit consectetur sit pariatur\",\n    \"archived\": false,\n    \"archived_on\": \"1942-07-04T09:44:22.736Z\",\n    \"archived_by\": \"dolore velit\"\n  },\n  \"workspaces\": [\n    \"ullamco ut\",\n    \"dolore ullamco mollit proident\"\n  ]\n}"}],"_postman_id":"40ca1b8a-7edb-47a6-a208-917bb83e6acc"},{"name":"Replace Persona","id":"3abd25a6-702a-4f59-a14f-1f401a58f0f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"avatar\": \"<string>\",\n  \"description\": \"<string>\",\n  \"attributes\": \"<object>\",\n  \"narrative\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//personas/:id","urlObject":{"path":["personas",":id"],"host":["/"],"query":[],"variable":[{"id":"b1cc57e7-5ce1-4b95-8ec8-24fa8cc3c2e9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"8247d361-c08f-46eb-897c-f2fb85e3397c","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"avatar\": \"<string>\",\n  \"description\": \"<string>\",\n  \"attributes\": \"<object>\",\n  \"narrative\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//personas/:id","host":["/"],"path":["personas",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"ipsum minim consequat\",\n  \"avatar\": \"Duis ex nostrud\",\n  \"description\": \"consequat dolor cupidatat incididunt\",\n  \"attributes\": {},\n  \"narrative\": {},\n  \"updated_on\": \"1962-03-07T23:22:43.738Z\",\n  \"updated_by\": \"minim incididunt ut\",\n  \"created_on\": \"2010-01-25T14:39:00.966Z\",\n  \"created_by\": \"aute sed in Lorem\",\n  \"archived\": false,\n  \"archived_on\": \"2018-03-30T17:09:42.912Z\",\n  \"archived_by\": \"labore incididunt dolore\",\n  \"organization\": {\n    \"name\": \"sit ad labore reprehenderit aliquip\",\n    \"slug\": \"in irure\",\n    \"logo\": \"sed ex dolore\",\n    \"color\": \"ex qui\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"Excepteur anim mollit\",\n    \"ad_spend_tracker_url\": \"Lorem ipsum elit esse m\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur amet\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"irure sed\",\n    \"updated_on\": \"1953-04-28T05:22:44.055Z\",\n    \"updated_by\": \"aute elit ut\",\n    \"created_on\": \"1957-11-17T21:53:53.367Z\",\n    \"created_by\": \"do reprehenderit consectetur sit pariatur\",\n    \"archived\": false,\n    \"archived_on\": \"1942-07-04T09:44:22.736Z\",\n    \"archived_by\": \"dolore velit\"\n  },\n  \"workspaces\": [\n    \"ullamco ut\",\n    \"dolore ullamco mollit proident\"\n  ]\n}"}],"_postman_id":"3abd25a6-702a-4f59-a14f-1f401a58f0f1"},{"name":"Update Persona","id":"271cb693-fabf-4643-ab74-f33326dd11b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"avatar\": \"<string>\",\n  \"description\": \"<string>\",\n  \"attributes\": \"<object>\",\n  \"narrative\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//personas/:id","urlObject":{"path":["personas",":id"],"host":["/"],"query":[],"variable":[{"id":"6783d265-dda9-435d-bf06-ef6422305fe9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"7a3407db-53a2-4440-abaa-4d28ec61999a","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"avatar\": \"<string>\",\n  \"description\": \"<string>\",\n  \"attributes\": \"<object>\",\n  \"narrative\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//personas/:id","host":["/"],"path":["personas",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"ipsum minim consequat\",\n  \"avatar\": \"Duis ex nostrud\",\n  \"description\": \"consequat dolor cupidatat incididunt\",\n  \"attributes\": {},\n  \"narrative\": {},\n  \"updated_on\": \"1962-03-07T23:22:43.738Z\",\n  \"updated_by\": \"minim incididunt ut\",\n  \"created_on\": \"2010-01-25T14:39:00.966Z\",\n  \"created_by\": \"aute sed in Lorem\",\n  \"archived\": false,\n  \"archived_on\": \"2018-03-30T17:09:42.912Z\",\n  \"archived_by\": \"labore incididunt dolore\",\n  \"organization\": {\n    \"name\": \"sit ad labore reprehenderit aliquip\",\n    \"slug\": \"in irure\",\n    \"logo\": \"sed ex dolore\",\n    \"color\": \"ex qui\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"Excepteur anim mollit\",\n    \"ad_spend_tracker_url\": \"Lorem ipsum elit esse m\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur amet\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"irure sed\",\n    \"updated_on\": \"1953-04-28T05:22:44.055Z\",\n    \"updated_by\": \"aute elit ut\",\n    \"created_on\": \"1957-11-17T21:53:53.367Z\",\n    \"created_by\": \"do reprehenderit consectetur sit pariatur\",\n    \"archived\": false,\n    \"archived_on\": \"1942-07-04T09:44:22.736Z\",\n    \"archived_by\": \"dolore velit\"\n  },\n  \"workspaces\": [\n    \"ullamco ut\",\n    \"dolore ullamco mollit proident\"\n  ]\n}"}],"_postman_id":"271cb693-fabf-4643-ab74-f33326dd11b3"},{"name":"Archive Persona","id":"a4d5f6aa-8da5-48d0-addd-2486ede419f2","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//personas/:id","urlObject":{"path":["personas",":id"],"host":["/"],"query":[],"variable":[{"id":"889277d4-1e21-4e16-8280-7ea6c781ea14","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d50d5064-21cb-4942-914c-ee13c6c2f412","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//personas/:id","host":["/"],"path":["personas",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"ipsum minim consequat\",\n  \"avatar\": \"Duis ex nostrud\",\n  \"description\": \"consequat dolor cupidatat incididunt\",\n  \"attributes\": {},\n  \"narrative\": {},\n  \"updated_on\": \"1962-03-07T23:22:43.738Z\",\n  \"updated_by\": \"minim incididunt ut\",\n  \"created_on\": \"2010-01-25T14:39:00.966Z\",\n  \"created_by\": \"aute sed in Lorem\",\n  \"archived\": false,\n  \"archived_on\": \"2018-03-30T17:09:42.912Z\",\n  \"archived_by\": \"labore incididunt dolore\",\n  \"organization\": {\n    \"name\": \"sit ad labore reprehenderit aliquip\",\n    \"slug\": \"in irure\",\n    \"logo\": \"sed ex dolore\",\n    \"color\": \"ex qui\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"Excepteur anim mollit\",\n    \"ad_spend_tracker_url\": \"Lorem ipsum elit esse m\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur amet\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"irure sed\",\n    \"updated_on\": \"1953-04-28T05:22:44.055Z\",\n    \"updated_by\": \"aute elit ut\",\n    \"created_on\": \"1957-11-17T21:53:53.367Z\",\n    \"created_by\": \"do reprehenderit consectetur sit pariatur\",\n    \"archived\": false,\n    \"archived_on\": \"1942-07-04T09:44:22.736Z\",\n    \"archived_by\": \"dolore velit\"\n  },\n  \"workspaces\": [\n    \"ullamco ut\",\n    \"dolore ullamco mollit proident\"\n  ]\n}"}],"_postman_id":"a4d5f6aa-8da5-48d0-addd-2486ede419f2"},{"name":"Unarchive Persona","id":"95b38b65-056f-4e38-b1fc-c72b76e219c6","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//personas/:id/unarchive","urlObject":{"path":["personas",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"654c3301-3e71-4aed-9bd0-9f27b83605d8","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"5634b2af-5e77-4ebe-8826-4bddb3b5711a","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//personas/:id/unarchive","host":["/"],"path":["personas",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"ipsum minim consequat\",\n  \"avatar\": \"Duis ex nostrud\",\n  \"description\": \"consequat dolor cupidatat incididunt\",\n  \"attributes\": {},\n  \"narrative\": {},\n  \"updated_on\": \"1962-03-07T23:22:43.738Z\",\n  \"updated_by\": \"minim incididunt ut\",\n  \"created_on\": \"2010-01-25T14:39:00.966Z\",\n  \"created_by\": \"aute sed in Lorem\",\n  \"archived\": false,\n  \"archived_on\": \"2018-03-30T17:09:42.912Z\",\n  \"archived_by\": \"labore incididunt dolore\",\n  \"organization\": {\n    \"name\": \"sit ad labore reprehenderit aliquip\",\n    \"slug\": \"in irure\",\n    \"logo\": \"sed ex dolore\",\n    \"color\": \"ex qui\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"Excepteur anim mollit\",\n    \"ad_spend_tracker_url\": \"Lorem ipsum elit esse m\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur amet\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"irure sed\",\n    \"updated_on\": \"1953-04-28T05:22:44.055Z\",\n    \"updated_by\": \"aute elit ut\",\n    \"created_on\": \"1957-11-17T21:53:53.367Z\",\n    \"created_by\": \"do reprehenderit consectetur sit pariatur\",\n    \"archived\": false,\n    \"archived_on\": \"1942-07-04T09:44:22.736Z\",\n    \"archived_by\": \"dolore velit\"\n  },\n  \"workspaces\": [\n    \"ullamco ut\",\n    \"dolore ullamco mollit proident\"\n  ]\n}"}],"_postman_id":"95b38b65-056f-4e38-b1fc-c72b76e219c6"},{"name":"Delete Persona","id":"6726e3d3-cd7b-4c5c-88a9-20d5f051ce68","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//personas/:id/delete","urlObject":{"path":["personas",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"96f002cd-d801-4228-86d0-72d95739b32f","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"6f1c7bfe-8d11-4bf5-8e2e-422fa1814d0a","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//personas/:id/delete","host":["/"],"path":["personas",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"ipsum minim consequat\",\n  \"avatar\": \"Duis ex nostrud\",\n  \"description\": \"consequat dolor cupidatat incididunt\",\n  \"attributes\": {},\n  \"narrative\": {},\n  \"updated_on\": \"1962-03-07T23:22:43.738Z\",\n  \"updated_by\": \"minim incididunt ut\",\n  \"created_on\": \"2010-01-25T14:39:00.966Z\",\n  \"created_by\": \"aute sed in Lorem\",\n  \"archived\": false,\n  \"archived_on\": \"2018-03-30T17:09:42.912Z\",\n  \"archived_by\": \"labore incididunt dolore\",\n  \"organization\": {\n    \"name\": \"sit ad labore reprehenderit aliquip\",\n    \"slug\": \"in irure\",\n    \"logo\": \"sed ex dolore\",\n    \"color\": \"ex qui\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"Excepteur anim mollit\",\n    \"ad_spend_tracker_url\": \"Lorem ipsum elit esse m\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur amet\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"irure sed\",\n    \"updated_on\": \"1953-04-28T05:22:44.055Z\",\n    \"updated_by\": \"aute elit ut\",\n    \"created_on\": \"1957-11-17T21:53:53.367Z\",\n    \"created_by\": \"do reprehenderit consectetur sit pariatur\",\n    \"archived\": false,\n    \"archived_on\": \"1942-07-04T09:44:22.736Z\",\n    \"archived_by\": \"dolore velit\"\n  },\n  \"workspaces\": [\n    \"ullamco ut\",\n    \"dolore ullamco mollit proident\"\n  ]\n}"}],"_postman_id":"6726e3d3-cd7b-4c5c-88a9-20d5f051ce68"}],"id":"0382f619-3325-4473-81c2-0fcc29f9fe5c","description":"<p>Personas use AI to segment and cluster your data to make the most of your advertising efforts. This endpoint allows you to interact with the personas in the AIAD Platform. </p>\n","_postman_id":"0382f619-3325-4473-81c2-0fcc29f9fe5c"},{"name":"Presentations","item":[{"name":"Find All Presentations","id":"47037667-1792-4cad-aad7-09a2a9acf56f","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//presentations?archived=<boolean>","urlObject":{"path":["presentations"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"e18a25af-b4a4-4378-9dbc-3194de34fd54","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//presentations?archived=<boolean>","host":["/"],"path":["presentations"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"voluptate aliquip pariatur qui\",\n    \"description\": \"in fugiat cupidatat\",\n    \"url\": \"aliqua ex culpa\",\n    \"thumbnail_url\": \"ad aliquip\",\n    \"updated_on\": \"1972-10-18T08:59:17.363Z\",\n    \"updated_by\": \"consectetur velit\",\n    \"created_on\": \"1992-07-17T22:01:13.265Z\",\n    \"created_by\": \"id dolore\",\n    \"archived\": false,\n    \"archived_on\": \"1994-05-09T16:00:30.597Z\",\n    \"archived_by\": \"consequat irure dolor\",\n    \"organization\": {\n      \"name\": \"ut nulla culpa\",\n      \"slug\": \"voluptate id\",\n      \"logo\": \"nulla velit ullamco do\",\n      \"color\": \"exercitation id enim veniam\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"et ullamco ad\",\n      \"ad_spend_tracker_url\": \"tempor Ut\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"magna sit mollit cu\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"eu deserunt\",\n      \"updated_on\": \"1977-05-18T01:02:42.553Z\",\n      \"updated_by\": \"nostrud qui ut\",\n      \"created_on\": \"1975-04-17T06:04:27.011Z\",\n      \"created_by\": \"nulla pariatur consequat ut\",\n      \"archived\": false,\n      \"archived_on\": \"1942-09-17T07:07:31.559Z\",\n      \"archived_by\": \"Excepteur anim\"\n    },\n    \"workspaces\": [\n      \"ex adipisicing velit deserunt dolore\",\n      \"laboris in deserunt est\"\n    ]\n  },\n  {\n    \"name\": \"do nulla mollit\",\n    \"description\": \"ut culpa dolor dolore\",\n    \"url\": \"ali\",\n    \"thumbnail_url\": \"reprehenderit nostrud et\",\n    \"updated_on\": \"1960-04-28T19:42:56.511Z\",\n    \"updated_by\": \"nostrud dolor mini\",\n    \"created_on\": \"1962-04-08T15:03:33.899Z\",\n    \"created_by\": \"nostrud Lorem cillum ea irure\",\n    \"archived\": false,\n    \"archived_on\": \"2011-05-20T15:42:51.503Z\",\n    \"archived_by\": \"ipsum Excepteur sit in \",\n    \"organization\": {\n      \"name\": \"ut id Excepteur\",\n      \"slug\": \"incididunt nostrud adipisicing ex\",\n      \"logo\": \"commodo dolore do cupidatat\",\n      \"color\": \"voluptate elit\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"sit qui\",\n      \"ad_spend_tracker_url\": \"esse\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"et dolore veniam anim\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"Duis\",\n      \"updated_on\": \"1976-03-25T01:30:11.618Z\",\n      \"updated_by\": \"enim culpa ipsum in\",\n      \"created_on\": \"1982-08-26T01:39:18.737Z\",\n      \"created_by\": \"ex reprehenderit aliqua\",\n      \"archived\": true,\n      \"archived_on\": \"1985-07-14T15:28:30.719Z\",\n      \"archived_by\": \"deserunt nulla qui sunt\"\n    },\n    \"workspaces\": [\n      \"dolore ex cupidatat\",\n      \"exercitation voluptate in aute fugiat\"\n    ]\n  }\n]"}],"_postman_id":"47037667-1792-4cad-aad7-09a2a9acf56f"},{"name":"Create Presentation","id":"0149df10-a5ff-4085-891a-4ae13fcc39d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//presentations","urlObject":{"path":["presentations"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"904a66ec-407e-4360-abf0-a85663584f3f","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//presentations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"nostrud ut deserunt\",\n  \"description\": \"in\",\n  \"url\": \"velit fugiat conseq\",\n  \"thumbnail_url\": \"est laboris amet cillum esse\",\n  \"updated_on\": \"1965-05-15T07:56:17.515Z\",\n  \"updated_by\": \"laboris\",\n  \"created_on\": \"1998-03-11T18:18:47.983Z\",\n  \"created_by\": \"voluptate nisi incididunt\",\n  \"archived\": false,\n  \"archived_on\": \"1991-05-03T12:35:02.939Z\",\n  \"archived_by\": \"eiusmod officia cillum do aliquip\",\n  \"organization\": {\n    \"name\": \"sint eiusmod Duis occaecat ipsum\",\n    \"slug\": \"velit\",\n    \"logo\": \"ipsum minim est\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"Ut adipisicing\",\n    \"ad_spend_tracker_url\": \"deserunt \",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit tempor quis dolor\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"sed\",\n    \"updated_on\": \"1981-12-14T18:43:40.883Z\",\n    \"updated_by\": \"mollit elit\",\n    \"created_on\": \"2007-01-20T08:08:47.531Z\",\n    \"created_by\": \"quis fugiat\",\n    \"archived\": true,\n    \"archived_on\": \"2018-08-30T05:52:49.275Z\",\n    \"archived_by\": \"esse sit\"\n  },\n  \"workspaces\": [\n    \"do sed quis fugiat\",\n    \"esse occaecat officia cupidatat\"\n  ]\n}"}],"_postman_id":"0149df10-a5ff-4085-891a-4ae13fcc39d1"},{"name":"Count Presentations","id":"121144f8-556d-483d-81ba-3ed124d1f0fd","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//presentations/count?archived=<boolean>","urlObject":{"path":["presentations","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"faa7082b-a248-49ef-a985-2170bcdd83c9","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//presentations/count?archived=<boolean>","host":["/"],"path":["presentations","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"121144f8-556d-483d-81ba-3ed124d1f0fd"},{"name":"Search Presentations","id":"1b0556a9-adc0-4f16-bd8a-35d3ea2e3064","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//presentations/search","urlObject":{"path":["presentations","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"28c7a90f-8d2a-475d-a72d-100b166d70ae","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//presentations/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"voluptate aliquip pariatur qui\",\n    \"description\": \"in fugiat cupidatat\",\n    \"url\": \"aliqua ex culpa\",\n    \"thumbnail_url\": \"ad aliquip\",\n    \"updated_on\": \"1972-10-18T08:59:17.363Z\",\n    \"updated_by\": \"consectetur velit\",\n    \"created_on\": \"1992-07-17T22:01:13.265Z\",\n    \"created_by\": \"id dolore\",\n    \"archived\": false,\n    \"archived_on\": \"1994-05-09T16:00:30.597Z\",\n    \"archived_by\": \"consequat irure dolor\",\n    \"organization\": {\n      \"name\": \"ut nulla culpa\",\n      \"slug\": \"voluptate id\",\n      \"logo\": \"nulla velit ullamco do\",\n      \"color\": \"exercitation id enim veniam\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"et ullamco ad\",\n      \"ad_spend_tracker_url\": \"tempor Ut\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"magna sit mollit cu\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"eu deserunt\",\n      \"updated_on\": \"1977-05-18T01:02:42.553Z\",\n      \"updated_by\": \"nostrud qui ut\",\n      \"created_on\": \"1975-04-17T06:04:27.011Z\",\n      \"created_by\": \"nulla pariatur consequat ut\",\n      \"archived\": false,\n      \"archived_on\": \"1942-09-17T07:07:31.559Z\",\n      \"archived_by\": \"Excepteur anim\"\n    },\n    \"workspaces\": [\n      \"ex adipisicing velit deserunt dolore\",\n      \"laboris in deserunt est\"\n    ]\n  },\n  {\n    \"name\": \"do nulla mollit\",\n    \"description\": \"ut culpa dolor dolore\",\n    \"url\": \"ali\",\n    \"thumbnail_url\": \"reprehenderit nostrud et\",\n    \"updated_on\": \"1960-04-28T19:42:56.511Z\",\n    \"updated_by\": \"nostrud dolor mini\",\n    \"created_on\": \"1962-04-08T15:03:33.899Z\",\n    \"created_by\": \"nostrud Lorem cillum ea irure\",\n    \"archived\": false,\n    \"archived_on\": \"2011-05-20T15:42:51.503Z\",\n    \"archived_by\": \"ipsum Excepteur sit in \",\n    \"organization\": {\n      \"name\": \"ut id Excepteur\",\n      \"slug\": \"incididunt nostrud adipisicing ex\",\n      \"logo\": \"commodo dolore do cupidatat\",\n      \"color\": \"voluptate elit\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"sit qui\",\n      \"ad_spend_tracker_url\": \"esse\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"et dolore veniam anim\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"Duis\",\n      \"updated_on\": \"1976-03-25T01:30:11.618Z\",\n      \"updated_by\": \"enim culpa ipsum in\",\n      \"created_on\": \"1982-08-26T01:39:18.737Z\",\n      \"created_by\": \"ex reprehenderit aliqua\",\n      \"archived\": true,\n      \"archived_on\": \"1985-07-14T15:28:30.719Z\",\n      \"archived_by\": \"deserunt nulla qui sunt\"\n    },\n    \"workspaces\": [\n      \"dolore ex cupidatat\",\n      \"exercitation voluptate in aute fugiat\"\n    ]\n  }\n]"}],"_postman_id":"1b0556a9-adc0-4f16-bd8a-35d3ea2e3064"},{"name":"Find One Presentation","id":"2bca9bf3-a776-4840-87be-2a9efbbdf035","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//presentations/:id?archived=<boolean>","urlObject":{"path":["presentations",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"2200bfff-5964-4b2d-a128-b9b7bd26e87c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4767fc10-def0-422a-bbd0-85fa625ffee3","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//presentations/:id?archived=<boolean>","host":["/"],"path":["presentations",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"nostrud ut deserunt\",\n  \"description\": \"in\",\n  \"url\": \"velit fugiat conseq\",\n  \"thumbnail_url\": \"est laboris amet cillum esse\",\n  \"updated_on\": \"1965-05-15T07:56:17.515Z\",\n  \"updated_by\": \"laboris\",\n  \"created_on\": \"1998-03-11T18:18:47.983Z\",\n  \"created_by\": \"voluptate nisi incididunt\",\n  \"archived\": false,\n  \"archived_on\": \"1991-05-03T12:35:02.939Z\",\n  \"archived_by\": \"eiusmod officia cillum do aliquip\",\n  \"organization\": {\n    \"name\": \"sint eiusmod Duis occaecat ipsum\",\n    \"slug\": \"velit\",\n    \"logo\": \"ipsum minim est\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"Ut adipisicing\",\n    \"ad_spend_tracker_url\": \"deserunt \",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit tempor quis dolor\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"sed\",\n    \"updated_on\": \"1981-12-14T18:43:40.883Z\",\n    \"updated_by\": \"mollit elit\",\n    \"created_on\": \"2007-01-20T08:08:47.531Z\",\n    \"created_by\": \"quis fugiat\",\n    \"archived\": true,\n    \"archived_on\": \"2018-08-30T05:52:49.275Z\",\n    \"archived_by\": \"esse sit\"\n  },\n  \"workspaces\": [\n    \"do sed quis fugiat\",\n    \"esse occaecat officia cupidatat\"\n  ]\n}"}],"_postman_id":"2bca9bf3-a776-4840-87be-2a9efbbdf035"},{"name":"Replace Presentation","id":"20f11702-520b-4243-8b68-9e914e8c9c3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//presentations/:id","urlObject":{"path":["presentations",":id"],"host":["/"],"query":[],"variable":[{"id":"ee35a80b-2a00-4117-9257-83cbe3cc5076","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"91eb93e1-6a68-4834-aa47-c05925b0d791","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//presentations/:id","host":["/"],"path":["presentations",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"nostrud ut deserunt\",\n  \"description\": \"in\",\n  \"url\": \"velit fugiat conseq\",\n  \"thumbnail_url\": \"est laboris amet cillum esse\",\n  \"updated_on\": \"1965-05-15T07:56:17.515Z\",\n  \"updated_by\": \"laboris\",\n  \"created_on\": \"1998-03-11T18:18:47.983Z\",\n  \"created_by\": \"voluptate nisi incididunt\",\n  \"archived\": false,\n  \"archived_on\": \"1991-05-03T12:35:02.939Z\",\n  \"archived_by\": \"eiusmod officia cillum do aliquip\",\n  \"organization\": {\n    \"name\": \"sint eiusmod Duis occaecat ipsum\",\n    \"slug\": \"velit\",\n    \"logo\": \"ipsum minim est\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"Ut adipisicing\",\n    \"ad_spend_tracker_url\": \"deserunt \",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit tempor quis dolor\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"sed\",\n    \"updated_on\": \"1981-12-14T18:43:40.883Z\",\n    \"updated_by\": \"mollit elit\",\n    \"created_on\": \"2007-01-20T08:08:47.531Z\",\n    \"created_by\": \"quis fugiat\",\n    \"archived\": true,\n    \"archived_on\": \"2018-08-30T05:52:49.275Z\",\n    \"archived_by\": \"esse sit\"\n  },\n  \"workspaces\": [\n    \"do sed quis fugiat\",\n    \"esse occaecat officia cupidatat\"\n  ]\n}"}],"_postman_id":"20f11702-520b-4243-8b68-9e914e8c9c3a"},{"name":"Update Presentation","id":"1e11d183-2687-4c53-b85a-4e6f90588686","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//presentations/:id","urlObject":{"path":["presentations",":id"],"host":["/"],"query":[],"variable":[{"id":"b4a06e4b-ae0f-4777-a981-07392e16e6c6","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"810b1385-3d09-4b8c-81d3-7592414ad09c","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//presentations/:id","host":["/"],"path":["presentations",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"nostrud ut deserunt\",\n  \"description\": \"in\",\n  \"url\": \"velit fugiat conseq\",\n  \"thumbnail_url\": \"est laboris amet cillum esse\",\n  \"updated_on\": \"1965-05-15T07:56:17.515Z\",\n  \"updated_by\": \"laboris\",\n  \"created_on\": \"1998-03-11T18:18:47.983Z\",\n  \"created_by\": \"voluptate nisi incididunt\",\n  \"archived\": false,\n  \"archived_on\": \"1991-05-03T12:35:02.939Z\",\n  \"archived_by\": \"eiusmod officia cillum do aliquip\",\n  \"organization\": {\n    \"name\": \"sint eiusmod Duis occaecat ipsum\",\n    \"slug\": \"velit\",\n    \"logo\": \"ipsum minim est\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"Ut adipisicing\",\n    \"ad_spend_tracker_url\": \"deserunt \",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit tempor quis dolor\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"sed\",\n    \"updated_on\": \"1981-12-14T18:43:40.883Z\",\n    \"updated_by\": \"mollit elit\",\n    \"created_on\": \"2007-01-20T08:08:47.531Z\",\n    \"created_by\": \"quis fugiat\",\n    \"archived\": true,\n    \"archived_on\": \"2018-08-30T05:52:49.275Z\",\n    \"archived_by\": \"esse sit\"\n  },\n  \"workspaces\": [\n    \"do sed quis fugiat\",\n    \"esse occaecat officia cupidatat\"\n  ]\n}"}],"_postman_id":"1e11d183-2687-4c53-b85a-4e6f90588686"},{"name":"Archive Presentation","id":"ed8abdd4-f7ec-4115-8ceb-81604204fa84","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//presentations/:id","urlObject":{"path":["presentations",":id"],"host":["/"],"query":[],"variable":[{"id":"7c069d83-942e-43a8-811c-7a206e25d4f7","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"985d2516-caeb-4680-a01c-b838a8a28c22","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//presentations/:id","host":["/"],"path":["presentations",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"nostrud ut deserunt\",\n  \"description\": \"in\",\n  \"url\": \"velit fugiat conseq\",\n  \"thumbnail_url\": \"est laboris amet cillum esse\",\n  \"updated_on\": \"1965-05-15T07:56:17.515Z\",\n  \"updated_by\": \"laboris\",\n  \"created_on\": \"1998-03-11T18:18:47.983Z\",\n  \"created_by\": \"voluptate nisi incididunt\",\n  \"archived\": false,\n  \"archived_on\": \"1991-05-03T12:35:02.939Z\",\n  \"archived_by\": \"eiusmod officia cillum do aliquip\",\n  \"organization\": {\n    \"name\": \"sint eiusmod Duis occaecat ipsum\",\n    \"slug\": \"velit\",\n    \"logo\": \"ipsum minim est\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"Ut adipisicing\",\n    \"ad_spend_tracker_url\": \"deserunt \",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit tempor quis dolor\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"sed\",\n    \"updated_on\": \"1981-12-14T18:43:40.883Z\",\n    \"updated_by\": \"mollit elit\",\n    \"created_on\": \"2007-01-20T08:08:47.531Z\",\n    \"created_by\": \"quis fugiat\",\n    \"archived\": true,\n    \"archived_on\": \"2018-08-30T05:52:49.275Z\",\n    \"archived_by\": \"esse sit\"\n  },\n  \"workspaces\": [\n    \"do sed quis fugiat\",\n    \"esse occaecat officia cupidatat\"\n  ]\n}"}],"_postman_id":"ed8abdd4-f7ec-4115-8ceb-81604204fa84"},{"name":"Unarchive Presentation","id":"a20a5088-b950-42ee-9ec9-672e4c78f9f3","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//presentations/:id/unarchive","urlObject":{"path":["presentations",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"483e11ab-3c71-414c-8a6e-39b7af9d1478","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"acfe1f64-7979-44d2-a2b0-70868824b38d","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//presentations/:id/unarchive","host":["/"],"path":["presentations",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"nostrud ut deserunt\",\n  \"description\": \"in\",\n  \"url\": \"velit fugiat conseq\",\n  \"thumbnail_url\": \"est laboris amet cillum esse\",\n  \"updated_on\": \"1965-05-15T07:56:17.515Z\",\n  \"updated_by\": \"laboris\",\n  \"created_on\": \"1998-03-11T18:18:47.983Z\",\n  \"created_by\": \"voluptate nisi incididunt\",\n  \"archived\": false,\n  \"archived_on\": \"1991-05-03T12:35:02.939Z\",\n  \"archived_by\": \"eiusmod officia cillum do aliquip\",\n  \"organization\": {\n    \"name\": \"sint eiusmod Duis occaecat ipsum\",\n    \"slug\": \"velit\",\n    \"logo\": \"ipsum minim est\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"Ut adipisicing\",\n    \"ad_spend_tracker_url\": \"deserunt \",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit tempor quis dolor\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"sed\",\n    \"updated_on\": \"1981-12-14T18:43:40.883Z\",\n    \"updated_by\": \"mollit elit\",\n    \"created_on\": \"2007-01-20T08:08:47.531Z\",\n    \"created_by\": \"quis fugiat\",\n    \"archived\": true,\n    \"archived_on\": \"2018-08-30T05:52:49.275Z\",\n    \"archived_by\": \"esse sit\"\n  },\n  \"workspaces\": [\n    \"do sed quis fugiat\",\n    \"esse occaecat officia cupidatat\"\n  ]\n}"}],"_postman_id":"a20a5088-b950-42ee-9ec9-672e4c78f9f3"},{"name":"Delete Presentation","id":"4598cb1f-9ca3-4624-8b67-196e5497cdd7","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//presentations/:id/delete","urlObject":{"path":["presentations",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"fa3a5c42-b204-44c3-8a38-762592d54698","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"6f09642c-21d6-498b-82ad-2c37e85c2dff","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//presentations/:id/delete","host":["/"],"path":["presentations",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"nostrud ut deserunt\",\n  \"description\": \"in\",\n  \"url\": \"velit fugiat conseq\",\n  \"thumbnail_url\": \"est laboris amet cillum esse\",\n  \"updated_on\": \"1965-05-15T07:56:17.515Z\",\n  \"updated_by\": \"laboris\",\n  \"created_on\": \"1998-03-11T18:18:47.983Z\",\n  \"created_by\": \"voluptate nisi incididunt\",\n  \"archived\": false,\n  \"archived_on\": \"1991-05-03T12:35:02.939Z\",\n  \"archived_by\": \"eiusmod officia cillum do aliquip\",\n  \"organization\": {\n    \"name\": \"sint eiusmod Duis occaecat ipsum\",\n    \"slug\": \"velit\",\n    \"logo\": \"ipsum minim est\",\n    \"color\": \"dolor proident\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"Ut adipisicing\",\n    \"ad_spend_tracker_url\": \"deserunt \",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit tempor quis dolor\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"sed\",\n    \"updated_on\": \"1981-12-14T18:43:40.883Z\",\n    \"updated_by\": \"mollit elit\",\n    \"created_on\": \"2007-01-20T08:08:47.531Z\",\n    \"created_by\": \"quis fugiat\",\n    \"archived\": true,\n    \"archived_on\": \"2018-08-30T05:52:49.275Z\",\n    \"archived_by\": \"esse sit\"\n  },\n  \"workspaces\": [\n    \"do sed quis fugiat\",\n    \"esse occaecat officia cupidatat\"\n  ]\n}"}],"_postman_id":"4598cb1f-9ca3-4624-8b67-196e5497cdd7"}],"id":"ac83e79b-17a0-47a5-ae6d-88c0a04965c4","description":"<p>Presentations allow users to store the various decks and other presentation materials that may be relevant to an organization's advertising efforts. </p>\n","_postman_id":"ac83e79b-17a0-47a5-ae6d-88c0a04965c4"},{"name":"Projectplans","item":[{"name":"Find All Projectplans","id":"563b9623-6047-4a3a-aa92-2e3e031bfbb3","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//projectplans?archived=<boolean>","urlObject":{"path":["projectplans"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"8644f84d-19ef-4a75-9dbf-0e494c893d1a","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//projectplans?archived=<boolean>","host":["/"],"path":["projectplans"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"aliqua occaecat\",\n    \"description\": \"ut\",\n    \"url\": \"quis ea eiusmod eu\",\n    \"thumbnail_url\": \"labo\",\n    \"updated_on\": \"1998-08-31T07:33:07.789Z\",\n    \"updated_by\": \"laboris consequat\",\n    \"created_on\": \"1976-05-31T16:53:30.572Z\",\n    \"created_by\": \"veniam labore\",\n    \"archived\": true,\n    \"archived_on\": \"1982-12-19T01:52:09.659Z\",\n    \"archived_by\": \"Lorem\"\n  },\n  {\n    \"name\": \"in incididunt eiusmod veniam ea\",\n    \"description\": \"nostrud\",\n    \"url\": \"fugiat eiusmod sunt\",\n    \"thumbnail_url\": \"ad tempor\",\n    \"updated_on\": \"2008-04-11T12:34:33.750Z\",\n    \"updated_by\": \"eiusmod nulla incididunt proident exercitation\",\n    \"created_on\": \"1960-01-02T20:53:38.209Z\",\n    \"created_by\": \"enim laboris\",\n    \"archived\": false,\n    \"archived_on\": \"1966-11-30T09:45:11.671Z\",\n    \"archived_by\": \"eu qui deserunt\"\n  }\n]"}],"_postman_id":"563b9623-6047-4a3a-aa92-2e3e031bfbb3"},{"name":"Create Projectplan","id":"9f52c40d-e0d8-4a05-b153-557d819bbbce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//projectplans","urlObject":{"path":["projectplans"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"e0bb0059-dad7-4fcc-acb2-95ee1d6e8e05","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//projectplans"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id occaecat cillum\",\n  \"description\": \"voluptate adipisicing aliqua fugiat\",\n  \"url\": \"ipsum sint\",\n  \"thumbnail_url\": \"in sint do elit\",\n  \"updated_on\": \"1978-04-29T09:16:39.025Z\",\n  \"updated_by\": \"ullamco\",\n  \"created_on\": \"1968-09-06T10:30:20.486Z\",\n  \"created_by\": \"enim ullamco\",\n  \"archived\": false,\n  \"archived_on\": \"1999-06-03T12:46:05.569Z\",\n  \"archived_by\": \"mollit in\"\n}"}],"_postman_id":"9f52c40d-e0d8-4a05-b153-557d819bbbce"},{"name":"Count Projectplans","id":"4fbb1fc4-5825-41f4-8026-c01eab8d0629","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//projectplans/count?archived=<boolean>","urlObject":{"path":["projectplans","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"ecd2d677-524d-4dc2-8328-68f49986545a","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//projectplans/count?archived=<boolean>","host":["/"],"path":["projectplans","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"4fbb1fc4-5825-41f4-8026-c01eab8d0629"},{"name":"Search Projectplans","id":"b9ba3d9a-b375-4943-a017-5badbf88be7b","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//projectplans/search","urlObject":{"path":["projectplans","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"e68556a4-12cf-467b-8f3a-c0c4086065d8","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//projectplans/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"aliqua occaecat\",\n    \"description\": \"ut\",\n    \"url\": \"quis ea eiusmod eu\",\n    \"thumbnail_url\": \"labo\",\n    \"updated_on\": \"1998-08-31T07:33:07.789Z\",\n    \"updated_by\": \"laboris consequat\",\n    \"created_on\": \"1976-05-31T16:53:30.572Z\",\n    \"created_by\": \"veniam labore\",\n    \"archived\": true,\n    \"archived_on\": \"1982-12-19T01:52:09.659Z\",\n    \"archived_by\": \"Lorem\"\n  },\n  {\n    \"name\": \"in incididunt eiusmod veniam ea\",\n    \"description\": \"nostrud\",\n    \"url\": \"fugiat eiusmod sunt\",\n    \"thumbnail_url\": \"ad tempor\",\n    \"updated_on\": \"2008-04-11T12:34:33.750Z\",\n    \"updated_by\": \"eiusmod nulla incididunt proident exercitation\",\n    \"created_on\": \"1960-01-02T20:53:38.209Z\",\n    \"created_by\": \"enim laboris\",\n    \"archived\": false,\n    \"archived_on\": \"1966-11-30T09:45:11.671Z\",\n    \"archived_by\": \"eu qui deserunt\"\n  }\n]"}],"_postman_id":"b9ba3d9a-b375-4943-a017-5badbf88be7b"},{"name":"Find One Projectplan","id":"fc9c6878-6f7e-4768-aa0f-f402ccf5485f","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//projectplans/:id?archived=<boolean>","urlObject":{"path":["projectplans",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"4e6428e1-f2bc-46fd-a7c8-eb8a8fce3a10","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"6712f55e-7399-4d36-b84c-a53d534c5b92","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//projectplans/:id?archived=<boolean>","host":["/"],"path":["projectplans",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id occaecat cillum\",\n  \"description\": \"voluptate adipisicing aliqua fugiat\",\n  \"url\": \"ipsum sint\",\n  \"thumbnail_url\": \"in sint do elit\",\n  \"updated_on\": \"1978-04-29T09:16:39.025Z\",\n  \"updated_by\": \"ullamco\",\n  \"created_on\": \"1968-09-06T10:30:20.486Z\",\n  \"created_by\": \"enim ullamco\",\n  \"archived\": false,\n  \"archived_on\": \"1999-06-03T12:46:05.569Z\",\n  \"archived_by\": \"mollit in\"\n}"}],"_postman_id":"fc9c6878-6f7e-4768-aa0f-f402ccf5485f"},{"name":"Replace Projectplan","id":"32239b2c-a680-482b-8e6b-99d02df8baf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//projectplans/:id","urlObject":{"path":["projectplans",":id"],"host":["/"],"query":[],"variable":[{"id":"48518569-3399-4511-995c-10686edfa299","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"90fd722a-c9fd-44bf-95f2-be95f4f308d9","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//projectplans/:id","host":["/"],"path":["projectplans",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id occaecat cillum\",\n  \"description\": \"voluptate adipisicing aliqua fugiat\",\n  \"url\": \"ipsum sint\",\n  \"thumbnail_url\": \"in sint do elit\",\n  \"updated_on\": \"1978-04-29T09:16:39.025Z\",\n  \"updated_by\": \"ullamco\",\n  \"created_on\": \"1968-09-06T10:30:20.486Z\",\n  \"created_by\": \"enim ullamco\",\n  \"archived\": false,\n  \"archived_on\": \"1999-06-03T12:46:05.569Z\",\n  \"archived_by\": \"mollit in\"\n}"}],"_postman_id":"32239b2c-a680-482b-8e6b-99d02df8baf7"},{"name":"Update Projectplan","id":"86a2f9f7-f5f8-4393-92a3-f509501837e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//projectplans/:id","urlObject":{"path":["projectplans",":id"],"host":["/"],"query":[],"variable":[{"id":"31bf1ba7-eaa2-4cac-9f2d-65241967951a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"b910c54a-af43-4856-9bf5-0d8298e89072","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\",\n  \"url\": \"<string>\",\n  \"thumbnail_url\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//projectplans/:id","host":["/"],"path":["projectplans",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id occaecat cillum\",\n  \"description\": \"voluptate adipisicing aliqua fugiat\",\n  \"url\": \"ipsum sint\",\n  \"thumbnail_url\": \"in sint do elit\",\n  \"updated_on\": \"1978-04-29T09:16:39.025Z\",\n  \"updated_by\": \"ullamco\",\n  \"created_on\": \"1968-09-06T10:30:20.486Z\",\n  \"created_by\": \"enim ullamco\",\n  \"archived\": false,\n  \"archived_on\": \"1999-06-03T12:46:05.569Z\",\n  \"archived_by\": \"mollit in\"\n}"}],"_postman_id":"86a2f9f7-f5f8-4393-92a3-f509501837e8"},{"name":"Archive Projectplan","id":"1bf175a3-9dcf-436e-bd27-224051e56773","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//projectplans/:id","urlObject":{"path":["projectplans",":id"],"host":["/"],"query":[],"variable":[{"id":"ccb3cfdc-8d63-4de5-951b-dced2e0793d9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"b69b4ef5-ac4f-4b9b-901a-b8c8d5d281a0","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//projectplans/:id","host":["/"],"path":["projectplans",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id occaecat cillum\",\n  \"description\": \"voluptate adipisicing aliqua fugiat\",\n  \"url\": \"ipsum sint\",\n  \"thumbnail_url\": \"in sint do elit\",\n  \"updated_on\": \"1978-04-29T09:16:39.025Z\",\n  \"updated_by\": \"ullamco\",\n  \"created_on\": \"1968-09-06T10:30:20.486Z\",\n  \"created_by\": \"enim ullamco\",\n  \"archived\": false,\n  \"archived_on\": \"1999-06-03T12:46:05.569Z\",\n  \"archived_by\": \"mollit in\"\n}"}],"_postman_id":"1bf175a3-9dcf-436e-bd27-224051e56773"},{"name":"Unarchive Projectplan","id":"97bc66ba-4da8-4c30-a83a-b3c386ba7ac7","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//projectplans/:id/unarchive","urlObject":{"path":["projectplans",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"52b2cfe5-6dbc-4b69-b1c0-3ef21e29373a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"b0c2d4c3-d81f-469b-ae6d-9f8dee583c85","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//projectplans/:id/unarchive","host":["/"],"path":["projectplans",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id occaecat cillum\",\n  \"description\": \"voluptate adipisicing aliqua fugiat\",\n  \"url\": \"ipsum sint\",\n  \"thumbnail_url\": \"in sint do elit\",\n  \"updated_on\": \"1978-04-29T09:16:39.025Z\",\n  \"updated_by\": \"ullamco\",\n  \"created_on\": \"1968-09-06T10:30:20.486Z\",\n  \"created_by\": \"enim ullamco\",\n  \"archived\": false,\n  \"archived_on\": \"1999-06-03T12:46:05.569Z\",\n  \"archived_by\": \"mollit in\"\n}"}],"_postman_id":"97bc66ba-4da8-4c30-a83a-b3c386ba7ac7"},{"name":"Delete Projectplan","id":"f741885b-9680-4454-a6cf-0abe8087cd7a","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//projectplans/:id/delete","urlObject":{"path":["projectplans",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"b13fc451-f298-4076-8dda-09324a2854d9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"6fa9cba7-dfdb-422d-aaf4-76737ec0f230","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//projectplans/:id/delete","host":["/"],"path":["projectplans",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id occaecat cillum\",\n  \"description\": \"voluptate adipisicing aliqua fugiat\",\n  \"url\": \"ipsum sint\",\n  \"thumbnail_url\": \"in sint do elit\",\n  \"updated_on\": \"1978-04-29T09:16:39.025Z\",\n  \"updated_by\": \"ullamco\",\n  \"created_on\": \"1968-09-06T10:30:20.486Z\",\n  \"created_by\": \"enim ullamco\",\n  \"archived\": false,\n  \"archived_on\": \"1999-06-03T12:46:05.569Z\",\n  \"archived_by\": \"mollit in\"\n}"}],"_postman_id":"f741885b-9680-4454-a6cf-0abe8087cd7a"}],"id":"02522ff8-c033-4fbd-9aa2-9f5a7486854a","description":"<p>Project Plans outline the timeline and details associated with a project for a given organization</p>\n","_postman_id":"02522ff8-c033-4fbd-9aa2-9f5a7486854a"},{"name":"Recentitems","item":[{"name":"Find All Recentitems","id":"f988dbfa-cdf1-45de-b963-c1829b13e37b","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//recentitems?archived=<boolean>","urlObject":{"path":["recentitems"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"1c9b285d-2cb3-4799-a4eb-bc4d5ea33df2","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//recentitems?archived=<boolean>","host":["/"],"path":["recentitems"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"record_type\": \"laboris\",\n    \"record_id\": \"Excepteur velit consequat\",\n    \"updated_on\": \"1958-08-16T07:56:52.530Z\",\n    \"updated_by\": \"dolor mollit\",\n    \"created_on\": \"1948-06-09T01:22:04.912Z\",\n    \"created_by\": \"aliquip laborum exercitation fugiat magna\",\n    \"archived\": false,\n    \"archived_on\": \"2006-04-05T02:00:51.851Z\",\n    \"archived_by\": \"mollit\",\n    \"organization\": {\n      \"name\": \"non reprehenderit\",\n      \"slug\": \"reprehenderit laboris laborum\",\n      \"logo\": \"nisi aute consequat sit\",\n      \"color\": \"ullamco dolore dolor qui\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"sint proiden\",\n      \"ad_spend_tracker_url\": \"elit cillum veniam ad\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"laboris deserunt est et\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"minim anim laborum\",\n      \"updated_on\": \"1952-03-15T06:48:26.779Z\",\n      \"updated_by\": \"dolore exercitation\",\n      \"created_on\": \"1954-05-18T13:56:14.909Z\",\n      \"created_by\": \"id dolor\",\n      \"archived\": false,\n      \"archived_on\": \"1954-06-28T09:36:22.466Z\",\n      \"archived_by\": \"exercitation velit mollit\"\n    },\n    \"workspaces\": [\n      \"anim\",\n      \"Ut deserunt\"\n    ]\n  },\n  {\n    \"record_type\": \"quis reprehenderit eu\",\n    \"record_id\": \"cillum sint\",\n    \"updated_on\": \"1985-12-08T17:20:17.837Z\",\n    \"updated_by\": \"fugiat exercitation mollit nulla\",\n    \"created_on\": \"1967-07-02T10:00:08.399Z\",\n    \"created_by\": \"sunt id cillum do officia\",\n    \"archived\": false,\n    \"archived_on\": \"2015-11-09T17:14:13.885Z\",\n    \"archived_by\": \"cillum\",\n    \"organization\": {\n      \"name\": \"exercitation laborum\",\n      \"slug\": \"ipsum ut Except\",\n      \"logo\": \"magna cupidatat ad\",\n      \"color\": \"adipisic\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt dolor\",\n      \"ad_spend_tracker_url\": \"Excepteur do Ut\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"mollit esse velit in\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"Excepteur ad\",\n      \"updated_on\": \"2013-09-18T07:18:55.777Z\",\n      \"updated_by\": \"cupidatat voluptate nostrud\",\n      \"created_on\": \"1946-07-14T10:14:10.830Z\",\n      \"created_by\": \"ut sed magna culpa occaecat\",\n      \"archived\": false,\n      \"archived_on\": \"1949-10-17T23:22:49.139Z\",\n      \"archived_by\": \"eiusmod mollit\"\n    },\n    \"workspaces\": [\n      \"deserunt dolore ut ipsum\",\n      \"irure id veniam officia\"\n    ]\n  }\n]"}],"_postman_id":"f988dbfa-cdf1-45de-b963-c1829b13e37b"},{"name":"Create Recentitem","id":"d70fa6a7-6b60-443e-9fab-55f6e7348a05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//recentitems","urlObject":{"path":["recentitems"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"bf55b0bb-7276-45a5-b10c-2f8e8822cabc","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//recentitems"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"in in Ut ipsum\",\n  \"record_id\": \"sed mollit ad\",\n  \"updated_on\": \"1952-08-04T16:50:52.555Z\",\n  \"updated_by\": \"commod\",\n  \"created_on\": \"2017-10-14T14:20:33.614Z\",\n  \"created_by\": \"magna consectetur adipisicing fugiat\",\n  \"archived\": false,\n  \"archived_on\": \"1954-03-05T19:31:22.254Z\",\n  \"archived_by\": \"enim velit veniam ull\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"volupta\",\n    \"logo\": \"eu proident sit\",\n    \"color\": \"laborum tempor Lorem commodo id\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"pariatur commodo deserunt enim\",\n    \"ad_spend_tracker_url\": \"reprehenderit offi\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"laboris aute minim\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"esse commodo anim eu ullamco\",\n    \"updated_on\": \"2010-12-11T13:21:07.399Z\",\n    \"updated_by\": \"anim et Ut\",\n    \"created_on\": \"2001-03-05T16:57:58.974Z\",\n    \"created_by\": \"reprehenderit incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"2016-11-30T03:38:43.072Z\",\n    \"archived_by\": \"laboris\"\n  },\n  \"workspaces\": [\n    \"ea dolore velit voluptate\",\n    \"consectetur cupidatat magna Lorem amet\"\n  ]\n}"}],"_postman_id":"d70fa6a7-6b60-443e-9fab-55f6e7348a05"},{"name":"Count Recentitems","id":"2627b3bd-1403-48d5-b7b7-89967ddf6e34","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//recentitems/count?archived=<boolean>","urlObject":{"path":["recentitems","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"b5aac3db-004c-4157-9cd3-76979a228b9d","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//recentitems/count?archived=<boolean>","host":["/"],"path":["recentitems","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"2627b3bd-1403-48d5-b7b7-89967ddf6e34"},{"name":"Search Recentitems","id":"a73e8dd3-5f0d-429f-8486-551a848cf6c8","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//recentitems/search","urlObject":{"path":["recentitems","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"03b12f06-a380-4d12-ae47-ea337ae8e108","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//recentitems/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"record_type\": \"laboris\",\n    \"record_id\": \"Excepteur velit consequat\",\n    \"updated_on\": \"1958-08-16T07:56:52.530Z\",\n    \"updated_by\": \"dolor mollit\",\n    \"created_on\": \"1948-06-09T01:22:04.912Z\",\n    \"created_by\": \"aliquip laborum exercitation fugiat magna\",\n    \"archived\": false,\n    \"archived_on\": \"2006-04-05T02:00:51.851Z\",\n    \"archived_by\": \"mollit\",\n    \"organization\": {\n      \"name\": \"non reprehenderit\",\n      \"slug\": \"reprehenderit laboris laborum\",\n      \"logo\": \"nisi aute consequat sit\",\n      \"color\": \"ullamco dolore dolor qui\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"sint proiden\",\n      \"ad_spend_tracker_url\": \"elit cillum veniam ad\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"laboris deserunt est et\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"minim anim laborum\",\n      \"updated_on\": \"1952-03-15T06:48:26.779Z\",\n      \"updated_by\": \"dolore exercitation\",\n      \"created_on\": \"1954-05-18T13:56:14.909Z\",\n      \"created_by\": \"id dolor\",\n      \"archived\": false,\n      \"archived_on\": \"1954-06-28T09:36:22.466Z\",\n      \"archived_by\": \"exercitation velit mollit\"\n    },\n    \"workspaces\": [\n      \"anim\",\n      \"Ut deserunt\"\n    ]\n  },\n  {\n    \"record_type\": \"quis reprehenderit eu\",\n    \"record_id\": \"cillum sint\",\n    \"updated_on\": \"1985-12-08T17:20:17.837Z\",\n    \"updated_by\": \"fugiat exercitation mollit nulla\",\n    \"created_on\": \"1967-07-02T10:00:08.399Z\",\n    \"created_by\": \"sunt id cillum do officia\",\n    \"archived\": false,\n    \"archived_on\": \"2015-11-09T17:14:13.885Z\",\n    \"archived_by\": \"cillum\",\n    \"organization\": {\n      \"name\": \"exercitation laborum\",\n      \"slug\": \"ipsum ut Except\",\n      \"logo\": \"magna cupidatat ad\",\n      \"color\": \"adipisic\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"incididunt dolor\",\n      \"ad_spend_tracker_url\": \"Excepteur do Ut\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"mollit esse velit in\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"Excepteur ad\",\n      \"updated_on\": \"2013-09-18T07:18:55.777Z\",\n      \"updated_by\": \"cupidatat voluptate nostrud\",\n      \"created_on\": \"1946-07-14T10:14:10.830Z\",\n      \"created_by\": \"ut sed magna culpa occaecat\",\n      \"archived\": false,\n      \"archived_on\": \"1949-10-17T23:22:49.139Z\",\n      \"archived_by\": \"eiusmod mollit\"\n    },\n    \"workspaces\": [\n      \"deserunt dolore ut ipsum\",\n      \"irure id veniam officia\"\n    ]\n  }\n]"}],"_postman_id":"a73e8dd3-5f0d-429f-8486-551a848cf6c8"},{"name":"Find One Recentitem","id":"e6e34a77-9f1a-48ee-a6dc-b92f32fcc7c1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//recentitems/:id?archived=<boolean>","urlObject":{"path":["recentitems",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"4810124c-15f3-4973-aea8-20bfa63348ed","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"dcb40956-10af-43b0-a278-ee7805104ba8","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//recentitems/:id?archived=<boolean>","host":["/"],"path":["recentitems",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"in in Ut ipsum\",\n  \"record_id\": \"sed mollit ad\",\n  \"updated_on\": \"1952-08-04T16:50:52.555Z\",\n  \"updated_by\": \"commod\",\n  \"created_on\": \"2017-10-14T14:20:33.614Z\",\n  \"created_by\": \"magna consectetur adipisicing fugiat\",\n  \"archived\": false,\n  \"archived_on\": \"1954-03-05T19:31:22.254Z\",\n  \"archived_by\": \"enim velit veniam ull\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"volupta\",\n    \"logo\": \"eu proident sit\",\n    \"color\": \"laborum tempor Lorem commodo id\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"pariatur commodo deserunt enim\",\n    \"ad_spend_tracker_url\": \"reprehenderit offi\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"laboris aute minim\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"esse commodo anim eu ullamco\",\n    \"updated_on\": \"2010-12-11T13:21:07.399Z\",\n    \"updated_by\": \"anim et Ut\",\n    \"created_on\": \"2001-03-05T16:57:58.974Z\",\n    \"created_by\": \"reprehenderit incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"2016-11-30T03:38:43.072Z\",\n    \"archived_by\": \"laboris\"\n  },\n  \"workspaces\": [\n    \"ea dolore velit voluptate\",\n    \"consectetur cupidatat magna Lorem amet\"\n  ]\n}"}],"_postman_id":"e6e34a77-9f1a-48ee-a6dc-b92f32fcc7c1"},{"name":"Replace Recentitem","id":"961782a6-b931-418d-8c59-d4b4f544b812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//recentitems/:id","urlObject":{"path":["recentitems",":id"],"host":["/"],"query":[],"variable":[{"id":"54b6561a-a58c-4fec-b49f-b1aac03f2a80","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"931cc813-b9be-4b91-b1c5-c8ea91f6641d","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//recentitems/:id","host":["/"],"path":["recentitems",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"in in Ut ipsum\",\n  \"record_id\": \"sed mollit ad\",\n  \"updated_on\": \"1952-08-04T16:50:52.555Z\",\n  \"updated_by\": \"commod\",\n  \"created_on\": \"2017-10-14T14:20:33.614Z\",\n  \"created_by\": \"magna consectetur adipisicing fugiat\",\n  \"archived\": false,\n  \"archived_on\": \"1954-03-05T19:31:22.254Z\",\n  \"archived_by\": \"enim velit veniam ull\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"volupta\",\n    \"logo\": \"eu proident sit\",\n    \"color\": \"laborum tempor Lorem commodo id\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"pariatur commodo deserunt enim\",\n    \"ad_spend_tracker_url\": \"reprehenderit offi\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"laboris aute minim\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"esse commodo anim eu ullamco\",\n    \"updated_on\": \"2010-12-11T13:21:07.399Z\",\n    \"updated_by\": \"anim et Ut\",\n    \"created_on\": \"2001-03-05T16:57:58.974Z\",\n    \"created_by\": \"reprehenderit incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"2016-11-30T03:38:43.072Z\",\n    \"archived_by\": \"laboris\"\n  },\n  \"workspaces\": [\n    \"ea dolore velit voluptate\",\n    \"consectetur cupidatat magna Lorem amet\"\n  ]\n}"}],"_postman_id":"961782a6-b931-418d-8c59-d4b4f544b812"},{"name":"Update Recentitem","id":"08ef623e-55cd-4b48-861f-f19c2027c425","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//recentitems/:id","urlObject":{"path":["recentitems",":id"],"host":["/"],"query":[],"variable":[{"id":"5469d049-04e6-44cc-bb73-e305f9d361f9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a3a37294-c449-484e-bf69-6ca8354da5ed","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//recentitems/:id","host":["/"],"path":["recentitems",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"in in Ut ipsum\",\n  \"record_id\": \"sed mollit ad\",\n  \"updated_on\": \"1952-08-04T16:50:52.555Z\",\n  \"updated_by\": \"commod\",\n  \"created_on\": \"2017-10-14T14:20:33.614Z\",\n  \"created_by\": \"magna consectetur adipisicing fugiat\",\n  \"archived\": false,\n  \"archived_on\": \"1954-03-05T19:31:22.254Z\",\n  \"archived_by\": \"enim velit veniam ull\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"volupta\",\n    \"logo\": \"eu proident sit\",\n    \"color\": \"laborum tempor Lorem commodo id\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"pariatur commodo deserunt enim\",\n    \"ad_spend_tracker_url\": \"reprehenderit offi\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"laboris aute minim\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"esse commodo anim eu ullamco\",\n    \"updated_on\": \"2010-12-11T13:21:07.399Z\",\n    \"updated_by\": \"anim et Ut\",\n    \"created_on\": \"2001-03-05T16:57:58.974Z\",\n    \"created_by\": \"reprehenderit incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"2016-11-30T03:38:43.072Z\",\n    \"archived_by\": \"laboris\"\n  },\n  \"workspaces\": [\n    \"ea dolore velit voluptate\",\n    \"consectetur cupidatat magna Lorem amet\"\n  ]\n}"}],"_postman_id":"08ef623e-55cd-4b48-861f-f19c2027c425"},{"name":"Archive Recentitem","id":"5d15c7be-852e-4c34-8cd5-ccbc09179b96","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//recentitems/:id","urlObject":{"path":["recentitems",":id"],"host":["/"],"query":[],"variable":[{"id":"00b2979c-98bf-474b-b74e-0b806b9ecbf1","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"17865960-ee72-4b65-8b5c-5c96b978330f","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//recentitems/:id","host":["/"],"path":["recentitems",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"in in Ut ipsum\",\n  \"record_id\": \"sed mollit ad\",\n  \"updated_on\": \"1952-08-04T16:50:52.555Z\",\n  \"updated_by\": \"commod\",\n  \"created_on\": \"2017-10-14T14:20:33.614Z\",\n  \"created_by\": \"magna consectetur adipisicing fugiat\",\n  \"archived\": false,\n  \"archived_on\": \"1954-03-05T19:31:22.254Z\",\n  \"archived_by\": \"enim velit veniam ull\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"volupta\",\n    \"logo\": \"eu proident sit\",\n    \"color\": \"laborum tempor Lorem commodo id\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"pariatur commodo deserunt enim\",\n    \"ad_spend_tracker_url\": \"reprehenderit offi\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"laboris aute minim\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"esse commodo anim eu ullamco\",\n    \"updated_on\": \"2010-12-11T13:21:07.399Z\",\n    \"updated_by\": \"anim et Ut\",\n    \"created_on\": \"2001-03-05T16:57:58.974Z\",\n    \"created_by\": \"reprehenderit incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"2016-11-30T03:38:43.072Z\",\n    \"archived_by\": \"laboris\"\n  },\n  \"workspaces\": [\n    \"ea dolore velit voluptate\",\n    \"consectetur cupidatat magna Lorem amet\"\n  ]\n}"}],"_postman_id":"5d15c7be-852e-4c34-8cd5-ccbc09179b96"},{"name":"Unarchive Recentitem","id":"96662c87-1f17-4a15-90e5-1af25ba2810e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//recentitems/:id/unarchive","urlObject":{"path":["recentitems",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"321a600e-3a52-49a9-82e5-e7167981a20a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"9468bcc1-9b71-44d6-8f71-dc3a6d15b111","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//recentitems/:id/unarchive","host":["/"],"path":["recentitems",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"in in Ut ipsum\",\n  \"record_id\": \"sed mollit ad\",\n  \"updated_on\": \"1952-08-04T16:50:52.555Z\",\n  \"updated_by\": \"commod\",\n  \"created_on\": \"2017-10-14T14:20:33.614Z\",\n  \"created_by\": \"magna consectetur adipisicing fugiat\",\n  \"archived\": false,\n  \"archived_on\": \"1954-03-05T19:31:22.254Z\",\n  \"archived_by\": \"enim velit veniam ull\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"volupta\",\n    \"logo\": \"eu proident sit\",\n    \"color\": \"laborum tempor Lorem commodo id\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"pariatur commodo deserunt enim\",\n    \"ad_spend_tracker_url\": \"reprehenderit offi\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"laboris aute minim\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"esse commodo anim eu ullamco\",\n    \"updated_on\": \"2010-12-11T13:21:07.399Z\",\n    \"updated_by\": \"anim et Ut\",\n    \"created_on\": \"2001-03-05T16:57:58.974Z\",\n    \"created_by\": \"reprehenderit incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"2016-11-30T03:38:43.072Z\",\n    \"archived_by\": \"laboris\"\n  },\n  \"workspaces\": [\n    \"ea dolore velit voluptate\",\n    \"consectetur cupidatat magna Lorem amet\"\n  ]\n}"}],"_postman_id":"96662c87-1f17-4a15-90e5-1af25ba2810e"},{"name":"Delete Recentitem","id":"d2f7b5a9-7708-413b-946c-e9081315c5ae","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//recentitems/:id/delete","urlObject":{"path":["recentitems",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"0ace8323-fe9f-4c91-bfb2-16d178b16a49","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"ffad9c7a-5aae-463e-8b33-d28a09951f4b","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//recentitems/:id/delete","host":["/"],"path":["recentitems",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"in in Ut ipsum\",\n  \"record_id\": \"sed mollit ad\",\n  \"updated_on\": \"1952-08-04T16:50:52.555Z\",\n  \"updated_by\": \"commod\",\n  \"created_on\": \"2017-10-14T14:20:33.614Z\",\n  \"created_by\": \"magna consectetur adipisicing fugiat\",\n  \"archived\": false,\n  \"archived_on\": \"1954-03-05T19:31:22.254Z\",\n  \"archived_by\": \"enim velit veniam ull\",\n  \"organization\": {\n    \"name\": \"sunt\",\n    \"slug\": \"volupta\",\n    \"logo\": \"eu proident sit\",\n    \"color\": \"laborum tempor Lorem commodo id\",\n    \"active\": true,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"pariatur commodo deserunt enim\",\n    \"ad_spend_tracker_url\": \"reprehenderit offi\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"laboris aute minim\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"esse commodo anim eu ullamco\",\n    \"updated_on\": \"2010-12-11T13:21:07.399Z\",\n    \"updated_by\": \"anim et Ut\",\n    \"created_on\": \"2001-03-05T16:57:58.974Z\",\n    \"created_by\": \"reprehenderit incididunt\",\n    \"archived\": false,\n    \"archived_on\": \"2016-11-30T03:38:43.072Z\",\n    \"archived_by\": \"laboris\"\n  },\n  \"workspaces\": [\n    \"ea dolore velit voluptate\",\n    \"consectetur cupidatat magna Lorem amet\"\n  ]\n}"}],"_postman_id":"d2f7b5a9-7708-413b-946c-e9081315c5ae"}],"id":"2e65de5a-ea63-4f73-b211-7860a6020c0b","description":"<p>Recent items allow users to find items they have recently interacted with.</p>\n","_postman_id":"2e65de5a-ea63-4f73-b211-7860a6020c0b"},{"name":"Reports","item":[{"name":"Find All Reports","id":"191a2cbc-8c3e-42cd-9a54-17c7d135421d","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//reports?archived=<boolean>","urlObject":{"path":["reports"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"ab3affa5-71ef-4816-8ecd-065ea70b089c","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//reports?archived=<boolean>","host":["/"],"path":["reports"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"qui tempor\",\n    \"description\": \"sit ad ullamco enim\",\n    \"updated_by\": \"al\",\n    \"created_on\": \"2008-06-28T14:36:45.766Z\",\n    \"created_by\": \"cupidatat eu ut qui\",\n    \"archived\": false,\n    \"archived_on\": \"1996-04-30T21:06:04.429Z\",\n    \"archived_by\": \"laboris ullamco velit veniam\",\n    \"organization\": {\n      \"name\": \"ad tempor\",\n      \"slug\": \"non nisi et\",\n      \"logo\": \"sunt\",\n      \"color\": \"in dolor consectetur\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"aute sunt exercitation ex ipsum\",\n      \"ad_spend_tracker_url\": \"et\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"eu\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"in\",\n      \"updated_on\": \"1952-04-10T19:40:25.993Z\",\n      \"updated_by\": \"dese\",\n      \"created_on\": \"1962-11-17T07:27:11.071Z\",\n      \"created_by\": \"sed Lorem\",\n      \"archived\": true,\n      \"archived_on\": \"1974-08-05T10:46:41.722Z\",\n      \"archived_by\": \"velit eiusmod occaecat dolore\"\n    },\n    \"workspaces\": [\n      \"Duis\",\n      \"dolor fugiat dolore nostrud exercitation\"\n    ]\n  },\n  {\n    \"name\": \"culpa et ipsum sint eiusmod\",\n    \"description\": \"ea\",\n    \"updated_by\": \"ad consequat Lorem fugiat\",\n    \"created_on\": \"1961-01-02T21:22:28.270Z\",\n    \"created_by\": \"Lorem elit ex\",\n    \"archived\": false,\n    \"archived_on\": \"1975-06-26T23:11:02.018Z\",\n    \"archived_by\": \"elit ex lab\",\n    \"organization\": {\n      \"name\": \"in culpa eiusmod aliquip \",\n      \"slug\": \"adipisicing veniam do culpa p\",\n      \"logo\": \"Ut mollit\",\n      \"color\": \"irure sint cillum exercitation in\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"veniam id\",\n      \"ad_spend_tracker_url\": \"proident Excepteur\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aliqua proident\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"proident velit in\",\n      \"updated_on\": \"2006-11-01T18:13:24.063Z\",\n      \"updated_by\": \"in ad dolor\",\n      \"created_on\": \"2016-03-18T00:20:37.783Z\",\n      \"created_by\": \"ex Lorem\",\n      \"archived\": true,\n      \"archived_on\": \"1970-06-27T00:10:00.569Z\",\n      \"archived_by\": \"reprehenderit est sed in\"\n    },\n    \"workspaces\": [\n      \"velit ex commodo\",\n      \"tempor d\"\n    ]\n  }\n]"}],"_postman_id":"191a2cbc-8c3e-42cd-9a54-17c7d135421d"},{"name":"Create Report","id":"ddf84581-b2bf-4b93-a0c7-4e28d3649288","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//reports","urlObject":{"path":["reports"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"33bb3521-52a8-429f-a373-f740713d1fe0","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//reports"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"culpa laborum do\",\n  \"description\": \"reprehenderit commodo Ut\",\n  \"updated_by\": \"amet eu Duis laboris\",\n  \"created_on\": \"1971-05-04T21:47:51.998Z\",\n  \"created_by\": \"nostrud veniam ea ut\",\n  \"archived\": false,\n  \"archived_on\": \"2010-04-07T01:03:09.174Z\",\n  \"archived_by\": \"Ut amet exercitation\",\n  \"organization\": {\n    \"name\": \"quis proident esse\",\n    \"slug\": \"qui enim mollit deserunt\",\n    \"logo\": \"eu dolore qui sit est\",\n    \"color\": \"officia veniam nulla ut\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"dolor Ut et sit mollit\",\n    \"ad_spend_tracker_url\": \"id in reprehenderit magna\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur ex est\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"eu\",\n    \"updated_on\": \"1966-07-06T21:14:10.837Z\",\n    \"updated_by\": \"veniam laboris officia\",\n    \"created_on\": \"1999-02-06T11:41:36.923Z\",\n    \"created_by\": \"est commodo\",\n    \"archived\": true,\n    \"archived_on\": \"2001-05-28T11:52:01.299Z\",\n    \"archived_by\": \"quis in Duis laborum sint\"\n  },\n  \"workspaces\": [\n    \"si\",\n    \"Duis\"\n  ]\n}"}],"_postman_id":"ddf84581-b2bf-4b93-a0c7-4e28d3649288"},{"name":"Count Reports","id":"50348c9e-f505-40ef-a23c-28f94f4ade92","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//reports/count?archived=<boolean>","urlObject":{"path":["reports","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"422ab3cd-a982-4e86-8f6b-0b55e65ff096","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//reports/count?archived=<boolean>","host":["/"],"path":["reports","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"50348c9e-f505-40ef-a23c-28f94f4ade92"},{"name":"Search Reports","id":"3d78e214-d616-4311-be55-285a3656cffc","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//reports/search","urlObject":{"path":["reports","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"95dcd00c-b938-4d25-958d-50d6b18ff8cd","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//reports/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"qui tempor\",\n    \"description\": \"sit ad ullamco enim\",\n    \"updated_by\": \"al\",\n    \"created_on\": \"2008-06-28T14:36:45.766Z\",\n    \"created_by\": \"cupidatat eu ut qui\",\n    \"archived\": false,\n    \"archived_on\": \"1996-04-30T21:06:04.429Z\",\n    \"archived_by\": \"laboris ullamco velit veniam\",\n    \"organization\": {\n      \"name\": \"ad tempor\",\n      \"slug\": \"non nisi et\",\n      \"logo\": \"sunt\",\n      \"color\": \"in dolor consectetur\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"aute sunt exercitation ex ipsum\",\n      \"ad_spend_tracker_url\": \"et\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"eu\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"in\",\n      \"updated_on\": \"1952-04-10T19:40:25.993Z\",\n      \"updated_by\": \"dese\",\n      \"created_on\": \"1962-11-17T07:27:11.071Z\",\n      \"created_by\": \"sed Lorem\",\n      \"archived\": true,\n      \"archived_on\": \"1974-08-05T10:46:41.722Z\",\n      \"archived_by\": \"velit eiusmod occaecat dolore\"\n    },\n    \"workspaces\": [\n      \"Duis\",\n      \"dolor fugiat dolore nostrud exercitation\"\n    ]\n  },\n  {\n    \"name\": \"culpa et ipsum sint eiusmod\",\n    \"description\": \"ea\",\n    \"updated_by\": \"ad consequat Lorem fugiat\",\n    \"created_on\": \"1961-01-02T21:22:28.270Z\",\n    \"created_by\": \"Lorem elit ex\",\n    \"archived\": false,\n    \"archived_on\": \"1975-06-26T23:11:02.018Z\",\n    \"archived_by\": \"elit ex lab\",\n    \"organization\": {\n      \"name\": \"in culpa eiusmod aliquip \",\n      \"slug\": \"adipisicing veniam do culpa p\",\n      \"logo\": \"Ut mollit\",\n      \"color\": \"irure sint cillum exercitation in\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"veniam id\",\n      \"ad_spend_tracker_url\": \"proident Excepteur\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aliqua proident\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"proident velit in\",\n      \"updated_on\": \"2006-11-01T18:13:24.063Z\",\n      \"updated_by\": \"in ad dolor\",\n      \"created_on\": \"2016-03-18T00:20:37.783Z\",\n      \"created_by\": \"ex Lorem\",\n      \"archived\": true,\n      \"archived_on\": \"1970-06-27T00:10:00.569Z\",\n      \"archived_by\": \"reprehenderit est sed in\"\n    },\n    \"workspaces\": [\n      \"velit ex commodo\",\n      \"tempor d\"\n    ]\n  }\n]"}],"_postman_id":"3d78e214-d616-4311-be55-285a3656cffc"},{"name":"Find One Report","id":"65418537-8656-4099-a2b1-82cb0bd1c3d0","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//reports/:id?archived=<boolean>","urlObject":{"path":["reports",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"50e04b6b-2f9e-4f5d-a936-9844ba95ee14","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"b41cb6a7-94d7-4ff7-997b-f7c73b2d8e3f","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//reports/:id?archived=<boolean>","host":["/"],"path":["reports",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"culpa laborum do\",\n  \"description\": \"reprehenderit commodo Ut\",\n  \"updated_by\": \"amet eu Duis laboris\",\n  \"created_on\": \"1971-05-04T21:47:51.998Z\",\n  \"created_by\": \"nostrud veniam ea ut\",\n  \"archived\": false,\n  \"archived_on\": \"2010-04-07T01:03:09.174Z\",\n  \"archived_by\": \"Ut amet exercitation\",\n  \"organization\": {\n    \"name\": \"quis proident esse\",\n    \"slug\": \"qui enim mollit deserunt\",\n    \"logo\": \"eu dolore qui sit est\",\n    \"color\": \"officia veniam nulla ut\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"dolor Ut et sit mollit\",\n    \"ad_spend_tracker_url\": \"id in reprehenderit magna\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur ex est\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"eu\",\n    \"updated_on\": \"1966-07-06T21:14:10.837Z\",\n    \"updated_by\": \"veniam laboris officia\",\n    \"created_on\": \"1999-02-06T11:41:36.923Z\",\n    \"created_by\": \"est commodo\",\n    \"archived\": true,\n    \"archived_on\": \"2001-05-28T11:52:01.299Z\",\n    \"archived_by\": \"quis in Duis laborum sint\"\n  },\n  \"workspaces\": [\n    \"si\",\n    \"Duis\"\n  ]\n}"}],"_postman_id":"65418537-8656-4099-a2b1-82cb0bd1c3d0"},{"name":"Replace Report","id":"6c696125-d23c-4d2c-b0d9-91208290c928","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//reports/:id","urlObject":{"path":["reports",":id"],"host":["/"],"query":[],"variable":[{"id":"48b09b96-1395-413a-836a-36782cbecc96","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"c861d61f-0e98-4027-b195-0758e44c60d9","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//reports/:id","host":["/"],"path":["reports",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"culpa laborum do\",\n  \"description\": \"reprehenderit commodo Ut\",\n  \"updated_by\": \"amet eu Duis laboris\",\n  \"created_on\": \"1971-05-04T21:47:51.998Z\",\n  \"created_by\": \"nostrud veniam ea ut\",\n  \"archived\": false,\n  \"archived_on\": \"2010-04-07T01:03:09.174Z\",\n  \"archived_by\": \"Ut amet exercitation\",\n  \"organization\": {\n    \"name\": \"quis proident esse\",\n    \"slug\": \"qui enim mollit deserunt\",\n    \"logo\": \"eu dolore qui sit est\",\n    \"color\": \"officia veniam nulla ut\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"dolor Ut et sit mollit\",\n    \"ad_spend_tracker_url\": \"id in reprehenderit magna\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur ex est\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"eu\",\n    \"updated_on\": \"1966-07-06T21:14:10.837Z\",\n    \"updated_by\": \"veniam laboris officia\",\n    \"created_on\": \"1999-02-06T11:41:36.923Z\",\n    \"created_by\": \"est commodo\",\n    \"archived\": true,\n    \"archived_on\": \"2001-05-28T11:52:01.299Z\",\n    \"archived_by\": \"quis in Duis laborum sint\"\n  },\n  \"workspaces\": [\n    \"si\",\n    \"Duis\"\n  ]\n}"}],"_postman_id":"6c696125-d23c-4d2c-b0d9-91208290c928"},{"name":"Update Report","id":"5f512cee-1595-4920-8c60-96de7b0a6111","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//reports/:id","urlObject":{"path":["reports",":id"],"host":["/"],"query":[],"variable":[{"id":"37316398-f2d6-46dd-b81e-aba8b4f5aa04","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"b7e46f7a-0c0d-45d1-800e-34e7d1a39431","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"description\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//reports/:id","host":["/"],"path":["reports",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"culpa laborum do\",\n  \"description\": \"reprehenderit commodo Ut\",\n  \"updated_by\": \"amet eu Duis laboris\",\n  \"created_on\": \"1971-05-04T21:47:51.998Z\",\n  \"created_by\": \"nostrud veniam ea ut\",\n  \"archived\": false,\n  \"archived_on\": \"2010-04-07T01:03:09.174Z\",\n  \"archived_by\": \"Ut amet exercitation\",\n  \"organization\": {\n    \"name\": \"quis proident esse\",\n    \"slug\": \"qui enim mollit deserunt\",\n    \"logo\": \"eu dolore qui sit est\",\n    \"color\": \"officia veniam nulla ut\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"dolor Ut et sit mollit\",\n    \"ad_spend_tracker_url\": \"id in reprehenderit magna\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur ex est\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"eu\",\n    \"updated_on\": \"1966-07-06T21:14:10.837Z\",\n    \"updated_by\": \"veniam laboris officia\",\n    \"created_on\": \"1999-02-06T11:41:36.923Z\",\n    \"created_by\": \"est commodo\",\n    \"archived\": true,\n    \"archived_on\": \"2001-05-28T11:52:01.299Z\",\n    \"archived_by\": \"quis in Duis laborum sint\"\n  },\n  \"workspaces\": [\n    \"si\",\n    \"Duis\"\n  ]\n}"}],"_postman_id":"5f512cee-1595-4920-8c60-96de7b0a6111"},{"name":"Archive Report","id":"354b634b-4a5c-49df-be0a-f31edb153e6d","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//reports/:id","urlObject":{"path":["reports",":id"],"host":["/"],"query":[],"variable":[{"id":"e819dfa3-6f61-4469-9d6d-b6a972a8a147","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a4bc2d93-a26f-4a99-ac37-1f062a9db1e8","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//reports/:id","host":["/"],"path":["reports",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"culpa laborum do\",\n  \"description\": \"reprehenderit commodo Ut\",\n  \"updated_by\": \"amet eu Duis laboris\",\n  \"created_on\": \"1971-05-04T21:47:51.998Z\",\n  \"created_by\": \"nostrud veniam ea ut\",\n  \"archived\": false,\n  \"archived_on\": \"2010-04-07T01:03:09.174Z\",\n  \"archived_by\": \"Ut amet exercitation\",\n  \"organization\": {\n    \"name\": \"quis proident esse\",\n    \"slug\": \"qui enim mollit deserunt\",\n    \"logo\": \"eu dolore qui sit est\",\n    \"color\": \"officia veniam nulla ut\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"dolor Ut et sit mollit\",\n    \"ad_spend_tracker_url\": \"id in reprehenderit magna\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur ex est\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"eu\",\n    \"updated_on\": \"1966-07-06T21:14:10.837Z\",\n    \"updated_by\": \"veniam laboris officia\",\n    \"created_on\": \"1999-02-06T11:41:36.923Z\",\n    \"created_by\": \"est commodo\",\n    \"archived\": true,\n    \"archived_on\": \"2001-05-28T11:52:01.299Z\",\n    \"archived_by\": \"quis in Duis laborum sint\"\n  },\n  \"workspaces\": [\n    \"si\",\n    \"Duis\"\n  ]\n}"}],"_postman_id":"354b634b-4a5c-49df-be0a-f31edb153e6d"},{"name":"Unarchive Report","id":"38032246-3e7d-426a-88e7-7864f3812fae","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//reports/:id/unarchive","urlObject":{"path":["reports",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"137124ff-0e8f-40a3-8078-58b8e025f228","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"d37c54c5-e238-4726-8c3d-63f1443f6dc0","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//reports/:id/unarchive","host":["/"],"path":["reports",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"culpa laborum do\",\n  \"description\": \"reprehenderit commodo Ut\",\n  \"updated_by\": \"amet eu Duis laboris\",\n  \"created_on\": \"1971-05-04T21:47:51.998Z\",\n  \"created_by\": \"nostrud veniam ea ut\",\n  \"archived\": false,\n  \"archived_on\": \"2010-04-07T01:03:09.174Z\",\n  \"archived_by\": \"Ut amet exercitation\",\n  \"organization\": {\n    \"name\": \"quis proident esse\",\n    \"slug\": \"qui enim mollit deserunt\",\n    \"logo\": \"eu dolore qui sit est\",\n    \"color\": \"officia veniam nulla ut\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"dolor Ut et sit mollit\",\n    \"ad_spend_tracker_url\": \"id in reprehenderit magna\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur ex est\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"eu\",\n    \"updated_on\": \"1966-07-06T21:14:10.837Z\",\n    \"updated_by\": \"veniam laboris officia\",\n    \"created_on\": \"1999-02-06T11:41:36.923Z\",\n    \"created_by\": \"est commodo\",\n    \"archived\": true,\n    \"archived_on\": \"2001-05-28T11:52:01.299Z\",\n    \"archived_by\": \"quis in Duis laborum sint\"\n  },\n  \"workspaces\": [\n    \"si\",\n    \"Duis\"\n  ]\n}"}],"_postman_id":"38032246-3e7d-426a-88e7-7864f3812fae"},{"name":"Delete Report","id":"dab740c2-7b10-4b91-b428-a858abb19ae8","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//reports/:id/delete","urlObject":{"path":["reports",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"4457724c-0771-43ea-b1e4-4f8b6e27c213","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"6f2e1925-c65e-4343-98c8-4fa4c9bbdfbc","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//reports/:id/delete","host":["/"],"path":["reports",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"culpa laborum do\",\n  \"description\": \"reprehenderit commodo Ut\",\n  \"updated_by\": \"amet eu Duis laboris\",\n  \"created_on\": \"1971-05-04T21:47:51.998Z\",\n  \"created_by\": \"nostrud veniam ea ut\",\n  \"archived\": false,\n  \"archived_on\": \"2010-04-07T01:03:09.174Z\",\n  \"archived_by\": \"Ut amet exercitation\",\n  \"organization\": {\n    \"name\": \"quis proident esse\",\n    \"slug\": \"qui enim mollit deserunt\",\n    \"logo\": \"eu dolore qui sit est\",\n    \"color\": \"officia veniam nulla ut\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"dolor Ut et sit mollit\",\n    \"ad_spend_tracker_url\": \"id in reprehenderit magna\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"consectetur ex est\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"eu\",\n    \"updated_on\": \"1966-07-06T21:14:10.837Z\",\n    \"updated_by\": \"veniam laboris officia\",\n    \"created_on\": \"1999-02-06T11:41:36.923Z\",\n    \"created_by\": \"est commodo\",\n    \"archived\": true,\n    \"archived_on\": \"2001-05-28T11:52:01.299Z\",\n    \"archived_by\": \"quis in Duis laborum sint\"\n  },\n  \"workspaces\": [\n    \"si\",\n    \"Duis\"\n  ]\n}"}],"_postman_id":"dab740c2-7b10-4b91-b428-a858abb19ae8"}],"id":"0032ce7c-061a-450d-a10e-52dd863f15c4","description":"<p>Reports provide analytics about your advertising such as impressions, clicks, populars links etc. This information can be helpful to better understand the impact of your advertising efforts. </p>\n","_postman_id":"0032ce7c-061a-450d-a10e-52dd863f15c4"},{"name":"Sharelinks","item":[{"name":"Find All Sharelinks","id":"780c6759-0557-41ef-ba97-fbe487c9797a","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//sharelinks?archived=<boolean>","urlObject":{"path":["sharelinks"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"bf8cbc87-9637-4022-9c72-0629706af3c0","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//sharelinks?archived=<boolean>","host":["/"],"path":["sharelinks"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"record_type\": \"voluptate et\",\n    \"record_id\": \"cupidatat cillum\",\n    \"visibility\": \"labore consequat nostrud qui\",\n    \"updated_on\": \"2003-11-24T07:09:47.430Z\",\n    \"updated_by\": \"qui anim\",\n    \"created_on\": \"1968-05-01T10:23:28.886Z\",\n    \"created_by\": \"labore\",\n    \"archived\": false,\n    \"archived_on\": \"1978-09-17T22:38:07.360Z\",\n    \"archived_by\": \"Ut ullamco\",\n    \"organization\": {\n      \"name\": \"Excepteur aute\",\n      \"slug\": \"ea\",\n      \"logo\": \"eiusmod qui deserunt\",\n      \"color\": \"laboris anim sed\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"nulla magna\",\n      \"ad_spend_tracker_url\": \"irure aliquip do\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"in in est\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"velit ex\",\n      \"updated_on\": \"2000-09-09T03:43:31.290Z\",\n      \"updated_by\": \"elit Ut sit\",\n      \"created_on\": \"1948-09-23T04:16:38.223Z\",\n      \"created_by\": \"aliqua laboris irure ullamco aliquip\",\n      \"archived\": true,\n      \"archived_on\": \"1946-12-19T13:34:58.777Z\",\n      \"archived_by\": \"sit adipisicing occ\"\n    },\n    \"workspaces\": [\n      \"pariatur reprehenderit eiusmod laboris eu\",\n      \"sed eiusmod ut\"\n    ]\n  },\n  {\n    \"record_type\": \"sunt dolore\",\n    \"record_id\": \"dolor\",\n    \"visibility\": \"deserunt ad eiusmod\",\n    \"updated_on\": \"1963-06-27T00:57:37.954Z\",\n    \"updated_by\": \"esse incididunt dolor adipisicing\",\n    \"created_on\": \"1975-01-30T06:31:07.419Z\",\n    \"created_by\": \"mollit sit consequat\",\n    \"archived\": true,\n    \"archived_on\": \"1962-07-29T16:33:36.203Z\",\n    \"archived_by\": \"laboris id magna\",\n    \"organization\": {\n      \"name\": \"velit \",\n      \"slug\": \"nisi laboris est ea et\",\n      \"logo\": \"tempor\",\n      \"color\": \"sed ex officia dolor\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"eu incididunt\",\n      \"ad_spend_tracker_url\": \"magna laborum incididunt\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"consectetur eiusm\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"in culpa velit commodo\",\n      \"updated_on\": \"2005-08-10T15:23:51.915Z\",\n      \"updated_by\": \"id magna minim et\",\n      \"created_on\": \"2005-10-23T20:13:31.364Z\",\n      \"created_by\": \"sed in enim ut \",\n      \"archived\": true,\n      \"archived_on\": \"2015-11-26T14:05:34.701Z\",\n      \"archived_by\": \"sint nisi anim minim sed\"\n    },\n    \"workspaces\": [\n      \"consectetur\",\n      \"officia ut\"\n    ]\n  }\n]"}],"_postman_id":"780c6759-0557-41ef-ba97-fbe487c9797a"},{"name":"Create Sharelink","id":"b982478f-9e77-47b3-adae-3b543da0d011","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\",\n  \"visibility\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//sharelinks","urlObject":{"path":["sharelinks"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"86c0763b-4694-4255-abf0-783eddbd10c1","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\",\n  \"visibility\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//sharelinks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"nulla eu ex\",\n  \"record_id\": \"laboris dolor mollit\",\n  \"visibility\": \"nostrud anim\",\n  \"updated_on\": \"1997-09-23T05:24:35.231Z\",\n  \"updated_by\": \"aliquip veniam\",\n  \"created_on\": \"1975-12-14T10:37:56.432Z\",\n  \"created_by\": \"Excepteur aliqua culpa\",\n  \"archived\": true,\n  \"archived_on\": \"1972-06-30T11:49:11.397Z\",\n  \"archived_by\": \"labore cillum Ut eu ex\",\n  \"organization\": {\n    \"name\": \"aliquip mollit culpa\",\n    \"slug\": \"enim\",\n    \"logo\": \"minim incididunt nisi nulla\",\n    \"color\": \"qui do minim dolor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"ea Duis\",\n    \"ad_spend_tracker_url\": \"voluptate sed consequat oc\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit magna in ut\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"non in et dolore\",\n    \"updated_on\": \"1998-07-26T09:32:59.540Z\",\n    \"updated_by\": \"amet magna\",\n    \"created_on\": \"2015-10-27T03:40:16.566Z\",\n    \"created_by\": \"ut minim\",\n    \"archived\": false,\n    \"archived_on\": \"1984-04-10T10:49:35.076Z\",\n    \"archived_by\": \"qui anim enim commodo\"\n  },\n  \"workspaces\": [\n    \"commodo aliqua Ut\",\n    \"minim labore fugiat\"\n  ]\n}"}],"_postman_id":"b982478f-9e77-47b3-adae-3b543da0d011"},{"name":"Count Sharelinks","id":"d759577d-8caf-47f0-8d82-4c6e1ef1a631","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//sharelinks/count?archived=<boolean>","urlObject":{"path":["sharelinks","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"d85f2580-dc41-45bf-859f-943ad98d14ce","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//sharelinks/count?archived=<boolean>","host":["/"],"path":["sharelinks","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"d759577d-8caf-47f0-8d82-4c6e1ef1a631"},{"name":"Search Sharelinks","id":"a349ad46-d426-43af-8314-084dfee038e0","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//sharelinks/search","urlObject":{"path":["sharelinks","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"fb7f2606-0a00-422a-a0bd-2c795e06f1e4","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//sharelinks/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"record_type\": \"voluptate et\",\n    \"record_id\": \"cupidatat cillum\",\n    \"visibility\": \"labore consequat nostrud qui\",\n    \"updated_on\": \"2003-11-24T07:09:47.430Z\",\n    \"updated_by\": \"qui anim\",\n    \"created_on\": \"1968-05-01T10:23:28.886Z\",\n    \"created_by\": \"labore\",\n    \"archived\": false,\n    \"archived_on\": \"1978-09-17T22:38:07.360Z\",\n    \"archived_by\": \"Ut ullamco\",\n    \"organization\": {\n      \"name\": \"Excepteur aute\",\n      \"slug\": \"ea\",\n      \"logo\": \"eiusmod qui deserunt\",\n      \"color\": \"laboris anim sed\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"nulla magna\",\n      \"ad_spend_tracker_url\": \"irure aliquip do\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"in in est\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"velit ex\",\n      \"updated_on\": \"2000-09-09T03:43:31.290Z\",\n      \"updated_by\": \"elit Ut sit\",\n      \"created_on\": \"1948-09-23T04:16:38.223Z\",\n      \"created_by\": \"aliqua laboris irure ullamco aliquip\",\n      \"archived\": true,\n      \"archived_on\": \"1946-12-19T13:34:58.777Z\",\n      \"archived_by\": \"sit adipisicing occ\"\n    },\n    \"workspaces\": [\n      \"pariatur reprehenderit eiusmod laboris eu\",\n      \"sed eiusmod ut\"\n    ]\n  },\n  {\n    \"record_type\": \"sunt dolore\",\n    \"record_id\": \"dolor\",\n    \"visibility\": \"deserunt ad eiusmod\",\n    \"updated_on\": \"1963-06-27T00:57:37.954Z\",\n    \"updated_by\": \"esse incididunt dolor adipisicing\",\n    \"created_on\": \"1975-01-30T06:31:07.419Z\",\n    \"created_by\": \"mollit sit consequat\",\n    \"archived\": true,\n    \"archived_on\": \"1962-07-29T16:33:36.203Z\",\n    \"archived_by\": \"laboris id magna\",\n    \"organization\": {\n      \"name\": \"velit \",\n      \"slug\": \"nisi laboris est ea et\",\n      \"logo\": \"tempor\",\n      \"color\": \"sed ex officia dolor\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"eu incididunt\",\n      \"ad_spend_tracker_url\": \"magna laborum incididunt\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"consectetur eiusm\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"in culpa velit commodo\",\n      \"updated_on\": \"2005-08-10T15:23:51.915Z\",\n      \"updated_by\": \"id magna minim et\",\n      \"created_on\": \"2005-10-23T20:13:31.364Z\",\n      \"created_by\": \"sed in enim ut \",\n      \"archived\": true,\n      \"archived_on\": \"2015-11-26T14:05:34.701Z\",\n      \"archived_by\": \"sint nisi anim minim sed\"\n    },\n    \"workspaces\": [\n      \"consectetur\",\n      \"officia ut\"\n    ]\n  }\n]"}],"_postman_id":"a349ad46-d426-43af-8314-084dfee038e0"},{"name":"Find One Sharelink","id":"20167c52-f283-4f3c-bc07-29d6c8090c57","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//sharelinks/:id?archived=<boolean>","urlObject":{"path":["sharelinks",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"9a874171-af0e-4760-8f93-348ac03b71bb","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"baf03b53-9977-48f7-9e29-b992f5e20089","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//sharelinks/:id?archived=<boolean>","host":["/"],"path":["sharelinks",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"nulla eu ex\",\n  \"record_id\": \"laboris dolor mollit\",\n  \"visibility\": \"nostrud anim\",\n  \"updated_on\": \"1997-09-23T05:24:35.231Z\",\n  \"updated_by\": \"aliquip veniam\",\n  \"created_on\": \"1975-12-14T10:37:56.432Z\",\n  \"created_by\": \"Excepteur aliqua culpa\",\n  \"archived\": true,\n  \"archived_on\": \"1972-06-30T11:49:11.397Z\",\n  \"archived_by\": \"labore cillum Ut eu ex\",\n  \"organization\": {\n    \"name\": \"aliquip mollit culpa\",\n    \"slug\": \"enim\",\n    \"logo\": \"minim incididunt nisi nulla\",\n    \"color\": \"qui do minim dolor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"ea Duis\",\n    \"ad_spend_tracker_url\": \"voluptate sed consequat oc\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit magna in ut\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"non in et dolore\",\n    \"updated_on\": \"1998-07-26T09:32:59.540Z\",\n    \"updated_by\": \"amet magna\",\n    \"created_on\": \"2015-10-27T03:40:16.566Z\",\n    \"created_by\": \"ut minim\",\n    \"archived\": false,\n    \"archived_on\": \"1984-04-10T10:49:35.076Z\",\n    \"archived_by\": \"qui anim enim commodo\"\n  },\n  \"workspaces\": [\n    \"commodo aliqua Ut\",\n    \"minim labore fugiat\"\n  ]\n}"}],"_postman_id":"20167c52-f283-4f3c-bc07-29d6c8090c57"},{"name":"Replace Sharelink","id":"4111b262-cfea-448c-bd6a-9144055d51f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\",\n  \"visibility\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//sharelinks/:id","urlObject":{"path":["sharelinks",":id"],"host":["/"],"query":[],"variable":[{"id":"c7be18e8-f5ea-4123-a756-0a4831222adc","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"c2ec65a5-2dcb-4455-b0c0-84721522d6eb","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\",\n  \"visibility\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//sharelinks/:id","host":["/"],"path":["sharelinks",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"nulla eu ex\",\n  \"record_id\": \"laboris dolor mollit\",\n  \"visibility\": \"nostrud anim\",\n  \"updated_on\": \"1997-09-23T05:24:35.231Z\",\n  \"updated_by\": \"aliquip veniam\",\n  \"created_on\": \"1975-12-14T10:37:56.432Z\",\n  \"created_by\": \"Excepteur aliqua culpa\",\n  \"archived\": true,\n  \"archived_on\": \"1972-06-30T11:49:11.397Z\",\n  \"archived_by\": \"labore cillum Ut eu ex\",\n  \"organization\": {\n    \"name\": \"aliquip mollit culpa\",\n    \"slug\": \"enim\",\n    \"logo\": \"minim incididunt nisi nulla\",\n    \"color\": \"qui do minim dolor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"ea Duis\",\n    \"ad_spend_tracker_url\": \"voluptate sed consequat oc\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit magna in ut\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"non in et dolore\",\n    \"updated_on\": \"1998-07-26T09:32:59.540Z\",\n    \"updated_by\": \"amet magna\",\n    \"created_on\": \"2015-10-27T03:40:16.566Z\",\n    \"created_by\": \"ut minim\",\n    \"archived\": false,\n    \"archived_on\": \"1984-04-10T10:49:35.076Z\",\n    \"archived_by\": \"qui anim enim commodo\"\n  },\n  \"workspaces\": [\n    \"commodo aliqua Ut\",\n    \"minim labore fugiat\"\n  ]\n}"}],"_postman_id":"4111b262-cfea-448c-bd6a-9144055d51f1"},{"name":"Update Sharelink","id":"d54d7a35-ac39-45e3-a204-9a58fea1ed4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\",\n  \"visibility\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//sharelinks/:id","urlObject":{"path":["sharelinks",":id"],"host":["/"],"query":[],"variable":[{"id":"dd2f9edf-0709-4ea0-b02f-5db804c6fa53","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"72d8b068-c8ca-481f-8da4-01dcd746c2fa","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"record_type\": \"<string>\",\n  \"record_id\": \"<string>\",\n  \"visibility\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//sharelinks/:id","host":["/"],"path":["sharelinks",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"nulla eu ex\",\n  \"record_id\": \"laboris dolor mollit\",\n  \"visibility\": \"nostrud anim\",\n  \"updated_on\": \"1997-09-23T05:24:35.231Z\",\n  \"updated_by\": \"aliquip veniam\",\n  \"created_on\": \"1975-12-14T10:37:56.432Z\",\n  \"created_by\": \"Excepteur aliqua culpa\",\n  \"archived\": true,\n  \"archived_on\": \"1972-06-30T11:49:11.397Z\",\n  \"archived_by\": \"labore cillum Ut eu ex\",\n  \"organization\": {\n    \"name\": \"aliquip mollit culpa\",\n    \"slug\": \"enim\",\n    \"logo\": \"minim incididunt nisi nulla\",\n    \"color\": \"qui do minim dolor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"ea Duis\",\n    \"ad_spend_tracker_url\": \"voluptate sed consequat oc\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit magna in ut\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"non in et dolore\",\n    \"updated_on\": \"1998-07-26T09:32:59.540Z\",\n    \"updated_by\": \"amet magna\",\n    \"created_on\": \"2015-10-27T03:40:16.566Z\",\n    \"created_by\": \"ut minim\",\n    \"archived\": false,\n    \"archived_on\": \"1984-04-10T10:49:35.076Z\",\n    \"archived_by\": \"qui anim enim commodo\"\n  },\n  \"workspaces\": [\n    \"commodo aliqua Ut\",\n    \"minim labore fugiat\"\n  ]\n}"}],"_postman_id":"d54d7a35-ac39-45e3-a204-9a58fea1ed4c"},{"name":"Archive Sharelink","id":"6aabbabc-3f5e-4737-a66f-247aa4c7cd33","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//sharelinks/:id","urlObject":{"path":["sharelinks",":id"],"host":["/"],"query":[],"variable":[{"id":"c251d872-848e-4f88-a545-7126f0efc2ef","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"10fe7b89-0c42-4460-94ab-c552edf09fb8","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//sharelinks/:id","host":["/"],"path":["sharelinks",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"nulla eu ex\",\n  \"record_id\": \"laboris dolor mollit\",\n  \"visibility\": \"nostrud anim\",\n  \"updated_on\": \"1997-09-23T05:24:35.231Z\",\n  \"updated_by\": \"aliquip veniam\",\n  \"created_on\": \"1975-12-14T10:37:56.432Z\",\n  \"created_by\": \"Excepteur aliqua culpa\",\n  \"archived\": true,\n  \"archived_on\": \"1972-06-30T11:49:11.397Z\",\n  \"archived_by\": \"labore cillum Ut eu ex\",\n  \"organization\": {\n    \"name\": \"aliquip mollit culpa\",\n    \"slug\": \"enim\",\n    \"logo\": \"minim incididunt nisi nulla\",\n    \"color\": \"qui do minim dolor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"ea Duis\",\n    \"ad_spend_tracker_url\": \"voluptate sed consequat oc\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit magna in ut\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"non in et dolore\",\n    \"updated_on\": \"1998-07-26T09:32:59.540Z\",\n    \"updated_by\": \"amet magna\",\n    \"created_on\": \"2015-10-27T03:40:16.566Z\",\n    \"created_by\": \"ut minim\",\n    \"archived\": false,\n    \"archived_on\": \"1984-04-10T10:49:35.076Z\",\n    \"archived_by\": \"qui anim enim commodo\"\n  },\n  \"workspaces\": [\n    \"commodo aliqua Ut\",\n    \"minim labore fugiat\"\n  ]\n}"}],"_postman_id":"6aabbabc-3f5e-4737-a66f-247aa4c7cd33"},{"name":"Unarchive Sharelink","id":"e99a005e-6cff-4123-a192-3cdaf74ce737","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//sharelinks/:id/unarchive","urlObject":{"path":["sharelinks",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"94dbc8a4-0467-4d02-b4be-2effc312b85e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"eca82119-c474-4ebe-a7cf-46d53f0b8e1b","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//sharelinks/:id/unarchive","host":["/"],"path":["sharelinks",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"nulla eu ex\",\n  \"record_id\": \"laboris dolor mollit\",\n  \"visibility\": \"nostrud anim\",\n  \"updated_on\": \"1997-09-23T05:24:35.231Z\",\n  \"updated_by\": \"aliquip veniam\",\n  \"created_on\": \"1975-12-14T10:37:56.432Z\",\n  \"created_by\": \"Excepteur aliqua culpa\",\n  \"archived\": true,\n  \"archived_on\": \"1972-06-30T11:49:11.397Z\",\n  \"archived_by\": \"labore cillum Ut eu ex\",\n  \"organization\": {\n    \"name\": \"aliquip mollit culpa\",\n    \"slug\": \"enim\",\n    \"logo\": \"minim incididunt nisi nulla\",\n    \"color\": \"qui do minim dolor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"ea Duis\",\n    \"ad_spend_tracker_url\": \"voluptate sed consequat oc\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit magna in ut\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"non in et dolore\",\n    \"updated_on\": \"1998-07-26T09:32:59.540Z\",\n    \"updated_by\": \"amet magna\",\n    \"created_on\": \"2015-10-27T03:40:16.566Z\",\n    \"created_by\": \"ut minim\",\n    \"archived\": false,\n    \"archived_on\": \"1984-04-10T10:49:35.076Z\",\n    \"archived_by\": \"qui anim enim commodo\"\n  },\n  \"workspaces\": [\n    \"commodo aliqua Ut\",\n    \"minim labore fugiat\"\n  ]\n}"}],"_postman_id":"e99a005e-6cff-4123-a192-3cdaf74ce737"},{"name":"Delete Sharelink","id":"afdee730-16aa-4cdd-b279-0765371cd5c5","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//sharelinks/:id/delete","urlObject":{"path":["sharelinks",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"da1e7903-41d4-4d99-9d7a-436256d57a16","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"18242d1f-d35b-4199-9da2-7acb2aacf57d","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//sharelinks/:id/delete","host":["/"],"path":["sharelinks",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"record_type\": \"nulla eu ex\",\n  \"record_id\": \"laboris dolor mollit\",\n  \"visibility\": \"nostrud anim\",\n  \"updated_on\": \"1997-09-23T05:24:35.231Z\",\n  \"updated_by\": \"aliquip veniam\",\n  \"created_on\": \"1975-12-14T10:37:56.432Z\",\n  \"created_by\": \"Excepteur aliqua culpa\",\n  \"archived\": true,\n  \"archived_on\": \"1972-06-30T11:49:11.397Z\",\n  \"archived_by\": \"labore cillum Ut eu ex\",\n  \"organization\": {\n    \"name\": \"aliquip mollit culpa\",\n    \"slug\": \"enim\",\n    \"logo\": \"minim incididunt nisi nulla\",\n    \"color\": \"qui do minim dolor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"ea Duis\",\n    \"ad_spend_tracker_url\": \"voluptate sed consequat oc\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"velit magna in ut\",\n    \"teams_enabled\": true,\n    \"teams_url\": \"non in et dolore\",\n    \"updated_on\": \"1998-07-26T09:32:59.540Z\",\n    \"updated_by\": \"amet magna\",\n    \"created_on\": \"2015-10-27T03:40:16.566Z\",\n    \"created_by\": \"ut minim\",\n    \"archived\": false,\n    \"archived_on\": \"1984-04-10T10:49:35.076Z\",\n    \"archived_by\": \"qui anim enim commodo\"\n  },\n  \"workspaces\": [\n    \"commodo aliqua Ut\",\n    \"minim labore fugiat\"\n  ]\n}"}],"_postman_id":"afdee730-16aa-4cdd-b279-0765371cd5c5"}],"id":"d3015762-9cc9-440b-80c9-21a4661361ad","description":"<p>Share links allow Guest or External users the ability to view certain resources within the Platform without having to login. </p>\n","_postman_id":"d3015762-9cc9-440b-80c9-21a4661361ad"},{"name":"Tags","item":[{"name":"Find All Tags","id":"ee4c778a-98a8-4ba0-bc92-8ba1cf467f6a","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//tags?archived=<boolean>","urlObject":{"path":["tags"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"702fe2a7-3adf-4534-ba77-ad3b122d3d11","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//tags?archived=<boolean>","host":["/"],"path":["tags"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"Excepteur quis aute\",\n    \"auto_generated\": false,\n    \"updated_by\": \"laborum nisi in\",\n    \"created_on\": \"2006-09-10T23:32:03.541Z\",\n    \"created_by\": \"anim elit ex reprehenderit\",\n    \"archived\": false,\n    \"archived_on\": \"2005-03-26T22:44:19.313Z\",\n    \"archived_by\": \"consectetur amet aliqua tempor sit\",\n    \"organization\": {\n      \"name\": \"ea in sint consectetur elit\",\n      \"slug\": \"deserunt magna culpa\",\n      \"logo\": \"labore in ullamco est\",\n      \"color\": \"laboris\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"sunt Lorem minim in\",\n      \"ad_spend_tracker_url\": \"reprehenderit consequat aliqua qui irure\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"magna\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"dolore ad qui in\",\n      \"updated_on\": \"1990-08-31T09:00:20.029Z\",\n      \"updated_by\": \"esse nulla ex nisi\",\n      \"created_on\": \"2017-05-25T23:02:34.475Z\",\n      \"created_by\": \"aliquip enim do\",\n      \"archived\": false,\n      \"archived_on\": \"1950-06-29T09:18:03.681Z\",\n      \"archived_by\": \"in consequat id eu quis\"\n    },\n    \"workspaces\": [\n      \"dolor do qui\",\n      \"minim do\"\n    ]\n  },\n  {\n    \"name\": \"esse magna culpa\",\n    \"auto_generated\": true,\n    \"updated_by\": \"in\",\n    \"created_on\": \"2019-04-27T09:13:10.485Z\",\n    \"created_by\": \"nisi ex pariatur Ut\",\n    \"archived\": false,\n    \"archived_on\": \"1973-01-23T19:35:10.368Z\",\n    \"archived_by\": \"sint ad Excepteur\",\n    \"organization\": {\n      \"name\": \"sed lab\",\n      \"slug\": \"tempor adipisicing dolor dolore\",\n      \"logo\": \"commodo dolore\",\n      \"color\": \"Ut labore in\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"exercitation incididunt\",\n      \"ad_spend_tracker_url\": \"et enim\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"Duis occaecat in\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"ad\",\n      \"updated_on\": \"2016-11-05T16:46:37.015Z\",\n      \"updated_by\": \"officia esse\",\n      \"created_on\": \"1949-07-25T04:13:53.469Z\",\n      \"created_by\": \"anim\",\n      \"archived\": false,\n      \"archived_on\": \"1968-11-12T04:07:04.506Z\",\n      \"archived_by\": \"adipisicing tempor\"\n    },\n    \"workspaces\": [\n      \"aute irure commodo ea\",\n      \"proident reprehenderit\"\n    ]\n  }\n]"}],"_postman_id":"ee4c778a-98a8-4ba0-bc92-8ba1cf467f6a"},{"name":"Create Tag","id":"f986de11-8d21-416f-ab07-a0772943045f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"auto_generated\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//tags","urlObject":{"path":["tags"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"e6374fbd-42c5-4a8a-aa60-1040d91d62b9","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"auto_generated\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//tags"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"velit magna minim amet\",\n  \"auto_generated\": true,\n  \"updated_by\": \"consequat magna\",\n  \"created_on\": \"2013-08-07T07:08:09.862Z\",\n  \"created_by\": \"veniam\",\n  \"archived\": false,\n  \"archived_on\": \"1978-05-09T19:15:20.661Z\",\n  \"archived_by\": \"nostrud amet\",\n  \"organization\": {\n    \"name\": \"velit ex qui ipsum\",\n    \"slug\": \"qui\",\n    \"logo\": \"veniam aute amet quis\",\n    \"color\": \"Lorem adipisicing in ad\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"et pariatur\",\n    \"ad_spend_tracker_url\": \"adipisicing ut\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"irure exercitation ut anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolore tempor dolor labori\",\n    \"updated_on\": \"2000-09-06T08:48:20.285Z\",\n    \"updated_by\": \"dolor Lorem\",\n    \"created_on\": \"2001-09-26T01:51:47.241Z\",\n    \"created_by\": \"aute laboris aliqua\",\n    \"archived\": true,\n    \"archived_on\": \"2002-12-22T20:47:23.825Z\",\n    \"archived_by\": \"dolor cupidatat magna\"\n  },\n  \"workspaces\": [\n    \"aute adipisicing\",\n    \"in nisi minim exercitation cillum\"\n  ]\n}"}],"_postman_id":"f986de11-8d21-416f-ab07-a0772943045f"},{"name":"Count Tags","id":"85415c43-9c36-4c22-83a6-3ccd7a77d510","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//tags/count?archived=<boolean>","urlObject":{"path":["tags","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"2a6840a4-11f0-4676-b87a-30d336f37230","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//tags/count?archived=<boolean>","host":["/"],"path":["tags","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"85415c43-9c36-4c22-83a6-3ccd7a77d510"},{"name":"Search Tags","id":"0c28fd4b-7afe-444a-89c7-acd5060b3b02","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//tags/search","urlObject":{"path":["tags","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"4e5c4776-e6e7-4747-a1ae-0c202139f731","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//tags/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"Excepteur quis aute\",\n    \"auto_generated\": false,\n    \"updated_by\": \"laborum nisi in\",\n    \"created_on\": \"2006-09-10T23:32:03.541Z\",\n    \"created_by\": \"anim elit ex reprehenderit\",\n    \"archived\": false,\n    \"archived_on\": \"2005-03-26T22:44:19.313Z\",\n    \"archived_by\": \"consectetur amet aliqua tempor sit\",\n    \"organization\": {\n      \"name\": \"ea in sint consectetur elit\",\n      \"slug\": \"deserunt magna culpa\",\n      \"logo\": \"labore in ullamco est\",\n      \"color\": \"laboris\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"sunt Lorem minim in\",\n      \"ad_spend_tracker_url\": \"reprehenderit consequat aliqua qui irure\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"magna\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"dolore ad qui in\",\n      \"updated_on\": \"1990-08-31T09:00:20.029Z\",\n      \"updated_by\": \"esse nulla ex nisi\",\n      \"created_on\": \"2017-05-25T23:02:34.475Z\",\n      \"created_by\": \"aliquip enim do\",\n      \"archived\": false,\n      \"archived_on\": \"1950-06-29T09:18:03.681Z\",\n      \"archived_by\": \"in consequat id eu quis\"\n    },\n    \"workspaces\": [\n      \"dolor do qui\",\n      \"minim do\"\n    ]\n  },\n  {\n    \"name\": \"esse magna culpa\",\n    \"auto_generated\": true,\n    \"updated_by\": \"in\",\n    \"created_on\": \"2019-04-27T09:13:10.485Z\",\n    \"created_by\": \"nisi ex pariatur Ut\",\n    \"archived\": false,\n    \"archived_on\": \"1973-01-23T19:35:10.368Z\",\n    \"archived_by\": \"sint ad Excepteur\",\n    \"organization\": {\n      \"name\": \"sed lab\",\n      \"slug\": \"tempor adipisicing dolor dolore\",\n      \"logo\": \"commodo dolore\",\n      \"color\": \"Ut labore in\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"exercitation incididunt\",\n      \"ad_spend_tracker_url\": \"et enim\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"Duis occaecat in\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"ad\",\n      \"updated_on\": \"2016-11-05T16:46:37.015Z\",\n      \"updated_by\": \"officia esse\",\n      \"created_on\": \"1949-07-25T04:13:53.469Z\",\n      \"created_by\": \"anim\",\n      \"archived\": false,\n      \"archived_on\": \"1968-11-12T04:07:04.506Z\",\n      \"archived_by\": \"adipisicing tempor\"\n    },\n    \"workspaces\": [\n      \"aute irure commodo ea\",\n      \"proident reprehenderit\"\n    ]\n  }\n]"}],"_postman_id":"0c28fd4b-7afe-444a-89c7-acd5060b3b02"},{"name":"Find One Tag","id":"ac230362-4655-49bf-bbca-8740dea3e228","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//tags/:id?archived=<boolean>","urlObject":{"path":["tags",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"b7b015c4-d39a-49a5-94b6-a49eebdb80d5","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"e9383e37-2911-42d7-90ce-a221fd9bc3f5","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//tags/:id?archived=<boolean>","host":["/"],"path":["tags",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"velit magna minim amet\",\n  \"auto_generated\": true,\n  \"updated_by\": \"consequat magna\",\n  \"created_on\": \"2013-08-07T07:08:09.862Z\",\n  \"created_by\": \"veniam\",\n  \"archived\": false,\n  \"archived_on\": \"1978-05-09T19:15:20.661Z\",\n  \"archived_by\": \"nostrud amet\",\n  \"organization\": {\n    \"name\": \"velit ex qui ipsum\",\n    \"slug\": \"qui\",\n    \"logo\": \"veniam aute amet quis\",\n    \"color\": \"Lorem adipisicing in ad\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"et pariatur\",\n    \"ad_spend_tracker_url\": \"adipisicing ut\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"irure exercitation ut anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolore tempor dolor labori\",\n    \"updated_on\": \"2000-09-06T08:48:20.285Z\",\n    \"updated_by\": \"dolor Lorem\",\n    \"created_on\": \"2001-09-26T01:51:47.241Z\",\n    \"created_by\": \"aute laboris aliqua\",\n    \"archived\": true,\n    \"archived_on\": \"2002-12-22T20:47:23.825Z\",\n    \"archived_by\": \"dolor cupidatat magna\"\n  },\n  \"workspaces\": [\n    \"aute adipisicing\",\n    \"in nisi minim exercitation cillum\"\n  ]\n}"}],"_postman_id":"ac230362-4655-49bf-bbca-8740dea3e228"},{"name":"Replace Tag","id":"8dcd8b9b-fbce-4669-ba36-ed9e49ef8599","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"auto_generated\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//tags/:id","urlObject":{"path":["tags",":id"],"host":["/"],"query":[],"variable":[{"id":"cab1a5c7-022d-40f3-99fb-90dd7b07fde7","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4d056009-c58a-4e17-ba28-0090f1a64ac8","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"auto_generated\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//tags/:id","host":["/"],"path":["tags",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"velit magna minim amet\",\n  \"auto_generated\": true,\n  \"updated_by\": \"consequat magna\",\n  \"created_on\": \"2013-08-07T07:08:09.862Z\",\n  \"created_by\": \"veniam\",\n  \"archived\": false,\n  \"archived_on\": \"1978-05-09T19:15:20.661Z\",\n  \"archived_by\": \"nostrud amet\",\n  \"organization\": {\n    \"name\": \"velit ex qui ipsum\",\n    \"slug\": \"qui\",\n    \"logo\": \"veniam aute amet quis\",\n    \"color\": \"Lorem adipisicing in ad\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"et pariatur\",\n    \"ad_spend_tracker_url\": \"adipisicing ut\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"irure exercitation ut anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolore tempor dolor labori\",\n    \"updated_on\": \"2000-09-06T08:48:20.285Z\",\n    \"updated_by\": \"dolor Lorem\",\n    \"created_on\": \"2001-09-26T01:51:47.241Z\",\n    \"created_by\": \"aute laboris aliqua\",\n    \"archived\": true,\n    \"archived_on\": \"2002-12-22T20:47:23.825Z\",\n    \"archived_by\": \"dolor cupidatat magna\"\n  },\n  \"workspaces\": [\n    \"aute adipisicing\",\n    \"in nisi minim exercitation cillum\"\n  ]\n}"}],"_postman_id":"8dcd8b9b-fbce-4669-ba36-ed9e49ef8599"},{"name":"Update Tag","id":"35589e34-970c-454d-8c46-ce97988776e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"auto_generated\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//tags/:id","urlObject":{"path":["tags",":id"],"host":["/"],"query":[],"variable":[{"id":"710357ad-d97b-47fb-8cf9-e4981924ce15","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"8b3f9d65-4ca3-4183-9c89-1e5ce21ce3fa","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"auto_generated\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//tags/:id","host":["/"],"path":["tags",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"velit magna minim amet\",\n  \"auto_generated\": true,\n  \"updated_by\": \"consequat magna\",\n  \"created_on\": \"2013-08-07T07:08:09.862Z\",\n  \"created_by\": \"veniam\",\n  \"archived\": false,\n  \"archived_on\": \"1978-05-09T19:15:20.661Z\",\n  \"archived_by\": \"nostrud amet\",\n  \"organization\": {\n    \"name\": \"velit ex qui ipsum\",\n    \"slug\": \"qui\",\n    \"logo\": \"veniam aute amet quis\",\n    \"color\": \"Lorem adipisicing in ad\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"et pariatur\",\n    \"ad_spend_tracker_url\": \"adipisicing ut\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"irure exercitation ut anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolore tempor dolor labori\",\n    \"updated_on\": \"2000-09-06T08:48:20.285Z\",\n    \"updated_by\": \"dolor Lorem\",\n    \"created_on\": \"2001-09-26T01:51:47.241Z\",\n    \"created_by\": \"aute laboris aliqua\",\n    \"archived\": true,\n    \"archived_on\": \"2002-12-22T20:47:23.825Z\",\n    \"archived_by\": \"dolor cupidatat magna\"\n  },\n  \"workspaces\": [\n    \"aute adipisicing\",\n    \"in nisi minim exercitation cillum\"\n  ]\n}"}],"_postman_id":"35589e34-970c-454d-8c46-ce97988776e5"},{"name":"Archive Tag","id":"2c2e0669-f564-48b6-b233-d141a64474b7","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//tags/:id","urlObject":{"path":["tags",":id"],"host":["/"],"query":[],"variable":[{"id":"cf755105-1287-4641-b6c8-86287ecf53ce","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"fc544890-b8af-4cbb-b07c-cb732de8e30e","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//tags/:id","host":["/"],"path":["tags",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"velit magna minim amet\",\n  \"auto_generated\": true,\n  \"updated_by\": \"consequat magna\",\n  \"created_on\": \"2013-08-07T07:08:09.862Z\",\n  \"created_by\": \"veniam\",\n  \"archived\": false,\n  \"archived_on\": \"1978-05-09T19:15:20.661Z\",\n  \"archived_by\": \"nostrud amet\",\n  \"organization\": {\n    \"name\": \"velit ex qui ipsum\",\n    \"slug\": \"qui\",\n    \"logo\": \"veniam aute amet quis\",\n    \"color\": \"Lorem adipisicing in ad\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"et pariatur\",\n    \"ad_spend_tracker_url\": \"adipisicing ut\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"irure exercitation ut anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolore tempor dolor labori\",\n    \"updated_on\": \"2000-09-06T08:48:20.285Z\",\n    \"updated_by\": \"dolor Lorem\",\n    \"created_on\": \"2001-09-26T01:51:47.241Z\",\n    \"created_by\": \"aute laboris aliqua\",\n    \"archived\": true,\n    \"archived_on\": \"2002-12-22T20:47:23.825Z\",\n    \"archived_by\": \"dolor cupidatat magna\"\n  },\n  \"workspaces\": [\n    \"aute adipisicing\",\n    \"in nisi minim exercitation cillum\"\n  ]\n}"}],"_postman_id":"2c2e0669-f564-48b6-b233-d141a64474b7"},{"name":"Unarchive Tag","id":"640328a8-81d1-4351-8e63-d36318475e26","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//tags/:id/unarchive","urlObject":{"path":["tags",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"23be3629-e4e1-4cea-86f5-a09ae703ccd5","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"8af769cf-7353-4646-a265-d6635a7438a2","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//tags/:id/unarchive","host":["/"],"path":["tags",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"velit magna minim amet\",\n  \"auto_generated\": true,\n  \"updated_by\": \"consequat magna\",\n  \"created_on\": \"2013-08-07T07:08:09.862Z\",\n  \"created_by\": \"veniam\",\n  \"archived\": false,\n  \"archived_on\": \"1978-05-09T19:15:20.661Z\",\n  \"archived_by\": \"nostrud amet\",\n  \"organization\": {\n    \"name\": \"velit ex qui ipsum\",\n    \"slug\": \"qui\",\n    \"logo\": \"veniam aute amet quis\",\n    \"color\": \"Lorem adipisicing in ad\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"et pariatur\",\n    \"ad_spend_tracker_url\": \"adipisicing ut\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"irure exercitation ut anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolore tempor dolor labori\",\n    \"updated_on\": \"2000-09-06T08:48:20.285Z\",\n    \"updated_by\": \"dolor Lorem\",\n    \"created_on\": \"2001-09-26T01:51:47.241Z\",\n    \"created_by\": \"aute laboris aliqua\",\n    \"archived\": true,\n    \"archived_on\": \"2002-12-22T20:47:23.825Z\",\n    \"archived_by\": \"dolor cupidatat magna\"\n  },\n  \"workspaces\": [\n    \"aute adipisicing\",\n    \"in nisi minim exercitation cillum\"\n  ]\n}"}],"_postman_id":"640328a8-81d1-4351-8e63-d36318475e26"},{"name":"Delete Tag","id":"9ff4c6fd-fe1a-4110-a6ad-3d3cbeb6ef55","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//tags/:id/delete","urlObject":{"path":["tags",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"abe6f96b-9431-4f8d-880d-ff7b98d6e049","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"96205e68-67cc-407d-8dee-58947545690d","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//tags/:id/delete","host":["/"],"path":["tags",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"velit magna minim amet\",\n  \"auto_generated\": true,\n  \"updated_by\": \"consequat magna\",\n  \"created_on\": \"2013-08-07T07:08:09.862Z\",\n  \"created_by\": \"veniam\",\n  \"archived\": false,\n  \"archived_on\": \"1978-05-09T19:15:20.661Z\",\n  \"archived_by\": \"nostrud amet\",\n  \"organization\": {\n    \"name\": \"velit ex qui ipsum\",\n    \"slug\": \"qui\",\n    \"logo\": \"veniam aute amet quis\",\n    \"color\": \"Lorem adipisicing in ad\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"et pariatur\",\n    \"ad_spend_tracker_url\": \"adipisicing ut\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"irure exercitation ut anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"dolore tempor dolor labori\",\n    \"updated_on\": \"2000-09-06T08:48:20.285Z\",\n    \"updated_by\": \"dolor Lorem\",\n    \"created_on\": \"2001-09-26T01:51:47.241Z\",\n    \"created_by\": \"aute laboris aliqua\",\n    \"archived\": true,\n    \"archived_on\": \"2002-12-22T20:47:23.825Z\",\n    \"archived_by\": \"dolor cupidatat magna\"\n  },\n  \"workspaces\": [\n    \"aute adipisicing\",\n    \"in nisi minim exercitation cillum\"\n  ]\n}"}],"_postman_id":"9ff4c6fd-fe1a-4110-a6ad-3d3cbeb6ef55"}],"id":"ff07e288-dafa-404f-bfbf-740df602798c","description":"<p>Tags provide a way to add information to Assets. Some tags are auto generated using Artificial Intelligence whereas other tags are added by users. These can be a very helpful way to segment and search your assets within the Platform. </p>\n","_postman_id":"ff07e288-dafa-404f-bfbf-740df602798c"},{"name":"Users","item":[{"name":"Create User","id":"1b10e2f9-5371-4f44-a7d1-0daf1c574dd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//users","urlObject":{"path":["users"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"d4e7340e-b93f-49bd-b191-7ed2285de37d","name":"response","originalRequest":{"method":"POST","header":[{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//users"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1b10e2f9-5371-4f44-a7d1-0daf1c574dd3"},{"name":"Find All Users","id":"027bd137-67ed-4b74-9299-41b808e0ded1","request":{"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//users","urlObject":{"path":["users"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"40a4d416-a1fb-4f14-b601-0242d10d8bba","name":"response","originalRequest":{"method":"GET","header":[{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//users"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"027bd137-67ed-4b74-9299-41b808e0ded1"},{"name":"Find One User","id":"de3a408e-c760-4dd8-9ba4-a41c7c3cda13","request":{"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//users/:id","urlObject":{"path":["users",":id"],"host":["/"],"query":[],"variable":[{"id":"585cfa51-5fb2-4ffd-a05e-4858e7d6b6d3","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"f985a94c-7967-48b9-b5c2-04a7a382cbdc","name":"response","originalRequest":{"method":"GET","header":[{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//users/:id","host":["/"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"de3a408e-c760-4dd8-9ba4-a41c7c3cda13"},{"name":"Update User","id":"61a0aecd-a976-4637-adea-d88ab2141025","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":"//users/:id","urlObject":{"path":["users",":id"],"host":["/"],"query":[],"variable":[{"id":"312220d3-e3b7-440f-a087-1ee269aeba9c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"5e9d8592-630a-419b-85a6-09b6a7d91761","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{}","options":{"raw":{"language":"json"}}},"url":{"raw":"//users/:id","host":["/"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"61a0aecd-a976-4637-adea-d88ab2141025"},{"name":"Remove Users","id":"bfb2a595-cb80-4bee-a270-ded22820b736","request":{"method":"DELETE","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//users/:id","urlObject":{"path":["users",":id"],"host":["/"],"query":[],"variable":[{"id":"23e791b3-336c-4bcb-8a84-263e2adabbac","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"dcb58ab6-7dc6-4dab-9c32-5bfbfff087e4","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//users/:id","host":["/"],"path":["users",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bfb2a595-cb80-4bee-a270-ded22820b736"}],"id":"bbb6fad3-d195-43fd-b365-a8c025549ac1","description":"<p>This endpoint is used to manage the Users within your instance. You can edit their basic information, and administrative functions such as resetting a password or setting a users access level. </p>\n","_postman_id":"bbb6fad3-d195-43fd-b365-a8c025549ac1"},{"name":"Webhooks","item":[{"name":"Find All Webhooks","id":"c955ec8b-6a99-4fcd-bdbf-c278ea43c417","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//webhooks?archived=<boolean>","urlObject":{"path":["webhooks"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"8ab78b9e-138f-42d0-bbf2-05bf3bf6179f","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//webhooks?archived=<boolean>","host":["/"],"path":["webhooks"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"incididunt esse\",\n    \"model\": \"sed ad dolor\",\n    \"action\": \"sin\",\n    \"filter\": {},\n    \"url\": \"et ut labore incididunt\",\n    \"active\": false,\n    \"updated_by\": \"nostrud quis cupidatat in elit\",\n    \"created_on\": \"1983-06-23T11:00:57.776Z\",\n    \"created_by\": \"veniam est tempor\",\n    \"archived\": true,\n    \"archived_on\": \"1966-02-01T11:24:07.710Z\",\n    \"archived_by\": \"dolore do voluptate nulla\",\n    \"organization\": {\n      \"name\": \"cillum et incididunt amet\",\n      \"slug\": \"ad\",\n      \"logo\": \"velit non\",\n      \"color\": \"mollit ipsum eiusmod\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"ut aliquip ex qui\",\n      \"ad_spend_tracker_url\": \"dolor\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"dolore labore aute\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"labore dolor reprehenderit aut\",\n      \"updated_on\": \"1998-03-31T12:08:04.247Z\",\n      \"updated_by\": \"cons\",\n      \"created_on\": \"2007-03-05T19:27:06.478Z\",\n      \"created_by\": \"officia Excepteur consectetur anim\",\n      \"archived\": true,\n      \"archived_on\": \"1960-04-03T11:10:11.179Z\",\n      \"archived_by\": \"ex\"\n    },\n    \"workspaces\": [\n      \"veniam nostrud magna\",\n      \"sint\"\n    ]\n  },\n  {\n    \"name\": \"ea\",\n    \"model\": \"dolor dolor ut\",\n    \"action\": \"incididunt ad Lorem\",\n    \"filter\": {},\n    \"url\": \"in consectetur ipsum nulla velit\",\n    \"active\": false,\n    \"updated_by\": \"Lorem dolore in\",\n    \"created_on\": \"1959-05-10T15:50:32.553Z\",\n    \"created_by\": \"dolor dolor\",\n    \"archived\": false,\n    \"archived_on\": \"2001-01-26T22:32:32.660Z\",\n    \"archived_by\": \"veniam aliquip Duis laborum deserunt\",\n    \"organization\": {\n      \"name\": \"qui veniam\",\n      \"slug\": \"velit nostrud et pro\",\n      \"logo\": \"adipisicing sed\",\n      \"color\": \"sit ad voluptate\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"proident aute laborum qui\",\n      \"ad_spend_tracker_url\": \"id sunt in\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"reprehenderit sed\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"adipisicing \",\n      \"updated_on\": \"1945-11-07T15:11:44.169Z\",\n      \"updated_by\": \"laborum magna\",\n      \"created_on\": \"1966-10-02T04:59:46.573Z\",\n      \"created_by\": \"ea irure ex\",\n      \"archived\": true,\n      \"archived_on\": \"2016-07-22T12:47:02.201Z\",\n      \"archived_by\": \"et Excepteur laboris\"\n    },\n    \"workspaces\": [\n      \"laboris exercitation adipisicing Lorem anim\",\n      \"tempor sunt ipsum cupidatat\"\n    ]\n  }\n]"}],"_postman_id":"c955ec8b-6a99-4fcd-bdbf-c278ea43c417"},{"name":"Create Webhook","id":"890df76f-ae4a-4b0d-889a-d79e0e5652c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"model\": \"<string>\",\n  \"action\": \"<string>\",\n  \"filter\": \"<object>\",\n  \"url\": \"<string>\",\n  \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//webhooks","urlObject":{"path":["webhooks"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"178d7330-9f14-4947-a589-2ee9f4e0d6af","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"model\": \"<string>\",\n  \"action\": \"<string>\",\n  \"filter\": \"<object>\",\n  \"url\": \"<string>\",\n  \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//webhooks"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"veniam aliq\",\n  \"model\": \"in dolore proident laborum\",\n  \"action\": \"cillum Ut sunt\",\n  \"filter\": {},\n  \"url\": \"est amet Lorem deserunt\",\n  \"active\": true,\n  \"updated_by\": \"commodo\",\n  \"created_on\": \"1983-11-22T06:14:57.673Z\",\n  \"created_by\": \"sint dolor cillum\",\n  \"archived\": false,\n  \"archived_on\": \"2016-04-17T22:28:46.201Z\",\n  \"archived_by\": \"id anim quis\",\n  \"organization\": {\n    \"name\": \"ipsum\",\n    \"slug\": \"exe\",\n    \"logo\": \"et deserunt commodo tempor\",\n    \"color\": \"nulla consequat Duis cillum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"velit deserunt laborum anim\",\n    \"ad_spend_tracker_url\": \"veniam minim Lorem consectetur\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"dolore magna labore quis \",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit irure dolor\",\n    \"updated_on\": \"1957-05-17T04:35:43.006Z\",\n    \"updated_by\": \"an\",\n    \"created_on\": \"1952-07-21T16:59:23.177Z\",\n    \"created_by\": \"aliquip laborum\",\n    \"archived\": true,\n    \"archived_on\": \"1960-03-15T11:48:20.387Z\",\n    \"archived_by\": \"culpa id exercitation do fugiat\"\n  },\n  \"workspaces\": [\n    \"quis\",\n    \"do mollit adipisicing proident\"\n  ]\n}"}],"_postman_id":"890df76f-ae4a-4b0d-889a-d79e0e5652c1"},{"name":"Count Webhooks","id":"f4a115a7-f041-49fb-b383-dbce8f01d99b","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//webhooks/count?archived=<boolean>","urlObject":{"path":["webhooks","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"58649df5-58c3-44a8-9461-eac920af98a0","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//webhooks/count?archived=<boolean>","host":["/"],"path":["webhooks","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"f4a115a7-f041-49fb-b383-dbce8f01d99b"},{"name":"Search Webhooks","id":"c0ccdb17-849e-4c96-bcb0-346b261f446f","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//webhooks/search","urlObject":{"path":["webhooks","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"ed1f9311-0597-4d34-ae11-1435b2fcff80","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//webhooks/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"incididunt esse\",\n    \"model\": \"sed ad dolor\",\n    \"action\": \"sin\",\n    \"filter\": {},\n    \"url\": \"et ut labore incididunt\",\n    \"active\": false,\n    \"updated_by\": \"nostrud quis cupidatat in elit\",\n    \"created_on\": \"1983-06-23T11:00:57.776Z\",\n    \"created_by\": \"veniam est tempor\",\n    \"archived\": true,\n    \"archived_on\": \"1966-02-01T11:24:07.710Z\",\n    \"archived_by\": \"dolore do voluptate nulla\",\n    \"organization\": {\n      \"name\": \"cillum et incididunt amet\",\n      \"slug\": \"ad\",\n      \"logo\": \"velit non\",\n      \"color\": \"mollit ipsum eiusmod\",\n      \"active\": false,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"ut aliquip ex qui\",\n      \"ad_spend_tracker_url\": \"dolor\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"dolore labore aute\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"labore dolor reprehenderit aut\",\n      \"updated_on\": \"1998-03-31T12:08:04.247Z\",\n      \"updated_by\": \"cons\",\n      \"created_on\": \"2007-03-05T19:27:06.478Z\",\n      \"created_by\": \"officia Excepteur consectetur anim\",\n      \"archived\": true,\n      \"archived_on\": \"1960-04-03T11:10:11.179Z\",\n      \"archived_by\": \"ex\"\n    },\n    \"workspaces\": [\n      \"veniam nostrud magna\",\n      \"sint\"\n    ]\n  },\n  {\n    \"name\": \"ea\",\n    \"model\": \"dolor dolor ut\",\n    \"action\": \"incididunt ad Lorem\",\n    \"filter\": {},\n    \"url\": \"in consectetur ipsum nulla velit\",\n    \"active\": false,\n    \"updated_by\": \"Lorem dolore in\",\n    \"created_on\": \"1959-05-10T15:50:32.553Z\",\n    \"created_by\": \"dolor dolor\",\n    \"archived\": false,\n    \"archived_on\": \"2001-01-26T22:32:32.660Z\",\n    \"archived_by\": \"veniam aliquip Duis laborum deserunt\",\n    \"organization\": {\n      \"name\": \"qui veniam\",\n      \"slug\": \"velit nostrud et pro\",\n      \"logo\": \"adipisicing sed\",\n      \"color\": \"sit ad voluptate\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"proident aute laborum qui\",\n      \"ad_spend_tracker_url\": \"id sunt in\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"reprehenderit sed\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"adipisicing \",\n      \"updated_on\": \"1945-11-07T15:11:44.169Z\",\n      \"updated_by\": \"laborum magna\",\n      \"created_on\": \"1966-10-02T04:59:46.573Z\",\n      \"created_by\": \"ea irure ex\",\n      \"archived\": true,\n      \"archived_on\": \"2016-07-22T12:47:02.201Z\",\n      \"archived_by\": \"et Excepteur laboris\"\n    },\n    \"workspaces\": [\n      \"laboris exercitation adipisicing Lorem anim\",\n      \"tempor sunt ipsum cupidatat\"\n    ]\n  }\n]"}],"_postman_id":"c0ccdb17-849e-4c96-bcb0-346b261f446f"},{"name":"Find One Webhook","id":"c8a373cd-e164-4729-bf04-1a80e77a74e1","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//webhooks/:id?archived=<boolean>","urlObject":{"path":["webhooks",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"19e276c4-9945-44fe-a79b-0668485dd7ad","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"84cc4600-4363-4870-9973-c2c32ef648dd","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//webhooks/:id?archived=<boolean>","host":["/"],"path":["webhooks",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"veniam aliq\",\n  \"model\": \"in dolore proident laborum\",\n  \"action\": \"cillum Ut sunt\",\n  \"filter\": {},\n  \"url\": \"est amet Lorem deserunt\",\n  \"active\": true,\n  \"updated_by\": \"commodo\",\n  \"created_on\": \"1983-11-22T06:14:57.673Z\",\n  \"created_by\": \"sint dolor cillum\",\n  \"archived\": false,\n  \"archived_on\": \"2016-04-17T22:28:46.201Z\",\n  \"archived_by\": \"id anim quis\",\n  \"organization\": {\n    \"name\": \"ipsum\",\n    \"slug\": \"exe\",\n    \"logo\": \"et deserunt commodo tempor\",\n    \"color\": \"nulla consequat Duis cillum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"velit deserunt laborum anim\",\n    \"ad_spend_tracker_url\": \"veniam minim Lorem consectetur\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"dolore magna labore quis \",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit irure dolor\",\n    \"updated_on\": \"1957-05-17T04:35:43.006Z\",\n    \"updated_by\": \"an\",\n    \"created_on\": \"1952-07-21T16:59:23.177Z\",\n    \"created_by\": \"aliquip laborum\",\n    \"archived\": true,\n    \"archived_on\": \"1960-03-15T11:48:20.387Z\",\n    \"archived_by\": \"culpa id exercitation do fugiat\"\n  },\n  \"workspaces\": [\n    \"quis\",\n    \"do mollit adipisicing proident\"\n  ]\n}"}],"_postman_id":"c8a373cd-e164-4729-bf04-1a80e77a74e1"},{"name":"Replace Webhook","id":"7432bc69-b1fe-42d4-a0dc-66fc0f0e83ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"model\": \"<string>\",\n  \"action\": \"<string>\",\n  \"filter\": \"<object>\",\n  \"url\": \"<string>\",\n  \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//webhooks/:id","urlObject":{"path":["webhooks",":id"],"host":["/"],"query":[],"variable":[{"id":"bdf3f8c3-380d-4f84-bc69-8e0d443a0f29","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"7db13ac7-bf84-4bf4-a8d2-0bbd786ddc36","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"model\": \"<string>\",\n  \"action\": \"<string>\",\n  \"filter\": \"<object>\",\n  \"url\": \"<string>\",\n  \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//webhooks/:id","host":["/"],"path":["webhooks",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"veniam aliq\",\n  \"model\": \"in dolore proident laborum\",\n  \"action\": \"cillum Ut sunt\",\n  \"filter\": {},\n  \"url\": \"est amet Lorem deserunt\",\n  \"active\": true,\n  \"updated_by\": \"commodo\",\n  \"created_on\": \"1983-11-22T06:14:57.673Z\",\n  \"created_by\": \"sint dolor cillum\",\n  \"archived\": false,\n  \"archived_on\": \"2016-04-17T22:28:46.201Z\",\n  \"archived_by\": \"id anim quis\",\n  \"organization\": {\n    \"name\": \"ipsum\",\n    \"slug\": \"exe\",\n    \"logo\": \"et deserunt commodo tempor\",\n    \"color\": \"nulla consequat Duis cillum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"velit deserunt laborum anim\",\n    \"ad_spend_tracker_url\": \"veniam minim Lorem consectetur\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"dolore magna labore quis \",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit irure dolor\",\n    \"updated_on\": \"1957-05-17T04:35:43.006Z\",\n    \"updated_by\": \"an\",\n    \"created_on\": \"1952-07-21T16:59:23.177Z\",\n    \"created_by\": \"aliquip laborum\",\n    \"archived\": true,\n    \"archived_on\": \"1960-03-15T11:48:20.387Z\",\n    \"archived_by\": \"culpa id exercitation do fugiat\"\n  },\n  \"workspaces\": [\n    \"quis\",\n    \"do mollit adipisicing proident\"\n  ]\n}"}],"_postman_id":"7432bc69-b1fe-42d4-a0dc-66fc0f0e83ec"},{"name":"Update Webhook","id":"33c412a6-25d2-4b6b-bf6d-4f828657d331","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"model\": \"<string>\",\n  \"action\": \"<string>\",\n  \"filter\": \"<object>\",\n  \"url\": \"<string>\",\n  \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":"//webhooks/:id","urlObject":{"path":["webhooks",":id"],"host":["/"],"query":[],"variable":[{"id":"1c354f40-74d4-45f3-8322-59152faf498f","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"bd607381-3b15-452a-b26d-3d078b15139c","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"model\": \"<string>\",\n  \"action\": \"<string>\",\n  \"filter\": \"<object>\",\n  \"url\": \"<string>\",\n  \"active\": \"<boolean>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//webhooks/:id","host":["/"],"path":["webhooks",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"veniam aliq\",\n  \"model\": \"in dolore proident laborum\",\n  \"action\": \"cillum Ut sunt\",\n  \"filter\": {},\n  \"url\": \"est amet Lorem deserunt\",\n  \"active\": true,\n  \"updated_by\": \"commodo\",\n  \"created_on\": \"1983-11-22T06:14:57.673Z\",\n  \"created_by\": \"sint dolor cillum\",\n  \"archived\": false,\n  \"archived_on\": \"2016-04-17T22:28:46.201Z\",\n  \"archived_by\": \"id anim quis\",\n  \"organization\": {\n    \"name\": \"ipsum\",\n    \"slug\": \"exe\",\n    \"logo\": \"et deserunt commodo tempor\",\n    \"color\": \"nulla consequat Duis cillum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"velit deserunt laborum anim\",\n    \"ad_spend_tracker_url\": \"veniam minim Lorem consectetur\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"dolore magna labore quis \",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit irure dolor\",\n    \"updated_on\": \"1957-05-17T04:35:43.006Z\",\n    \"updated_by\": \"an\",\n    \"created_on\": \"1952-07-21T16:59:23.177Z\",\n    \"created_by\": \"aliquip laborum\",\n    \"archived\": true,\n    \"archived_on\": \"1960-03-15T11:48:20.387Z\",\n    \"archived_by\": \"culpa id exercitation do fugiat\"\n  },\n  \"workspaces\": [\n    \"quis\",\n    \"do mollit adipisicing proident\"\n  ]\n}"}],"_postman_id":"33c412a6-25d2-4b6b-bf6d-4f828657d331"},{"name":"Archive Webhook","id":"89ed0d5f-3b45-4ed8-bef4-19e07933fee0","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//webhooks/:id","urlObject":{"path":["webhooks",":id"],"host":["/"],"query":[],"variable":[{"id":"6ba4ee16-4929-405b-abd7-d06a3125172b","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"c7a484cd-02d6-4623-a9ec-01e00662d13c","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//webhooks/:id","host":["/"],"path":["webhooks",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"veniam aliq\",\n  \"model\": \"in dolore proident laborum\",\n  \"action\": \"cillum Ut sunt\",\n  \"filter\": {},\n  \"url\": \"est amet Lorem deserunt\",\n  \"active\": true,\n  \"updated_by\": \"commodo\",\n  \"created_on\": \"1983-11-22T06:14:57.673Z\",\n  \"created_by\": \"sint dolor cillum\",\n  \"archived\": false,\n  \"archived_on\": \"2016-04-17T22:28:46.201Z\",\n  \"archived_by\": \"id anim quis\",\n  \"organization\": {\n    \"name\": \"ipsum\",\n    \"slug\": \"exe\",\n    \"logo\": \"et deserunt commodo tempor\",\n    \"color\": \"nulla consequat Duis cillum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"velit deserunt laborum anim\",\n    \"ad_spend_tracker_url\": \"veniam minim Lorem consectetur\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"dolore magna labore quis \",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit irure dolor\",\n    \"updated_on\": \"1957-05-17T04:35:43.006Z\",\n    \"updated_by\": \"an\",\n    \"created_on\": \"1952-07-21T16:59:23.177Z\",\n    \"created_by\": \"aliquip laborum\",\n    \"archived\": true,\n    \"archived_on\": \"1960-03-15T11:48:20.387Z\",\n    \"archived_by\": \"culpa id exercitation do fugiat\"\n  },\n  \"workspaces\": [\n    \"quis\",\n    \"do mollit adipisicing proident\"\n  ]\n}"}],"_postman_id":"89ed0d5f-3b45-4ed8-bef4-19e07933fee0"},{"name":"Unarchive Webhook","id":"dfcd5363-3a07-4c60-a0d0-a4bacd866cea","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//webhooks/:id/unarchive","urlObject":{"path":["webhooks",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"bd9012bb-b51c-46fa-bc65-e8002ebdb521","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"2597f5ae-af99-41d6-b92b-a33d8fe8f6eb","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//webhooks/:id/unarchive","host":["/"],"path":["webhooks",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"veniam aliq\",\n  \"model\": \"in dolore proident laborum\",\n  \"action\": \"cillum Ut sunt\",\n  \"filter\": {},\n  \"url\": \"est amet Lorem deserunt\",\n  \"active\": true,\n  \"updated_by\": \"commodo\",\n  \"created_on\": \"1983-11-22T06:14:57.673Z\",\n  \"created_by\": \"sint dolor cillum\",\n  \"archived\": false,\n  \"archived_on\": \"2016-04-17T22:28:46.201Z\",\n  \"archived_by\": \"id anim quis\",\n  \"organization\": {\n    \"name\": \"ipsum\",\n    \"slug\": \"exe\",\n    \"logo\": \"et deserunt commodo tempor\",\n    \"color\": \"nulla consequat Duis cillum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"velit deserunt laborum anim\",\n    \"ad_spend_tracker_url\": \"veniam minim Lorem consectetur\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"dolore magna labore quis \",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit irure dolor\",\n    \"updated_on\": \"1957-05-17T04:35:43.006Z\",\n    \"updated_by\": \"an\",\n    \"created_on\": \"1952-07-21T16:59:23.177Z\",\n    \"created_by\": \"aliquip laborum\",\n    \"archived\": true,\n    \"archived_on\": \"1960-03-15T11:48:20.387Z\",\n    \"archived_by\": \"culpa id exercitation do fugiat\"\n  },\n  \"workspaces\": [\n    \"quis\",\n    \"do mollit adipisicing proident\"\n  ]\n}"}],"_postman_id":"dfcd5363-3a07-4c60-a0d0-a4bacd866cea"},{"name":"Delete Webhook","id":"5fcfa6ce-8cf4-4e5d-b716-8547630e3c9f","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//webhooks/:id/delete","urlObject":{"path":["webhooks",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"f3027c04-955b-405f-af10-e6a4b5f54f2c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4b3b5e4c-659c-48b6-bbc3-5c9b843154fb","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//webhooks/:id/delete","host":["/"],"path":["webhooks",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"veniam aliq\",\n  \"model\": \"in dolore proident laborum\",\n  \"action\": \"cillum Ut sunt\",\n  \"filter\": {},\n  \"url\": \"est amet Lorem deserunt\",\n  \"active\": true,\n  \"updated_by\": \"commodo\",\n  \"created_on\": \"1983-11-22T06:14:57.673Z\",\n  \"created_by\": \"sint dolor cillum\",\n  \"archived\": false,\n  \"archived_on\": \"2016-04-17T22:28:46.201Z\",\n  \"archived_by\": \"id anim quis\",\n  \"organization\": {\n    \"name\": \"ipsum\",\n    \"slug\": \"exe\",\n    \"logo\": \"et deserunt commodo tempor\",\n    \"color\": \"nulla consequat Duis cillum\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"velit deserunt laborum anim\",\n    \"ad_spend_tracker_url\": \"veniam minim Lorem consectetur\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"dolore magna labore quis \",\n    \"teams_enabled\": true,\n    \"teams_url\": \"mollit irure dolor\",\n    \"updated_on\": \"1957-05-17T04:35:43.006Z\",\n    \"updated_by\": \"an\",\n    \"created_on\": \"1952-07-21T16:59:23.177Z\",\n    \"created_by\": \"aliquip laborum\",\n    \"archived\": true,\n    \"archived_on\": \"1960-03-15T11:48:20.387Z\",\n    \"archived_by\": \"culpa id exercitation do fugiat\"\n  },\n  \"workspaces\": [\n    \"quis\",\n    \"do mollit adipisicing proident\"\n  ]\n}"}],"_postman_id":"5fcfa6ce-8cf4-4e5d-b716-8547630e3c9f"}],"id":"d816d7dc-e00c-4142-94cb-3e42af65b2f9","description":"<p>Webhooks allow the Ai Ad Platform to send payloads to an endpoint whenever various actions occur within the tool. These can be used for both administrative and operational needs. </p>\n","_postman_id":"d816d7dc-e00c-4142-94cb-3e42af65b2f9"},{"name":"Whitelistentries","item":[{"name":"Find All Whitelistentries","id":"3fcf2770-ba3e-4694-a196-0bdb17f4e6d8","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//whitelistentries?archived=<boolean>","urlObject":{"path":["whitelistentries"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"21f42c6d-05de-4213-84b1-1b4a16d38926","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//whitelistentries?archived=<boolean>","host":["/"],"path":["whitelistentries"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"domain\": \"eu voluptate non\",\n    \"updated_by\": \"eu officia ad quis\",\n    \"created_on\": \"1965-04-14T09:13:19.461Z\",\n    \"created_by\": \"quis occaecat\",\n    \"archived\": true,\n    \"archived_on\": \"2008-06-08T16:53:44.413Z\",\n    \"archived_by\": \"ad dolore sunt\",\n    \"organization\": {\n      \"name\": \"laborum nostrud\",\n      \"slug\": \"in ex sunt\",\n      \"logo\": \"exercitation ut nisi cillum adipisicing\",\n      \"color\": \"tempo\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"veniam\",\n      \"ad_spend_tracker_url\": \"dolore aliqua exercitation nostrud\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"adipisicing quis deseru\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"proident non\",\n      \"updated_on\": \"1983-08-05T14:49:55.810Z\",\n      \"updated_by\": \"velit ex Excepteur\",\n      \"created_on\": \"1988-08-09T18:14:26.684Z\",\n      \"created_by\": \"elit esse nisi irure sunt\",\n      \"archived\": true,\n      \"archived_on\": \"1971-03-29T03:38:58.877Z\",\n      \"archived_by\": \"pariatur sunt\"\n    },\n    \"workspaces\": [\n      \"aliqua\",\n      \"et\"\n    ]\n  },\n  {\n    \"domain\": \"deserunt cillum\",\n    \"updated_by\": \"sint voluptate culpa tempor Excepteur\",\n    \"created_on\": \"2015-06-20T16:12:07.170Z\",\n    \"created_by\": \"nostrud consequat\",\n    \"archived\": true,\n    \"archived_on\": \"2001-01-12T08:48:56.472Z\",\n    \"archived_by\": \"magna tempor adipisicing\",\n    \"organization\": {\n      \"name\": \"id in minim\",\n      \"slug\": \"Duis pariatur amet Ut culpa\",\n      \"logo\": \"esse commodo id aliqua\",\n      \"color\": \"velit ea\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"adipisicing culpa Lorem\",\n      \"ad_spend_tracker_url\": \"laborum in anim elit\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"est\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"dolore reprehenderit minim est\",\n      \"updated_on\": \"1984-11-07T12:25:28.166Z\",\n      \"updated_by\": \"voluptate\",\n      \"created_on\": \"1977-08-31T14:52:54.419Z\",\n      \"created_by\": \"amet\",\n      \"archived\": true,\n      \"archived_on\": \"1943-07-09T09:39:54.256Z\",\n      \"archived_by\": \"non\"\n    },\n    \"workspaces\": [\n      \"tempor qui\",\n      \"pariatur\"\n    ]\n  }\n]"}],"_postman_id":"3fcf2770-ba3e-4694-a196-0bdb17f4e6d8"},{"name":"Create Whitelistentrie","id":"c2d9d812-644c-44fb-a420-b61ff9dbf47f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//whitelistentries","urlObject":{"path":["whitelistentries"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"963c8003-aa43-46a6-a412-ca3fcc438266","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//whitelistentries"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"do ex proident\",\n  \"updated_by\": \"ipsum Ut\",\n  \"created_on\": \"1983-03-24T04:16:24.067Z\",\n  \"created_by\": \"in aute occaecat\",\n  \"archived\": true,\n  \"archived_on\": \"2018-10-12T21:17:07.323Z\",\n  \"archived_by\": \"enim consectetur adipisicing\",\n  \"organization\": {\n    \"name\": \"mollit dolore adipisicing amet est\",\n    \"slug\": \"amet Duis sed Excepteur fugiat\",\n    \"logo\": \"Duis aliquip occaecat fugiat\",\n    \"color\": \"nostrud tempor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"officia ut enim\",\n    \"ad_spend_tracker_url\": \"id adipisicing ipsum\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit aliquip consequat anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ut anim nostrud minim\",\n    \"updated_on\": \"1953-12-15T12:42:01.539Z\",\n    \"updated_by\": \"anim in cillum\",\n    \"created_on\": \"1997-11-10T11:40:23.147Z\",\n    \"created_by\": \"laborum elit\",\n    \"archived\": false,\n    \"archived_on\": \"2016-03-21T04:13:39.527Z\",\n    \"archived_by\": \"dolore tempor ea\"\n  },\n  \"workspaces\": [\n    \"tempor\",\n    \"id nulla reprehenderit\"\n  ]\n}"}],"_postman_id":"c2d9d812-644c-44fb-a420-b61ff9dbf47f"},{"name":"Count Whitelistentries","id":"188ae7ee-7d79-4ea0-a6c3-d97252fad312","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//whitelistentries/count?archived=<boolean>","urlObject":{"path":["whitelistentries","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"ba86fee6-ef2f-46e8-bd30-a68ebcf7ec5f","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//whitelistentries/count?archived=<boolean>","host":["/"],"path":["whitelistentries","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"188ae7ee-7d79-4ea0-a6c3-d97252fad312"},{"name":"Search Whitelistentries","id":"175e56d4-27ee-453b-8e93-96a6fad0fdcd","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//whitelistentries/search","urlObject":{"path":["whitelistentries","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"ec507dfc-9e92-466b-994d-c268fe130cc9","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//whitelistentries/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"domain\": \"eu voluptate non\",\n    \"updated_by\": \"eu officia ad quis\",\n    \"created_on\": \"1965-04-14T09:13:19.461Z\",\n    \"created_by\": \"quis occaecat\",\n    \"archived\": true,\n    \"archived_on\": \"2008-06-08T16:53:44.413Z\",\n    \"archived_by\": \"ad dolore sunt\",\n    \"organization\": {\n      \"name\": \"laborum nostrud\",\n      \"slug\": \"in ex sunt\",\n      \"logo\": \"exercitation ut nisi cillum adipisicing\",\n      \"color\": \"tempo\",\n      \"active\": true,\n      \"enable_workspaces\": false,\n      \"onboarding_url\": \"veniam\",\n      \"ad_spend_tracker_url\": \"dolore aliqua exercitation nostrud\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"adipisicing quis deseru\",\n      \"teams_enabled\": true,\n      \"teams_url\": \"proident non\",\n      \"updated_on\": \"1983-08-05T14:49:55.810Z\",\n      \"updated_by\": \"velit ex Excepteur\",\n      \"created_on\": \"1988-08-09T18:14:26.684Z\",\n      \"created_by\": \"elit esse nisi irure sunt\",\n      \"archived\": true,\n      \"archived_on\": \"1971-03-29T03:38:58.877Z\",\n      \"archived_by\": \"pariatur sunt\"\n    },\n    \"workspaces\": [\n      \"aliqua\",\n      \"et\"\n    ]\n  },\n  {\n    \"domain\": \"deserunt cillum\",\n    \"updated_by\": \"sint voluptate culpa tempor Excepteur\",\n    \"created_on\": \"2015-06-20T16:12:07.170Z\",\n    \"created_by\": \"nostrud consequat\",\n    \"archived\": true,\n    \"archived_on\": \"2001-01-12T08:48:56.472Z\",\n    \"archived_by\": \"magna tempor adipisicing\",\n    \"organization\": {\n      \"name\": \"id in minim\",\n      \"slug\": \"Duis pariatur amet Ut culpa\",\n      \"logo\": \"esse commodo id aliqua\",\n      \"color\": \"velit ea\",\n      \"active\": false,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"adipisicing culpa Lorem\",\n      \"ad_spend_tracker_url\": \"laborum in anim elit\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"est\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"dolore reprehenderit minim est\",\n      \"updated_on\": \"1984-11-07T12:25:28.166Z\",\n      \"updated_by\": \"voluptate\",\n      \"created_on\": \"1977-08-31T14:52:54.419Z\",\n      \"created_by\": \"amet\",\n      \"archived\": true,\n      \"archived_on\": \"1943-07-09T09:39:54.256Z\",\n      \"archived_by\": \"non\"\n    },\n    \"workspaces\": [\n      \"tempor qui\",\n      \"pariatur\"\n    ]\n  }\n]"}],"_postman_id":"175e56d4-27ee-453b-8e93-96a6fad0fdcd"},{"name":"Find One Whitelistentrie","id":"50584801-7a23-49ab-aebb-70dfc8d075cd","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//whitelistentries/:id?archived=<boolean>","urlObject":{"path":["whitelistentries",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"869d924f-b670-46a4-8404-4c5b1b2949e9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"74f51b51-a768-42d4-8943-24c9a5e2b8c6","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//whitelistentries/:id?archived=<boolean>","host":["/"],"path":["whitelistentries",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"do ex proident\",\n  \"updated_by\": \"ipsum Ut\",\n  \"created_on\": \"1983-03-24T04:16:24.067Z\",\n  \"created_by\": \"in aute occaecat\",\n  \"archived\": true,\n  \"archived_on\": \"2018-10-12T21:17:07.323Z\",\n  \"archived_by\": \"enim consectetur adipisicing\",\n  \"organization\": {\n    \"name\": \"mollit dolore adipisicing amet est\",\n    \"slug\": \"amet Duis sed Excepteur fugiat\",\n    \"logo\": \"Duis aliquip occaecat fugiat\",\n    \"color\": \"nostrud tempor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"officia ut enim\",\n    \"ad_spend_tracker_url\": \"id adipisicing ipsum\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit aliquip consequat anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ut anim nostrud minim\",\n    \"updated_on\": \"1953-12-15T12:42:01.539Z\",\n    \"updated_by\": \"anim in cillum\",\n    \"created_on\": \"1997-11-10T11:40:23.147Z\",\n    \"created_by\": \"laborum elit\",\n    \"archived\": false,\n    \"archived_on\": \"2016-03-21T04:13:39.527Z\",\n    \"archived_by\": \"dolore tempor ea\"\n  },\n  \"workspaces\": [\n    \"tempor\",\n    \"id nulla reprehenderit\"\n  ]\n}"}],"_postman_id":"50584801-7a23-49ab-aebb-70dfc8d075cd"},{"name":"Replace Whitelistentrie","id":"727afe5c-6b9a-4e05-95e7-722ccd224897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//whitelistentries/:id","urlObject":{"path":["whitelistentries",":id"],"host":["/"],"query":[],"variable":[{"id":"f69ec77a-8012-4f51-912e-5806d0817c55","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"05554eeb-81f7-4cf0-af71-7f8c53ef6ed8","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//whitelistentries/:id","host":["/"],"path":["whitelistentries",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"do ex proident\",\n  \"updated_by\": \"ipsum Ut\",\n  \"created_on\": \"1983-03-24T04:16:24.067Z\",\n  \"created_by\": \"in aute occaecat\",\n  \"archived\": true,\n  \"archived_on\": \"2018-10-12T21:17:07.323Z\",\n  \"archived_by\": \"enim consectetur adipisicing\",\n  \"organization\": {\n    \"name\": \"mollit dolore adipisicing amet est\",\n    \"slug\": \"amet Duis sed Excepteur fugiat\",\n    \"logo\": \"Duis aliquip occaecat fugiat\",\n    \"color\": \"nostrud tempor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"officia ut enim\",\n    \"ad_spend_tracker_url\": \"id adipisicing ipsum\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit aliquip consequat anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ut anim nostrud minim\",\n    \"updated_on\": \"1953-12-15T12:42:01.539Z\",\n    \"updated_by\": \"anim in cillum\",\n    \"created_on\": \"1997-11-10T11:40:23.147Z\",\n    \"created_by\": \"laborum elit\",\n    \"archived\": false,\n    \"archived_on\": \"2016-03-21T04:13:39.527Z\",\n    \"archived_by\": \"dolore tempor ea\"\n  },\n  \"workspaces\": [\n    \"tempor\",\n    \"id nulla reprehenderit\"\n  ]\n}"}],"_postman_id":"727afe5c-6b9a-4e05-95e7-722ccd224897"},{"name":"Update Whitelistentrie","id":"e839d957-3ceb-4953-8b22-ee0fba3b4d97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//whitelistentries/:id","urlObject":{"path":["whitelistentries",":id"],"host":["/"],"query":[],"variable":[{"id":"05343897-c202-40d8-be68-50cef7322199","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"4eef0204-7e48-4748-bdd3-337843ca47b5","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"domain\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//whitelistentries/:id","host":["/"],"path":["whitelistentries",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"do ex proident\",\n  \"updated_by\": \"ipsum Ut\",\n  \"created_on\": \"1983-03-24T04:16:24.067Z\",\n  \"created_by\": \"in aute occaecat\",\n  \"archived\": true,\n  \"archived_on\": \"2018-10-12T21:17:07.323Z\",\n  \"archived_by\": \"enim consectetur adipisicing\",\n  \"organization\": {\n    \"name\": \"mollit dolore adipisicing amet est\",\n    \"slug\": \"amet Duis sed Excepteur fugiat\",\n    \"logo\": \"Duis aliquip occaecat fugiat\",\n    \"color\": \"nostrud tempor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"officia ut enim\",\n    \"ad_spend_tracker_url\": \"id adipisicing ipsum\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit aliquip consequat anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ut anim nostrud minim\",\n    \"updated_on\": \"1953-12-15T12:42:01.539Z\",\n    \"updated_by\": \"anim in cillum\",\n    \"created_on\": \"1997-11-10T11:40:23.147Z\",\n    \"created_by\": \"laborum elit\",\n    \"archived\": false,\n    \"archived_on\": \"2016-03-21T04:13:39.527Z\",\n    \"archived_by\": \"dolore tempor ea\"\n  },\n  \"workspaces\": [\n    \"tempor\",\n    \"id nulla reprehenderit\"\n  ]\n}"}],"_postman_id":"e839d957-3ceb-4953-8b22-ee0fba3b4d97"},{"name":"Archive Whitelistentrie","id":"79fc0fae-586a-4636-ae4d-15ce63732155","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//whitelistentries/:id","urlObject":{"path":["whitelistentries",":id"],"host":["/"],"query":[],"variable":[{"id":"8976063e-b3db-4802-b650-0fff3bbf5c78","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"190e0633-eb04-4caa-898f-b9f8d874b487","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//whitelistentries/:id","host":["/"],"path":["whitelistentries",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"do ex proident\",\n  \"updated_by\": \"ipsum Ut\",\n  \"created_on\": \"1983-03-24T04:16:24.067Z\",\n  \"created_by\": \"in aute occaecat\",\n  \"archived\": true,\n  \"archived_on\": \"2018-10-12T21:17:07.323Z\",\n  \"archived_by\": \"enim consectetur adipisicing\",\n  \"organization\": {\n    \"name\": \"mollit dolore adipisicing amet est\",\n    \"slug\": \"amet Duis sed Excepteur fugiat\",\n    \"logo\": \"Duis aliquip occaecat fugiat\",\n    \"color\": \"nostrud tempor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"officia ut enim\",\n    \"ad_spend_tracker_url\": \"id adipisicing ipsum\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit aliquip consequat anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ut anim nostrud minim\",\n    \"updated_on\": \"1953-12-15T12:42:01.539Z\",\n    \"updated_by\": \"anim in cillum\",\n    \"created_on\": \"1997-11-10T11:40:23.147Z\",\n    \"created_by\": \"laborum elit\",\n    \"archived\": false,\n    \"archived_on\": \"2016-03-21T04:13:39.527Z\",\n    \"archived_by\": \"dolore tempor ea\"\n  },\n  \"workspaces\": [\n    \"tempor\",\n    \"id nulla reprehenderit\"\n  ]\n}"}],"_postman_id":"79fc0fae-586a-4636-ae4d-15ce63732155"},{"name":"Unarchive Whitelistentrie","id":"b653e348-6899-4e97-80ef-4a86ee430a29","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//whitelistentries/:id/unarchive","urlObject":{"path":["whitelistentries",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"f170a60d-1fe5-4f57-81e8-0a76470ee892","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"bdae5893-219c-469c-bfd0-41a624183eb6","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//whitelistentries/:id/unarchive","host":["/"],"path":["whitelistentries",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"do ex proident\",\n  \"updated_by\": \"ipsum Ut\",\n  \"created_on\": \"1983-03-24T04:16:24.067Z\",\n  \"created_by\": \"in aute occaecat\",\n  \"archived\": true,\n  \"archived_on\": \"2018-10-12T21:17:07.323Z\",\n  \"archived_by\": \"enim consectetur adipisicing\",\n  \"organization\": {\n    \"name\": \"mollit dolore adipisicing amet est\",\n    \"slug\": \"amet Duis sed Excepteur fugiat\",\n    \"logo\": \"Duis aliquip occaecat fugiat\",\n    \"color\": \"nostrud tempor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"officia ut enim\",\n    \"ad_spend_tracker_url\": \"id adipisicing ipsum\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit aliquip consequat anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ut anim nostrud minim\",\n    \"updated_on\": \"1953-12-15T12:42:01.539Z\",\n    \"updated_by\": \"anim in cillum\",\n    \"created_on\": \"1997-11-10T11:40:23.147Z\",\n    \"created_by\": \"laborum elit\",\n    \"archived\": false,\n    \"archived_on\": \"2016-03-21T04:13:39.527Z\",\n    \"archived_by\": \"dolore tempor ea\"\n  },\n  \"workspaces\": [\n    \"tempor\",\n    \"id nulla reprehenderit\"\n  ]\n}"}],"_postman_id":"b653e348-6899-4e97-80ef-4a86ee430a29"},{"name":"Delete Whitelistentrie","id":"2eef1c03-3338-4d51-9bbb-caefc661dbf3","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//whitelistentries/:id/delete","urlObject":{"path":["whitelistentries",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"933dc4b9-ad51-4774-b034-5f903bcd5565","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"3bf78285-cb21-4c46-8a6c-31fbd4955b1c","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//whitelistentries/:id/delete","host":["/"],"path":["whitelistentries",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"domain\": \"do ex proident\",\n  \"updated_by\": \"ipsum Ut\",\n  \"created_on\": \"1983-03-24T04:16:24.067Z\",\n  \"created_by\": \"in aute occaecat\",\n  \"archived\": true,\n  \"archived_on\": \"2018-10-12T21:17:07.323Z\",\n  \"archived_by\": \"enim consectetur adipisicing\",\n  \"organization\": {\n    \"name\": \"mollit dolore adipisicing amet est\",\n    \"slug\": \"amet Duis sed Excepteur fugiat\",\n    \"logo\": \"Duis aliquip occaecat fugiat\",\n    \"color\": \"nostrud tempor\",\n    \"active\": false,\n    \"enable_workspaces\": false,\n    \"onboarding_url\": \"officia ut enim\",\n    \"ad_spend_tracker_url\": \"id adipisicing ipsum\",\n    \"slack_enabled\": true,\n    \"slack_url\": \"velit aliquip consequat anim\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"ut anim nostrud minim\",\n    \"updated_on\": \"1953-12-15T12:42:01.539Z\",\n    \"updated_by\": \"anim in cillum\",\n    \"created_on\": \"1997-11-10T11:40:23.147Z\",\n    \"created_by\": \"laborum elit\",\n    \"archived\": false,\n    \"archived_on\": \"2016-03-21T04:13:39.527Z\",\n    \"archived_by\": \"dolore tempor ea\"\n  },\n  \"workspaces\": [\n    \"tempor\",\n    \"id nulla reprehenderit\"\n  ]\n}"}],"_postman_id":"2eef1c03-3338-4d51-9bbb-caefc661dbf3"}],"id":"a0349c72-12d8-44ca-ab4b-5492c39126fb","description":"<p>AiAdvertising takes security seriously. To support this, we use <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS\">CORS</a> to limit which domains can access information from the Ai Ad Platform API. </p>\n<p>By default, only the following domains can access information from Ai Ad Platform:</p>\n<pre>\naiadvertising.com\naiadvertising-demo.com\naiadvertising-test.com\naiadvertising-development.com\n</pre>\n\n\n<p>If you are creating a custom application that needs to access the API, you must first add this domain as a White List entry. This makes the Ai Ad Platform aware that this is an approved domain and that it can be granted access to protected resources (with a valid access token).</p>\n","_postman_id":"a0349c72-12d8-44ca-ab4b-5492c39126fb"},{"name":"Workspaces","item":[{"name":"Find All Workspaces","id":"af5b3d9f-2774-4679-b083-13b9bac20f98","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//workspaces?archived=<boolean>","urlObject":{"path":["workspaces"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"334d6da0-7205-4870-ba5a-8b1fb9da2e6c","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//workspaces?archived=<boolean>","host":["/"],"path":["workspaces"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"eu Duis\",\n    \"slug\": \"velit\",\n    \"logo\": \"voluptate dolor amet est incididunt\",\n    \"color\": \"quis sunt velit do\",\n    \"updated_by\": \"incididunt dolore dolor\",\n    \"created_on\": \"1985-01-13T05:27:12.800Z\",\n    \"created_by\": \"esse do commodo\",\n    \"archived\": false,\n    \"archived_on\": \"1980-04-18T16:47:45.993Z\",\n    \"archived_by\": \"in\",\n    \"organization\": {\n      \"name\": \"deserunt eu eiusmod\",\n      \"slug\": \"Ut aute ut laboris Lorem\",\n      \"logo\": \"a\",\n      \"color\": \"laboris dolore in\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"veniam aliqua fugiat sit\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aliqua consequat mollit sunt\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"sunt Excepteur incididunt\",\n      \"updated_on\": \"2020-03-11T23:20:22.843Z\",\n      \"updated_by\": \"amet irure voluptate est incididunt\",\n      \"created_on\": \"1951-07-22T18:00:14.543Z\",\n      \"created_by\": \"sunt sit Ut\",\n      \"archived\": true,\n      \"archived_on\": \"1951-08-20T05:51:20.386Z\",\n      \"archived_by\": \"qui officia Excepteur\"\n    }\n  },\n  {\n    \"name\": \"proident\",\n    \"slug\": \"id elit\",\n    \"logo\": \"velit nostrud\",\n    \"color\": \"consequat reprehenderi\",\n    \"updated_by\": \"id irure et\",\n    \"created_on\": \"1994-11-16T23:25:24.355Z\",\n    \"created_by\": \"magna dolor enim in occaecat\",\n    \"archived\": true,\n    \"archived_on\": \"2019-01-12T09:53:45.556Z\",\n    \"archived_by\": \"veniam ad nulla\",\n    \"organization\": {\n      \"name\": \"U\",\n      \"slug\": \"officia nostrud ut deserunt\",\n      \"logo\": \"occaecat\",\n      \"color\": \"aliquip sit pariatur\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"sit\",\n      \"ad_spend_tracker_url\": \"elit aute officia\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"dolore Excepteur aliquip ut ea\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"mollit deserunt sint labore\",\n      \"updated_on\": \"2010-10-29T09:20:09.922Z\",\n      \"updated_by\": \"in anim\",\n      \"created_on\": \"2019-12-19T05:29:16.224Z\",\n      \"created_by\": \"ullamco ea ve\",\n      \"archived\": false,\n      \"archived_on\": \"2012-04-28T10:24:27.099Z\",\n      \"archived_by\": \"dolore exercitation\"\n    }\n  }\n]"}],"_postman_id":"af5b3d9f-2774-4679-b083-13b9bac20f98"},{"name":"Create Workspace","id":"0921b80b-e70a-4003-b2c2-5466a9f71434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//workspaces","urlObject":{"path":["workspaces"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"d5a4493c-6bfd-498f-a39c-172b0bf2d7a9","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//workspaces"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id nulla sed non\",\n  \"slug\": \"eiusmod nisi\",\n  \"logo\": \"amet Except\",\n  \"color\": \"nulla in\",\n  \"updated_by\": \"anim minim officia reprehenderit esse\",\n  \"created_on\": \"1970-02-08T02:17:10.752Z\",\n  \"created_by\": \"qui sint Duis ipsum\",\n  \"archived\": true,\n  \"archived_on\": \"1957-09-01T02:09:53.265Z\",\n  \"archived_by\": \"voluptate elit Ut do\",\n  \"organization\": {\n    \"name\": \"sit sunt pariatur\",\n    \"slug\": \"ut labore officia\",\n    \"logo\": \"anim sint amet\",\n    \"color\": \"minim culpa nisi\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"consequat proident\",\n    \"ad_spend_tracker_url\": \"aute id proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Excepteur\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"Excepteur dolore exercitation nulla s\",\n    \"updated_on\": \"1970-09-22T11:21:12.719Z\",\n    \"updated_by\": \"veniam elit minim ea\",\n    \"created_on\": \"1995-06-10T10:17:59.535Z\",\n    \"created_by\": \"magna culpa exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-03-08T22:39:39.148Z\",\n    \"archived_by\": \"ipsum id\"\n  }\n}"}],"_postman_id":"0921b80b-e70a-4003-b2c2-5466a9f71434"},{"name":"Count Workspaces","id":"f12db1c2-ddd6-4b45-ac9d-fb4b604f46be","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//workspaces/count?archived=<boolean>","urlObject":{"path":["workspaces","count"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[]}},"response":[{"id":"cdee8ad0-161a-49ab-b042-0540f96833dd","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//workspaces/count?archived=<boolean>","host":["/"],"path":["workspaces","count"],"query":[{"key":"archived","value":"<boolean>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"-96514884.24845912"}],"_postman_id":"f12db1c2-ddd6-4b45-ac9d-fb4b604f46be"},{"name":"Search Workspaces","id":"46a980d6-db30-41ee-9586-ecdec23fb574","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//workspaces/search","urlObject":{"path":["workspaces","search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"f7475c92-3109-4db2-8a05-d41a46a5b2ff","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//workspaces/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"name\": \"eu Duis\",\n    \"slug\": \"velit\",\n    \"logo\": \"voluptate dolor amet est incididunt\",\n    \"color\": \"quis sunt velit do\",\n    \"updated_by\": \"incididunt dolore dolor\",\n    \"created_on\": \"1985-01-13T05:27:12.800Z\",\n    \"created_by\": \"esse do commodo\",\n    \"archived\": false,\n    \"archived_on\": \"1980-04-18T16:47:45.993Z\",\n    \"archived_by\": \"in\",\n    \"organization\": {\n      \"name\": \"deserunt eu eiusmod\",\n      \"slug\": \"Ut aute ut laboris Lorem\",\n      \"logo\": \"a\",\n      \"color\": \"laboris dolore in\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"culpa\",\n      \"ad_spend_tracker_url\": \"veniam aliqua fugiat sit\",\n      \"slack_enabled\": true,\n      \"slack_url\": \"aliqua consequat mollit sunt\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"sunt Excepteur incididunt\",\n      \"updated_on\": \"2020-03-11T23:20:22.843Z\",\n      \"updated_by\": \"amet irure voluptate est incididunt\",\n      \"created_on\": \"1951-07-22T18:00:14.543Z\",\n      \"created_by\": \"sunt sit Ut\",\n      \"archived\": true,\n      \"archived_on\": \"1951-08-20T05:51:20.386Z\",\n      \"archived_by\": \"qui officia Excepteur\"\n    }\n  },\n  {\n    \"name\": \"proident\",\n    \"slug\": \"id elit\",\n    \"logo\": \"velit nostrud\",\n    \"color\": \"consequat reprehenderi\",\n    \"updated_by\": \"id irure et\",\n    \"created_on\": \"1994-11-16T23:25:24.355Z\",\n    \"created_by\": \"magna dolor enim in occaecat\",\n    \"archived\": true,\n    \"archived_on\": \"2019-01-12T09:53:45.556Z\",\n    \"archived_by\": \"veniam ad nulla\",\n    \"organization\": {\n      \"name\": \"U\",\n      \"slug\": \"officia nostrud ut deserunt\",\n      \"logo\": \"occaecat\",\n      \"color\": \"aliquip sit pariatur\",\n      \"active\": true,\n      \"enable_workspaces\": true,\n      \"onboarding_url\": \"sit\",\n      \"ad_spend_tracker_url\": \"elit aute officia\",\n      \"slack_enabled\": false,\n      \"slack_url\": \"dolore Excepteur aliquip ut ea\",\n      \"teams_enabled\": false,\n      \"teams_url\": \"mollit deserunt sint labore\",\n      \"updated_on\": \"2010-10-29T09:20:09.922Z\",\n      \"updated_by\": \"in anim\",\n      \"created_on\": \"2019-12-19T05:29:16.224Z\",\n      \"created_by\": \"ullamco ea ve\",\n      \"archived\": false,\n      \"archived_on\": \"2012-04-28T10:24:27.099Z\",\n      \"archived_by\": \"dolore exercitation\"\n    }\n  }\n]"}],"_postman_id":"46a980d6-db30-41ee-9586-ecdec23fb574"},{"name":"Find One Workspace","id":"1a029e0e-e5b7-4339-bef7-0b15f41e9812","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//workspaces/:id?archived=<boolean>","urlObject":{"path":["workspaces",":id"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"archived","value":"<boolean>"}],"variable":[{"id":"8388e611-c44f-45c5-8eaf-32ef9671a8cc","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"e49de0f0-cb06-42bf-934b-0c4571323e60","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//workspaces/:id?archived=<boolean>","host":["/"],"path":["workspaces",":id"],"query":[{"key":"archived","value":"<boolean>"}],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id nulla sed non\",\n  \"slug\": \"eiusmod nisi\",\n  \"logo\": \"amet Except\",\n  \"color\": \"nulla in\",\n  \"updated_by\": \"anim minim officia reprehenderit esse\",\n  \"created_on\": \"1970-02-08T02:17:10.752Z\",\n  \"created_by\": \"qui sint Duis ipsum\",\n  \"archived\": true,\n  \"archived_on\": \"1957-09-01T02:09:53.265Z\",\n  \"archived_by\": \"voluptate elit Ut do\",\n  \"organization\": {\n    \"name\": \"sit sunt pariatur\",\n    \"slug\": \"ut labore officia\",\n    \"logo\": \"anim sint amet\",\n    \"color\": \"minim culpa nisi\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"consequat proident\",\n    \"ad_spend_tracker_url\": \"aute id proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Excepteur\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"Excepteur dolore exercitation nulla s\",\n    \"updated_on\": \"1970-09-22T11:21:12.719Z\",\n    \"updated_by\": \"veniam elit minim ea\",\n    \"created_on\": \"1995-06-10T10:17:59.535Z\",\n    \"created_by\": \"magna culpa exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-03-08T22:39:39.148Z\",\n    \"archived_by\": \"ipsum id\"\n  }\n}"}],"_postman_id":"1a029e0e-e5b7-4339-bef7-0b15f41e9812"},{"name":"Replace Workspace","id":"cb22108c-9cdd-4659-b9ae-3263ff484110","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PUT","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//workspaces/:id","urlObject":{"path":["workspaces",":id"],"host":["/"],"query":[],"variable":[{"id":"a93fd6c9-86f1-4c17-afdc-e7efbafa6a1e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"02f18a03-78a5-4e9b-a8d0-cd5fa61996c5","name":"response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//workspaces/:id","host":["/"],"path":["workspaces",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id nulla sed non\",\n  \"slug\": \"eiusmod nisi\",\n  \"logo\": \"amet Except\",\n  \"color\": \"nulla in\",\n  \"updated_by\": \"anim minim officia reprehenderit esse\",\n  \"created_on\": \"1970-02-08T02:17:10.752Z\",\n  \"created_by\": \"qui sint Duis ipsum\",\n  \"archived\": true,\n  \"archived_on\": \"1957-09-01T02:09:53.265Z\",\n  \"archived_by\": \"voluptate elit Ut do\",\n  \"organization\": {\n    \"name\": \"sit sunt pariatur\",\n    \"slug\": \"ut labore officia\",\n    \"logo\": \"anim sint amet\",\n    \"color\": \"minim culpa nisi\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"consequat proident\",\n    \"ad_spend_tracker_url\": \"aute id proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Excepteur\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"Excepteur dolore exercitation nulla s\",\n    \"updated_on\": \"1970-09-22T11:21:12.719Z\",\n    \"updated_by\": \"veniam elit minim ea\",\n    \"created_on\": \"1995-06-10T10:17:59.535Z\",\n    \"created_by\": \"magna culpa exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-03-08T22:39:39.148Z\",\n    \"archived_by\": \"ipsum id\"\n  }\n}"}],"_postman_id":"cb22108c-9cdd-4659-b9ae-3263ff484110"},{"name":"Update Workspace","id":"9c828e92-8c63-414e-94c5-971c60a1f751","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//workspaces/:id","urlObject":{"path":["workspaces",":id"],"host":["/"],"query":[],"variable":[{"id":"db4a2c8c-1b8b-4834-832c-51139736535c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"f563b17e-2fb9-41c5-8c0d-fe61e32048c4","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"<string>\",\n  \"slug\": \"<string>\",\n  \"logo\": \"<string>\",\n  \"color\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//workspaces/:id","host":["/"],"path":["workspaces",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id nulla sed non\",\n  \"slug\": \"eiusmod nisi\",\n  \"logo\": \"amet Except\",\n  \"color\": \"nulla in\",\n  \"updated_by\": \"anim minim officia reprehenderit esse\",\n  \"created_on\": \"1970-02-08T02:17:10.752Z\",\n  \"created_by\": \"qui sint Duis ipsum\",\n  \"archived\": true,\n  \"archived_on\": \"1957-09-01T02:09:53.265Z\",\n  \"archived_by\": \"voluptate elit Ut do\",\n  \"organization\": {\n    \"name\": \"sit sunt pariatur\",\n    \"slug\": \"ut labore officia\",\n    \"logo\": \"anim sint amet\",\n    \"color\": \"minim culpa nisi\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"consequat proident\",\n    \"ad_spend_tracker_url\": \"aute id proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Excepteur\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"Excepteur dolore exercitation nulla s\",\n    \"updated_on\": \"1970-09-22T11:21:12.719Z\",\n    \"updated_by\": \"veniam elit minim ea\",\n    \"created_on\": \"1995-06-10T10:17:59.535Z\",\n    \"created_by\": \"magna culpa exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-03-08T22:39:39.148Z\",\n    \"archived_by\": \"ipsum id\"\n  }\n}"}],"_postman_id":"9c828e92-8c63-414e-94c5-971c60a1f751"},{"name":"Archive Workspace","id":"9083b060-7fe5-4b04-abe7-c49357804f5e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//workspaces/:id","urlObject":{"path":["workspaces",":id"],"host":["/"],"query":[],"variable":[{"id":"c0271035-f6c4-4ba0-a91b-7f1a1d6f55a6","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"a26802da-0b56-4cb6-bfe5-5b33872c7647","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//workspaces/:id","host":["/"],"path":["workspaces",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id nulla sed non\",\n  \"slug\": \"eiusmod nisi\",\n  \"logo\": \"amet Except\",\n  \"color\": \"nulla in\",\n  \"updated_by\": \"anim minim officia reprehenderit esse\",\n  \"created_on\": \"1970-02-08T02:17:10.752Z\",\n  \"created_by\": \"qui sint Duis ipsum\",\n  \"archived\": true,\n  \"archived_on\": \"1957-09-01T02:09:53.265Z\",\n  \"archived_by\": \"voluptate elit Ut do\",\n  \"organization\": {\n    \"name\": \"sit sunt pariatur\",\n    \"slug\": \"ut labore officia\",\n    \"logo\": \"anim sint amet\",\n    \"color\": \"minim culpa nisi\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"consequat proident\",\n    \"ad_spend_tracker_url\": \"aute id proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Excepteur\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"Excepteur dolore exercitation nulla s\",\n    \"updated_on\": \"1970-09-22T11:21:12.719Z\",\n    \"updated_by\": \"veniam elit minim ea\",\n    \"created_on\": \"1995-06-10T10:17:59.535Z\",\n    \"created_by\": \"magna culpa exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-03-08T22:39:39.148Z\",\n    \"archived_by\": \"ipsum id\"\n  }\n}"}],"_postman_id":"9083b060-7fe5-4b04-abe7-c49357804f5e"},{"name":"Unarchive Workspace","id":"b09e212e-448a-40e0-8ca0-82fdaa2dc37a","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//workspaces/:id/unarchive","urlObject":{"path":["workspaces",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"20c0903f-fb52-492d-aec9-e21946a95768","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"15c9141d-8a2d-41fb-996d-debf0208065b","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//workspaces/:id/unarchive","host":["/"],"path":["workspaces",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id nulla sed non\",\n  \"slug\": \"eiusmod nisi\",\n  \"logo\": \"amet Except\",\n  \"color\": \"nulla in\",\n  \"updated_by\": \"anim minim officia reprehenderit esse\",\n  \"created_on\": \"1970-02-08T02:17:10.752Z\",\n  \"created_by\": \"qui sint Duis ipsum\",\n  \"archived\": true,\n  \"archived_on\": \"1957-09-01T02:09:53.265Z\",\n  \"archived_by\": \"voluptate elit Ut do\",\n  \"organization\": {\n    \"name\": \"sit sunt pariatur\",\n    \"slug\": \"ut labore officia\",\n    \"logo\": \"anim sint amet\",\n    \"color\": \"minim culpa nisi\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"consequat proident\",\n    \"ad_spend_tracker_url\": \"aute id proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Excepteur\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"Excepteur dolore exercitation nulla s\",\n    \"updated_on\": \"1970-09-22T11:21:12.719Z\",\n    \"updated_by\": \"veniam elit minim ea\",\n    \"created_on\": \"1995-06-10T10:17:59.535Z\",\n    \"created_by\": \"magna culpa exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-03-08T22:39:39.148Z\",\n    \"archived_by\": \"ipsum id\"\n  }\n}"}],"_postman_id":"b09e212e-448a-40e0-8ca0-82fdaa2dc37a"},{"name":"Delete Workspace","id":"286ddddd-2e77-474c-90a4-19ad0293aa6e","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Accept","value":"application/json"}],"url":"//workspaces/:id/delete","urlObject":{"path":["workspaces",":id","delete"],"host":["/"],"query":[],"variable":[{"id":"a4f0747e-a124-46fc-87ce-eb7126887ab5","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"55e4a77d-92d1-4048-9925-708d669a2852","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your Workspace ID","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//workspaces/:id/delete","host":["/"],"path":["workspaces",":id","delete"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"name\": \"id nulla sed non\",\n  \"slug\": \"eiusmod nisi\",\n  \"logo\": \"amet Except\",\n  \"color\": \"nulla in\",\n  \"updated_by\": \"anim minim officia reprehenderit esse\",\n  \"created_on\": \"1970-02-08T02:17:10.752Z\",\n  \"created_by\": \"qui sint Duis ipsum\",\n  \"archived\": true,\n  \"archived_on\": \"1957-09-01T02:09:53.265Z\",\n  \"archived_by\": \"voluptate elit Ut do\",\n  \"organization\": {\n    \"name\": \"sit sunt pariatur\",\n    \"slug\": \"ut labore officia\",\n    \"logo\": \"anim sint amet\",\n    \"color\": \"minim culpa nisi\",\n    \"active\": true,\n    \"enable_workspaces\": true,\n    \"onboarding_url\": \"consequat proident\",\n    \"ad_spend_tracker_url\": \"aute id proident\",\n    \"slack_enabled\": false,\n    \"slack_url\": \"Excepteur\",\n    \"teams_enabled\": false,\n    \"teams_url\": \"Excepteur dolore exercitation nulla s\",\n    \"updated_on\": \"1970-09-22T11:21:12.719Z\",\n    \"updated_by\": \"veniam elit minim ea\",\n    \"created_on\": \"1995-06-10T10:17:59.535Z\",\n    \"created_by\": \"magna culpa exercitation\",\n    \"archived\": false,\n    \"archived_on\": \"1982-03-08T22:39:39.148Z\",\n    \"archived_by\": \"ipsum id\"\n  }\n}"}],"_postman_id":"286ddddd-2e77-474c-90a4-19ad0293aa6e"}],"id":"960d5037-0b21-46a1-b5b4-5baf20cecc55","description":"<p>Workspaces allow you to separate various campaigns and content under a single AIAD platform login. This can be helpful if you are using the Ai Ad Platform for multiple departments, divisions, multiple child companies. </p>\n","_postman_id":"960d5037-0b21-46a1-b5b4-5baf20cecc55"},{"name":"announcements","item":[{"name":"{id}","item":[{"name":"Find One Announcement","id":"9818fa87-231f-4bc3-b262-e9c811659e5c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//announcements/:id","urlObject":{"path":["announcements",":id"],"host":["/"],"query":[],"variable":[{"id":"8839d294-e385-4df7-9dc4-08ab554075a3","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"463ee6d8-28fb-437e-b06c-357d79ff3d16","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//announcements/:id","host":["/"],"path":["announcements",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9818fa87-231f-4bc3-b262-e9c811659e5c"},{"name":"Update Announcement","id":"560fee9f-7ee0-40e6-98af-386e708ba917","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"body\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//announcements/:id","urlObject":{"path":["announcements",":id"],"host":["/"],"query":[],"variable":[{"id":"f345ee93-78e9-49c3-af4a-45666707ca6b","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"749a255e-f7c9-48de-88b5-7c4685f297ba","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"body\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//announcements/:id","host":["/"],"path":["announcements",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"560fee9f-7ee0-40e6-98af-386e708ba917"},{"name":"Remove Announcements","id":"dbcb0fb8-a4ed-4a0c-a801-386063897302","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//announcements/:id","urlObject":{"path":["announcements",":id"],"host":["/"],"query":[],"variable":[{"id":"e830de7c-3904-4adf-8324-36fc74f6b9e4","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"0aedc0c2-df2f-4fb2-bd56-4aa37d20ff6c","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//announcements/:id","host":["/"],"path":["announcements",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dbcb0fb8-a4ed-4a0c-a801-386063897302"},{"name":"Unarchive Announcement","id":"d9acd2d8-e91f-4b5e-8bb4-e356d41ccdf9","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//announcements/:id/unarchive","urlObject":{"path":["announcements",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"59eda593-1559-4191-8032-f9cf3906e614","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"483f1d90-455d-408b-9860-1a820ed6a75b","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//announcements/:id/unarchive","host":["/"],"path":["announcements",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d9acd2d8-e91f-4b5e-8bb4-e356d41ccdf9"}],"id":"1303d460-5cc7-4b6a-a0a7-bf3de57fac02","_postman_id":"1303d460-5cc7-4b6a-a0a7-bf3de57fac02","description":""},{"name":"Find All Announcements","id":"97f42837-f873-456c-9b7f-9c8d627bc661","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//announcements","urlObject":{"path":["announcements"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"f5e9e825-2554-4fab-8a9b-c80aa23f31e8","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//announcements"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"97f42837-f873-456c-9b7f-9c8d627bc661"},{"name":"Create Announcement","id":"dc8d26ae-715e-4594-a6de-4f7fabbc9edc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"body\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//announcements","urlObject":{"path":["announcements"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"6074dca1-8f29-43da-93ae-ba2679690b0a","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"<string>\",\n  \"title\": \"<string>\",\n  \"body\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//announcements"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dc8d26ae-715e-4594-a6de-4f7fabbc9edc"},{"name":"Count Announcements","id":"f0745974-3588-43bb-b5fd-43c7a2187f1f","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//announcements/count","urlObject":{"path":["announcements","count"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"78bf52bb-d6e1-49f1-894a-04dc53224607","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//announcements/count"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f0745974-3588-43bb-b5fd-43c7a2187f1f"}],"id":"080516da-7b86-4369-8ab9-454f5d9ae28d","_postman_id":"080516da-7b86-4369-8ab9-454f5d9ae28d","description":""},{"name":"slack","item":[{"name":"Connect Slack","id":"4415ed36-b71f-447b-a912-d952e180c407","request":{"method":"GET","header":[],"url":"//slack/connect","urlObject":{"path":["slack","connect"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"3080a29b-d060-4b30-bd41-2812c7da44cb","name":"response","originalRequest":{"method":"GET","header":[],"url":"//slack/connect"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4415ed36-b71f-447b-a912-d952e180c407"},{"name":"Get Login Callback Slack","id":"245ab316-14c9-43d3-b30c-35400dd83224","request":{"method":"GET","header":[],"url":"//slack/callback","urlObject":{"path":["slack","callback"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"b31c83a1-1e96-4909-aa46-2d0e92434ae6","name":"response","originalRequest":{"method":"GET","header":[],"url":"//slack/callback"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"245ab316-14c9-43d3-b30c-35400dd83224"},{"name":"Get Installations Slack","id":"27cbc21a-6df1-4522-ad8c-f85ee7d2b407","request":{"method":"GET","header":[],"url":"//slack/installations?tenant_id=<string>","urlObject":{"path":["slack","installations"],"host":["/"],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"tenant_id","value":"<string>"}],"variable":[]}},"response":[{"id":"a4f80881-a412-478b-93a6-6ff83f37379f","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"//slack/installations?tenant_id=<string>","host":["/"],"path":["slack","installations"],"query":[{"key":"tenant_id","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"27cbc21a-6df1-4522-ad8c-f85ee7d2b407"}],"id":"2f8f685d-45f2-4f7a-a30d-f1a9fcced0a0","_postman_id":"2f8f685d-45f2-4f7a-a30d-f1a9fcced0a0","description":""},{"name":"toggles","item":[{"name":"{id}","item":[{"name":"Find One Toggle","id":"2caa5491-4701-44d3-9d18-c119c66a1b77","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//toggles/:id","urlObject":{"path":["toggles",":id"],"host":["/"],"query":[],"variable":[{"id":"a3c0c627-f7d9-417b-8f5d-197f9bfb3f07","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"30e05885-0300-4078-89d8-1b7afaf88335","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//toggles/:id","host":["/"],"path":["toggles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2caa5491-4701-44d3-9d18-c119c66a1b77"},{"name":"Update Toggle","id":"35384186-6bf9-4528-9d96-e22bffd11fdb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"PATCH","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"environment\": \"<string>\",\n  \"toggles\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//toggles/:id","urlObject":{"path":["toggles",":id"],"host":["/"],"query":[],"variable":[{"id":"dbd9e754-d86c-4f37-8e90-9186f5f15ac2","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"fe87bcef-ed49-45e8-a5c5-aa1ea4eca375","name":"response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"environment\": \"<string>\",\n  \"toggles\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"//toggles/:id","host":["/"],"path":["toggles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"35384186-6bf9-4528-9d96-e22bffd11fdb"},{"name":"Remove Toggles","id":"9ef03e0f-d11e-41aa-a299-b6d4ccd9d8cd","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//toggles/:id","urlObject":{"path":["toggles",":id"],"host":["/"],"query":[],"variable":[{"id":"1bc0e3b6-234a-4700-a5fe-c6f19b9f3b98","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"570fa435-8900-441d-9e4a-14d641351c17","name":"response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//toggles/:id","host":["/"],"path":["toggles",":id"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9ef03e0f-d11e-41aa-a299-b6d4ccd9d8cd"},{"name":"Unarchive Toggle","id":"2690bf0f-8e35-4dba-bb62-4abc43d4342c","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//toggles/:id/unarchive","urlObject":{"path":["toggles",":id","unarchive"],"host":["/"],"query":[],"variable":[{"id":"9c7ba5c2-1347-4159-bfdf-c2de76da068d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[{"id":"3e116005-160b-4d87-9c27-22279dd0a67c","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":{"raw":"//toggles/:id/unarchive","host":["/"],"path":["toggles",":id","unarchive"],"variable":[{"key":"id","value":"<string>","description":"(Required) "}]}},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2690bf0f-8e35-4dba-bb62-4abc43d4342c"}],"id":"5eee67c5-98bf-41dd-83a3-280d13eca37c","_postman_id":"5eee67c5-98bf-41dd-83a3-280d13eca37c","description":""},{"name":"Find All Toggles","id":"dc14e0af-f5fe-4560-9285-1a9b93538449","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//toggles","urlObject":{"path":["toggles"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"53c2cea1-8c2c-45db-8890-06b19b1db4f5","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//toggles"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dc14e0af-f5fe-4560-9285-1a9b93538449"},{"name":"Create Toggle","id":"d2f3eadb-d160-4ce5-9b0f-e0ae0f4c9651","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"environment\": \"<string>\",\n  \"toggles\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//toggles","urlObject":{"path":["toggles"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"a2c52463-2b1a-44d8-8499-5de0ad2539ad","name":"response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"environment\": \"<string>\",\n  \"toggles\": \"<object>\"\n}","options":{"raw":{"language":"json"}}},"url":"//toggles"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d2f3eadb-d160-4ce5-9b0f-e0ae0f4c9651"},{"name":"Count Toggles","id":"971b6af9-5825-4e3a-bd78-1e50d1b4d683","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//toggles/count","urlObject":{"path":["toggles","count"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"758a7e26-98ee-4763-bc56-a0b4acf3d82d","name":"response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: bearer","key":"Authorization","value":"Bearer <token>"},{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//toggles/count"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"971b6af9-5825-4e3a-bd78-1e50d1b4d683"}],"id":"d9004999-6d73-405c-a4d8-f5979d984589","_postman_id":"d9004999-6d73-405c-a4d8-f5979d984589","description":""},{"name":"Sharelinks","item":[],"id":"041c55c6-e5c5-4b3c-91db-183dbb171a3a","_postman_id":"041c55c6-e5c5-4b3c-91db-183dbb171a3a","description":""},{"name":"toggles","item":[{"name":"{id}","item":[],"id":"17e7f3f1-0dfa-4aad-abef-b746a5dacd7e","_postman_id":"17e7f3f1-0dfa-4aad-abef-b746a5dacd7e","description":""}],"id":"066e2efe-4f0c-4a16-8547-898bbb627ac3","_postman_id":"066e2efe-4f0c-4a16-8547-898bbb627ac3","description":""},{"name":"Presentations","item":[],"id":"093624bb-c14b-4557-82b7-a629b4ef37e6","_postman_id":"093624bb-c14b-4557-82b7-a629b4ef37e6","description":""},{"name":"Attachments","item":[],"id":"0a536955-2d53-413d-a852-6757bd82cdbb","description":"<p>Attachments are files that are uploaded to the Platform.</p>\n","_postman_id":"0a536955-2d53-413d-a852-6757bd82cdbb"},{"name":"Assets","item":[],"id":"14c2e52b-4272-489b-91da-0d09c7dbe21b","description":"<p>Assets refers to the various digital media that are used within a particular campaign. These assets include the visual, audio, video, and other formats that can be deployed through a campaign. </p>\n","_postman_id":"14c2e52b-4272-489b-91da-0d09c7dbe21b"},{"name":"Comments","item":[],"id":"16822ded-930f-45b6-adb0-27fa5d52e297","_postman_id":"16822ded-930f-45b6-adb0-27fa5d52e297","description":""},{"name":"Auditlogs","item":[],"id":"1b9fb2af-f450-45c2-85cd-edaacb0f20bb","_postman_id":"1b9fb2af-f450-45c2-85cd-edaacb0f20bb","description":""},{"name":"Tags","item":[],"id":"218b6db1-f046-4348-992e-732af05ca2b1","description":"<p>Tags provide a way to add information to Assets. Some tags are auto generated using Artificial Intelligence whereas other tags are added by users. These can be a very helpful way to segment and search your assets within the Platform. </p>\n","_postman_id":"218b6db1-f046-4348-992e-732af05ca2b1"},{"name":"Users","item":[],"id":"2925eee1-4f6e-4314-807e-4d332bdf6d41","description":"<p>This endpoint is used to manage the Users within your instance. You can edit their basic information, and administrative functions such as resetting a password or setting a users access level. </p>\n","_postman_id":"2925eee1-4f6e-4314-807e-4d332bdf6d41"},{"name":"Briefs","item":[],"id":"2bd80b30-e282-4bb6-96f3-d4d65d05ed18","description":"<p>Briefs or otherwise known as creative briefs, help guide the overall advertising direction. These brief</p>\n","_postman_id":"2bd80b30-e282-4bb6-96f3-d4d65d05ed18"},{"name":"Notifications","item":[],"id":"2e931fe6-00c6-4853-943b-200b438b6a56","description":"<p>Notifications are a way for the AIAD Platform to provide users with pertinent information in real time. When certain events such as being invited to a resource occur, you will receive a notification either within the Platform interface or via email. </p>\n","_postman_id":"2e931fe6-00c6-4853-943b-200b438b6a56"},{"name":"Campaigns","item":[],"id":"33701e95-e156-46e1-addb-11c338552e81","description":"<p>Campaigns are a way to track a particular advertising effort over a given period of time. Each campaign has a unique identifier and can provide a way to view how different campaigns perform over time. </p>\n","_postman_id":"33701e95-e156-46e1-addb-11c338552e81"},{"name":"Organizations","item":[],"id":"34e1aac0-be9f-419f-8fed-f053cc1be7a6","description":"<p>An Organization is the highest level within the AIAD Platform. Workspaces and all other entities exist within the context of an organization. </p>\n","_postman_id":"34e1aac0-be9f-419f-8fed-f053cc1be7a6"},{"name":"Analytics","item":[],"id":"3e41121a-6279-4356-b211-b6df51cbac92","description":"<p>Analytics</p>\n","_postman_id":"3e41121a-6279-4356-b211-b6df51cbac92"},{"name":"Calendars","item":[],"id":"44d5835c-9083-4304-9801-edf9d27a3ae0","description":"<p>Calendars allow you to keep track of the key dates that revolve around your advertising campaigns. This endpoint allow you to create new calendars &amp; update existing ones. </p>\n","_postman_id":"44d5835c-9083-4304-9801-edf9d27a3ae0"},{"name":"Webhooks","item":[],"id":"4e42a259-f2e9-4fe9-969c-ba778983db43","description":"<p>Webhooks allow the AIAD Platform to send payloads to an endpoint whenever various actions occur within the tool. These can be used for both administrative and operational needs. </p>\n","_postman_id":"4e42a259-f2e9-4fe9-969c-ba778983db43"},{"name":"Projectplans","item":[],"id":"5d978d8f-9adc-4264-bb95-9dc3ab53a58c","_postman_id":"5d978d8f-9adc-4264-bb95-9dc3ab53a58c","description":""},{"name":"announcements","item":[{"name":"{id}","item":[],"id":"26097ce2-01a4-48fa-a7f1-31ab3fd6c698","_postman_id":"26097ce2-01a4-48fa-a7f1-31ab3fd6c698","description":""}],"id":"5e899aa7-ecbe-4d23-8757-fdbfc5932f19","_postman_id":"5e899aa7-ecbe-4d23-8757-fdbfc5932f19","description":""},{"name":"Groups","item":[],"id":"6df698ae-c7fa-43c3-a299-70a08b763226","description":"<p>Groups provide a way to organize users in ways that make sense. These groups can make it easier to share certain items within the system. </p>\n","_postman_id":"6df698ae-c7fa-43c3-a299-70a08b763226"},{"name":"Reports","item":[],"id":"8777009c-801f-472b-a808-25b9e069fa83","description":"<p>Reports provide analytics about your advertising such as impressions, clicks, populars links etc. This information can be helpful to better understand the impact of your advertising efforts. </p>\n","_postman_id":"8777009c-801f-472b-a808-25b9e069fa83"},{"name":"Recentitems","item":[],"id":"a677e837-c0f9-40bd-a45c-82c849f5654a","_postman_id":"a677e837-c0f9-40bd-a45c-82c849f5654a","description":""},{"name":"Events","item":[],"id":"acfce500-4bb8-475a-813f-457a43834134","description":"<p>Events allow us to collect information about the interactions that occur your website, landing pages, emails and more. This can help provide additional insights into the behavior of customers. </p>\n","_postman_id":"acfce500-4bb8-475a-813f-457a43834134"},{"name":"Workspaces","item":[],"id":"ad5c8f2f-9b09-4c87-8543-756b4741847d","description":"<p>Workspaces allow you to separate various campaigns and content under a single AIAD platform login. This can be helpful if you are using AIAD for multiple departments, divisions, multiple child companies. </p>\n","_postman_id":"ad5c8f2f-9b09-4c87-8543-756b4741847d"},{"name":"Dashboards","item":[],"id":"b6dbee35-8084-4825-bac4-261ee748736a","description":"<p>Dashboards, or otherwise known as Performance Dashboards - give you insights into the full lifecycle performance of your advertising efforts. </p>\n","_postman_id":"b6dbee35-8084-4825-bac4-261ee748736a"},{"name":"Folders","item":[],"id":"b9f41693-2814-4eb1-8a83-616eac35deda","description":"<p>Folders provide a way to logically group assets that are hosted within the AIAD Platform. </p>\n","_postman_id":"b9f41693-2814-4eb1-8a83-616eac35deda"},{"name":"Audiences","item":[],"id":"c07c54b7-a589-4f2e-b652-e5afc3f363d4","description":"<p>Audiences are segments of people that can be used to help help inform advertising platform who to target. You can manage the creation, updating, and uploading of Audiences from within the AIAD Platform. </p>\n","_postman_id":"c07c54b7-a589-4f2e-b652-e5afc3f363d4"},{"name":"Brandkits","item":[],"id":"c7a0e425-e755-4950-940a-fbf0c28c3f76","_postman_id":"c7a0e425-e755-4950-940a-fbf0c28c3f76","description":""},{"name":"Personas","item":[],"id":"e8763487-9d5c-4bfa-b35d-d86a2b74b0d7","description":"<p>Personas use AI to segment and cluster your data to make the most of your advertising efforts. This endpoint allows you to interact with the personas in the AIAD Platform. </p>\n","_postman_id":"e8763487-9d5c-4bfa-b35d-d86a2b74b0d7"},{"name":"Whitelistentries","item":[],"id":"e942e6ad-1115-4362-b3dd-11d7268c0404","description":"<p>AIAD takes security seriously. To support this, we use <a href=\"https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS\">CORS</a> to limit which domains can access information from the AIAD Platform API. </p>\n<p>By default, only the following domains can access information from AIAD:</p>\n<pre>\naiadvertising.com\n</pre>\n\n\n<p>If you are creating a custom application that needs to access the API, you must first add this domain as a White List entry. This makes the AIAD Platform aware that this is an approved domain and that it can be granted access to protected resources (with a valid access token).</p>\n","_postman_id":"e942e6ad-1115-4362-b3dd-11d7268c0404"},{"name":"Connect Power Bi","id":"4e8831cb-1f5a-40ba-9135-20d1f8925031","request":{"method":"GET","header":[],"url":"//powerbi/token","urlObject":{"path":["powerbi","token"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"d6d9af67-f953-4508-96b3-9293f0441972","name":"response","originalRequest":{"method":"GET","header":[],"url":"//powerbi/token"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4e8831cb-1f5a-40ba-9135-20d1f8925031"},{"name":"Get Health App","id":"04c3f823-775f-45c6-9747-5b35791d9243","request":{"method":"GET","header":[],"url":"//health","urlObject":{"path":["health"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"c260b697-395f-465f-9863-78cb1a83faa7","name":"response","originalRequest":{"method":"GET","header":[],"url":"//health"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"04c3f823-775f-45c6-9747-5b35791d9243"},{"name":"Get Vision Ai","id":"558db5df-cdd8-4fee-933c-3bbd50fe67e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//ai/vision","urlObject":{"path":["ai","vision"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"f7f05eae-303e-47ab-b5f0-2f93a5880781","name":"response","originalRequest":{"method":"POST","header":[{"description":"Your AIAD Organization ID","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"body":{"mode":"raw","raw":"{\n  \"id\": \"<string>\"\n}","options":{"raw":{"language":"json"}}},"url":"//ai/vision"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"558db5df-cdd8-4fee-933c-3bbd50fe67e0"},{"name":"Global Search App","id":"b22bed16-cacf-4227-bb47-3186f33b3db2","request":{"method":"POST","header":[],"url":"//search","urlObject":{"path":["search"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"6fa263a8-f130-4398-b3f1-7a18177e3a96","name":"response","originalRequest":{"method":"POST","header":[],"url":"//search"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b22bed16-cacf-4227-bb47-3186f33b3db2"},{"name":"Me App","id":"ff13fa1a-1a52-429d-8d3a-061e570aea4b","request":{"method":"GET","header":[],"url":"//me","urlObject":{"path":["me"],"host":["/"],"query":[],"variable":[]}},"response":[{"id":"1535b071-e73c-4faa-a9f5-32ba80e133f0","name":"response","originalRequest":{"method":"GET","header":[],"url":"//me"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ff13fa1a-1a52-429d-8d3a-061e570aea4b"},{"name":"Find All Analytics","id":"9daee2c8-04d0-4aca-b6db-ea30f82f2349","request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"description":"<p>Your Workspace ID</p>\n","key":"X-WORKSPACE-SLUG","value":"<string>"},{"description":"<p>Your AIAD Organization ID</p>\n","key":"X-ORGANIZATION-SLUG","value":"<string>"}],"url":"//analytics","urlObject":{"path":["analytics"],"host":["/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9daee2c8-04d0-4aca-b6db-ea30f82f2349"}],"variable":[{"id":"a36c1f36-dfb1-43b8-b085-97086b9289e5","key":"baseUrl","value":"/","type":"string"}]}