{"info":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","description":"<html><head></head><body><p>The API for the Patchworks iPaaS (integration platform as a service) is designed under&nbsp;<a href=\"https://desktop.postman.com/?desktopVersion=12.2.2&amp;userId=53036348&amp;teamId=14120786&amp;region=us\">MACH Alliance</a>&nbsp;principles, ensuring that every function available through the dashboard can be accessed programmatically.</p>\n<p>The Patchworks Core API is a RESTful JSON API. This is the same API that powers the dashboard. With secure, real-time connectivity and access to any system or data source, the Core API provides dashboard functionality on your terms.</p>\n<p>Note: For a different view of this documentation and more examples, please see our&nbsp;<a href=\"https://desktop.postman.com/?desktopVersion=12.2.2&amp;userId=53036348&amp;teamId=14120786&amp;region=us\">product documentation</a>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"53036348","collectionId":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","publishedId":"2sBXijJBwj","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-03-21T19:58:09.000Z"},"item":[{"name":"Getting Started","item":[],"id":"9eb53553-7f80-42b3-a7d3-e53fc6aae879","description":"<p><a href=\"#preparation\">Preparation</a><br /><a href=\"#using-the-api\">Using the API</a><br /><a href=\"#authentication\">Authentication</a><br /><a href=\"#usage-limits\">Usage Limits</a><br /><a href=\"#common-fields\">Common Fields</a><br /><a href=\"#errors\">Errors</a></p>\n<h1 id=\"preparation\">Preparation</h1>\n<p>The Patchworks Core API provides programmatic access to functions that you would otherwise perform in the <a href=\"https://app.wearepatchworks.com/login\">dashboard</a>. If you haven't done so already, register for a Patchworks account and build some process flows!</p>\n<h1 id=\"using-the-api\">Using the API</h1>\n<p>The Patchworks Core API is a RESTful JSON API. This is the same API that powers the dashboard. All requests, unless stated otherwise, should include the <code>Content-Type</code> and <code>Accept</code> headers, both set to <code>application/json</code>. Failure to include these may result in incorrectly formatted responses.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>The Core API offers two authentication mechanisms: API Keys and OAuth 2. API Key authentication is the preferred method as it doesn't require any extra authentication calls. API keys do not expire, unlike the token gained via OAuth 2. Whichever method you use, the same usage limits apply.</p>\n<h3 id=\"api-keys\">API Keys</h3>\n<p>These provide great security whilst minimising the authentication complexity. The API key should be passed in the <code>Authorization</code> header in every request. Follow <a href=\"https://doc.wearepatchworks.com/product-documentation/developer-hub/patchworks-api/core-api-authentication/api-keys\">this guide</a> to generate an API key. We recommend using a different API key for each system connected to patchworks. You can create as many as you need. Once you no longer use a key, please revoke it. Request using invalid API keys will return a 401 response.</p>\n<h3 id=\"oauth-2-client-credentials\">OAuth 2 (Client Credentials)</h3>\n<p>Your account username and password can be used to gain a token to be put in the <code>Authorization</code> header to authenticate requests. This follows a simplified client credentials flow. The first request should be:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">POST /fabric/api/login HTTP/1.1\nHost: app.wearepatchworks.com\nContent-Type: application/json\nAccept: application/json\n{\n    \"username\": \"me@patchworks.com\",\n    \"password\": \"a1b2c3d4e5f6\"\n}\n\n</code></pre>\n<p>A successful response will return the following content with a 200 status code:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"message\": \"You have successfully logged in.\",\n\"token\": \"your_token_here\",\n\"expires_in\": 86400\n}\n\n</code></pre>\n<p>The content in the <code>token</code> field should be used as your access token inside the <code>Authorization</code> header (along with the term <code>Bearer</code> to illustrate the token type):</p>\n<p><code>Authorization: Bearer your_token_here</code></p>\n<p>Authentication tokens expire after the length of time indicated in the response (in seconds). An invalid or expired token results in a 401 status code being returned. You should re-authenticate to get a new token.</p>\n<h2 id=\"authorisation\">Authorisation</h2>\n<p>API Keys and OAuth tokens behave slightly differently when it comes to authorisation. A request authenticated with an OAuth token inherits the permissions attached to the user credentials that created the token. You should bear this in mind when using your own credentials or those of another high-level user.</p>\n<p>API keys work by creating a new user on your company account that has manager-level access to the company account. A new user is created per API key created. The user will have the role <code>api-user</code>. This access level ensures the API key can be used for almost all needs except those only an account administrator should have, like blueprint management.</p>\n<h1 id=\"usage-limits\">Usage Limits</h1>\n<p>The Patchworks API has rate and usage limits depending on your tier. All accounts are limited to 240 requests per minute by default. If you need more, please contact Patchworks support. Other usage limits apply based on your account tier. Please see the <a href=\"https://doc.wearepatchworks.com/product-documentation/getting-started/core-subscription-tiers\">tier allowances documentation</a> for more information.</p>\n<p><a href=\"null\"></a></p>\n<p>Common Fields</p>\n<p>Many of the GET requests in the Patchworks Core collection use common functionality to control the data returned. This includes the following:</p>\n<ul>\n<li><p><a href=\"#filters\">Filters</a> - control which models are returned</p>\n</li>\n<li><p><a href=\"#fields\">Fields</a> - control the fields returned within each model</p>\n</li>\n<li><p><a href=\"#includes\">Includes</a> - control the related models returned</p>\n</li>\n<li><p><a href=\"#sorting\">Sorting</a> - control the order of the models returned</p>\n</li>\n<li><p><a href=\"#pagination\">Pagination</a> - control the number of models returned on each page</p>\n</li>\n</ul>\n<p>These are not available on every endpoint, so please check the documentation for the particular endpoint needed.</p>\n<h3 id=\"filters\">Filters</h3>\n<p>Filters are used to limit the models returned to those meeting specific criteria. Filters consist of two parts: key and value, and are used in the url as query parameters. Here is an example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// get models where key=value AND key2=value2\n/my/endpoint?filter[key]=value&amp;filter[key2]=value2\n\n</code></pre><p>In some cases, multiple values may be passed to a filter (for an <code>or</code> comparison) like so:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// get models where key IN (value, value1)\n/my/endpoint?filter[key]=value,value1\n\n</code></pre><p>Please see the individual endpoint for the list of filters supported.</p>\n<h3 id=\"fields\">Fields</h3>\n<p>Some endpoints allow the user to take a more declarative approach by specifying what fields should be included in the models returned. The format is similar to that used for fields:</p>\n<p><code>/my/endpoint?fields[users]=field1,field2</code></p>\n<p>Most endpoints do not allow this functionality, but it is becoming more widely available over time.</p>\n<h3 id=\"includes\">Includes</h3>\n<p>Core is a highly relational system, and so it makes sense for the API to reflect this in the data returned. By default, no related models are returned. But they can be requested using the <code>includes</code> query parameter:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// request the related 'versions' and 'webhook' models\n/my/endpoint?includes=versions,webhooks\n\n</code></pre><p>Each endpoint has a list of includes you can request. It is important to only request what you need, as the included data can dramatically increase the size of the API response. In some cases, nested relationships or even related model counts can be requested for some endpoints.</p>\n<h3 id=\"sorting\">Sorting</h3>\n<p>Core offers sorting functionality on some endpoints to make the results easier to work with. The sort can be specified using a query parameter as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// sort the models by name in descending order\n/my/endpoint?sort=-name\n// sort the models by name in ascending order\n/my/endpoint?sort=name\n\n</code></pre><p>In some cases, multiple sorts can be applied within the same request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>// sort by name descending and age ascending\n/my/endpoint?sort=-name,age\n\n</code></pre><p>Check each endpoint for the list of sorts available.</p>\n<h3 id=\"pagination\">Pagination</h3>\n<p>Core offers pagination functionality on some endpoints to make the results easier to work with. The pagination can be specified using a query parameter as follows:</p>\n<p><code>/my/endpoint?page=1&amp;per_page=100</code></p>\n<p>The <code>per_page</code> parameter is optional and will default to a reasonable value for each endpoint. The <code>page</code> parameter is required and must be an integer, starting at 1.</p>\n<p><a href=\"null\"></a></p>\n<p>Errors</p>\n<p>Error responses may be returned for several reasons. It is recommended to first check the HTTP status code to indicate if the request was successful:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n<th>Reason</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200/201</td>\n<td>Successful</td>\n<td>-</td>\n</tr>\n<tr>\n<td>204</td>\n<td>Successful, but no content returned</td>\n<td>-</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad request</td>\n<td>The request had some other issue not covered by a 422 response</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthenticated</td>\n<td>The API key or token is invalid, expired or revoked</td>\n</tr>\n<tr>\n<td>403</td>\n<td>Unauthorized</td>\n<td>The user associated with the API key or token does not have sufficient permission to perform the action</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Endpoint Not Found</td>\n<td>-</td>\n</tr>\n<tr>\n<td>405</td>\n<td>Method Not Allowed</td>\n<td>Using the wrong HTTP verb in the request</td>\n</tr>\n<tr>\n<td>409</td>\n<td>Conflict</td>\n<td>This usually occurs when attempt to create something that already exists</td>\n</tr>\n<tr>\n<td>413</td>\n<td>Content too large</td>\n<td>This may be encountered when initialising a flow with a payload</td>\n</tr>\n<tr>\n<td>415</td>\n<td>Unsupported Media Type</td>\n<td>The content-type header value is incorrect, please ensure it is <code>application/json</code></td>\n</tr>\n<tr>\n<td>422</td>\n<td>Unprocessible Request</td>\n<td>The content in the request has failed validation. Please see the response for a description of errors</td>\n</tr>\n<tr>\n<td>429</td>\n<td>Too Many Requests</td>\n<td>You have hit a rate limit</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Server Error</td>\n<td>Something went wrong on the receiving server</td>\n</tr>\n</tbody>\n</table>\n</div><p>The most common error is a 422 Unprocessible Request. This means that the request was valid but the server could not process it. The response will contain a JSON object with a description of the error, usually in this format:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"message\": \"...\",\n  \"errors\": {\n    \"field1\": [\n      {\"rule\":  \"failure reason\"}\n    ]\n  }\n}\n\n</code></pre>\n<p>Where <code>field1</code> is the name of the field that failed validation, <code>rule</code> is the name of the validation rule that failed, and <code>failure reason</code> is the reason why validation failed.</p>\n","_postman_id":"9eb53553-7f80-42b3-a7d3-e53fc6aae879","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Activity Logs","item":[{"name":"List Activity Logs","id":"b0b8fcd0-27e3-42ba-b8ad-71c8ba800a66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/activity-logs","description":"<p>Retrieves a paginated list of activity logs. Can be filtered by <code>subject_type</code> and <code>subject_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","activity-logs"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by subject_type.</p>\n","type":"text/plain"},"key":"filter[subject_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by subject_id.</p>\n","type":"text/plain"},"key":"filter[subject_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of causer fields to return. Available: id, name, email</p>\n","type":"text/plain"},"key":"fields[causer]","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"cbb4c80a-6d2d-4f55-b162-2d85da52946b","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/activity-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","activity-logs"],"query":[{"description":"Filter results by subject_type.","key":"filter[subject_type]","value":"string","disabled":true},{"description":"Filter results by subject_id.","key":"filter[subject_id]","value":"string","disabled":true},{"description":"Comma-separated list of causer fields to return. Available: id, name, email","key":"fields[causer]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"log_name\": \"string\",\n      \"subject_type\": \"string\",\n      \"subject_id\": \"string\",\n      \"causer_id\": \"string\",\n      \"event\": \"string\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"changes\": \"string\",\n      \"user\": {\n        \"id\": 0,\n        \"name\": \"string\",\n        \"email\": \"string\"\n      }\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/activity-logs\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/activity-logs?page=1\",\n    \"last\": \"https://api.example.com/api/v1/activity-logs?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"d7d133b5-c0d4-45bc-b1e4-6764a73b07a7","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/activity-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","activity-logs"],"query":[{"description":"Filter results by subject_type.","key":"filter[subject_type]","value":"string","disabled":true},{"description":"Filter results by subject_id.","key":"filter[subject_id]","value":"string","disabled":true},{"description":"Comma-separated list of causer fields to return. Available: id, name, email","key":"fields[causer]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"688b28f4-6277-46d6-a482-79b31c7e7aef","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/activity-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","activity-logs"],"query":[{"description":"Filter results by subject_type.","key":"filter[subject_type]","value":"string","disabled":true},{"description":"Filter results by subject_id.","key":"filter[subject_id]","value":"string","disabled":true},{"description":"Comma-separated list of causer fields to return. Available: id, name, email","key":"fields[causer]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b0b8fcd0-27e3-42ba-b8ad-71c8ba800a66"}],"id":"58f718ce-5234-4e46-b7dd-fd762b492bce","_postman_id":"58f718ce-5234-4e46-b7dd-fd762b492bce","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"AI","item":[{"name":"List AI Conversations","id":"3ce57d99-34b1-4c25-a711-a60cc8f14a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/ai/conversations","description":"<p>Retrieves a paginated list of AI conversations. Can be filtered by <code>status</code>, <code>type</code>, <code>user_id</code>, and <code>reported</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","ai","conversations"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"02df74a3-6fc6-41e1-a7be-9ef4def895ee","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/ai/conversations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"string\",\n      \"type\": \"string\",\n      \"status\": \"string\",\n      \"reported\": false,\n      \"initial_user_prompt\": \"string\",\n      \"user_interaction_logs_count\": 0,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"user\": {\n        \"id\": 0,\n        \"name\": \"string\"\n      }\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/ai/conversations\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/ai/conversations?page=1\",\n    \"last\": \"https://api.example.com/api/v1/ai/conversations?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"ca4ae622-66f1-4b01-a65a-9447059b34f3","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/ai/conversations"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2a62ded5-c5b2-4ef0-9c0d-487f98cb8ae9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/ai/conversations"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3ce57d99-34b1-4c25-a711-a60cc8f14a33"},{"name":"Generate AI Script","id":"bc9b033d-6752-40ca-9bdc-570a7cf8c07f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userPrompt\": \"string\",\n  \"examplePayload\": \"string\",\n  \"language\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/ai/scripts/generate","description":"<p>Generates a new script from a prompt using AI.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","ai","scripts","generate"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"ab148cd4-ad71-4b55-81e4-1069f8c1bc59","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"userPrompt\": \"string\",\n  \"examplePayload\": \"string\",\n  \"language\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/ai/scripts/generate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"bc997377-445f-4ebb-b79e-e16dd6505219","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"userPrompt\": \"string\",\n  \"examplePayload\": \"string\",\n  \"language\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/ai/scripts/generate"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"775ad1e5-0c1d-457a-8617-ac8cdd025d53","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"userPrompt\": \"string\",\n  \"examplePayload\": \"string\",\n  \"language\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/ai/scripts/generate"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ba8cbd6e-3ac3-42b8-9224-d89b0cb86e9f","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"userPrompt\": \"string\",\n  \"examplePayload\": \"string\",\n  \"language\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/ai/scripts/generate"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"bc9b033d-6752-40ca-9bdc-570a7cf8c07f"},{"name":"Reply AI Script","id":"3614cd13-86b2-4fe5-b34d-561100a6404b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userReply\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/ai/scripts/:conversationUlid/reply","description":"<p>Submits a follow-up reply to an existing AI script conversation, identified by <code>conversationUlid</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","ai","scripts",":conversationUlid","reply"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"080d3be1-19cc-40a7-bdea-e14caff79d72","description":{"content":"<p>The conversationUlid identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"conversationUlid"}]}},"response":[{"id":"6c25937f-d200-450a-b434-96129d215396","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"userReply\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/scripts/:conversationUlid/reply","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai","scripts",":conversationUlid","reply"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"64d287d8-48f2-4d99-8859-1917d4a2c567","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"userReply\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/scripts/:conversationUlid/reply","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai","scripts",":conversationUlid","reply"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"caaa8d7f-4b7b-425b-b783-fb45454ff2d5","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"userReply\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/scripts/:conversationUlid/reply","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai","scripts",":conversationUlid","reply"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7fad88ea-ef00-4215-a143-42714f67066e","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"userReply\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/scripts/:conversationUlid/reply","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai","scripts",":conversationUlid","reply"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"3614cd13-86b2-4fe5-b34d-561100a6404b"},{"name":"End AI","id":"b9145e84-e21f-409a-85d9-dddf6c78785f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/end","description":"<p>Ends a specific AI conversation.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","ai",":conversationUlid","end"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"877fbae6-96fa-43fb-b8c7-a435abd05e91","description":{"content":"<p>The conversationUlid identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"conversationUlid"}]}},"response":[{"id":"34d8fba7-c1ea-4f31-b7be-fe473532803d","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/end","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai",":conversationUlid","end"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"797f95b4-d9fe-45ec-b296-28703d9462fc","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/end","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai",":conversationUlid","end"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"717611fd-a82b-4fe4-a764-7075d72d3fcf","name":"Unauthorized","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/end","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai",":conversationUlid","end"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7b083357-1d7b-4561-bd9d-81835d2da328","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/end","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai",":conversationUlid","end"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"b9145e84-e21f-409a-85d9-dddf6c78785f"},{"name":"Report AI","id":"c8b3d19d-862d-4a48-8f3b-ecaef1aa9b23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/report","description":"<p>Flags a specific AI conversation for review.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","ai",":conversationUlid","report"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"db4c738c-4ac4-4894-b654-c4db2ff60c9b","description":{"content":"<p>The conversationUlid identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"conversationUlid"}]}},"response":[{"id":"849e9ff6-dfa8-44d4-8068-a143a4e658c3","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/report","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai",":conversationUlid","report"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"5e3a6452-4ba8-435a-95db-31a011b856f0","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/report","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai",":conversationUlid","report"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6a757398-16a5-4890-b36a-bda31645c6ff","name":"Unauthorized","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/report","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai",":conversationUlid","report"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"57dd4ffd-6fda-40fd-970d-a814865dfad0","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/ai/:conversationUlid/report","host":["https://core.wearepatchworks.com"],"path":["api","v1","ai",":conversationUlid","report"],"variable":[{"key":"conversationUlid","value":"string","description":"The conversationUlid identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"c8b3d19d-862d-4a48-8f3b-ecaef1aa9b23"}],"id":"4ca3c7e9-ee6c-4691-8d4d-542fe4ba09b7","_postman_id":"4ca3c7e9-ee6c-4691-8d4d-542fe4ba09b7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Allowances","item":[{"name":"Refresh Allowance","id":"be9bbc25-a1ba-423d-8bd5-745e94ba7f13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/allowances/refresh","description":"<p>Refreshes the usage allowances for the company associated with the current API key.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","allowances","refresh"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"2b784488-34ac-4603-8c97-5e10388d0ff9","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/allowances/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"d6d6501d-1051-4ad3-b0e4-5bba09ec07ac","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/allowances/refresh"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"46f34ab8-dd99-43d2-9abf-923c6760313a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/allowances/refresh"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"31d07d4d-6821-42ce-88f9-fe37997a43ee","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/allowances/refresh"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"be9bbc25-a1ba-423d-8bd5-745e94ba7f13"},{"name":"Get Company Allowance","id":"31521495-ab81-4691-9a96-b89a03f14fa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/allowance","description":"<p>Retrieves the current allowance limits, usage, and remaining capacity for the company associated with the current API key.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","my","company","allowance"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"6b491233-701f-4562-9bf4-7debd216d665","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/allowance"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"allowance\": {},\n    \"usage\": {},\n    \"remaining\": {}\n  }\n}"}],"_postman_id":"31521495-ab81-4691-9a96-b89a03f14fa9"}],"id":"e91ce79e-59f7-4078-a194-72852f5885af","_postman_id":"e91ce79e-59f7-4078-a194-72852f5885af","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Authentication Implementations","item":[{"name":"Create Authentication Implementation Endpoint","id":"6d1075e9-c135-4e74-ab8d-d8c02afaf438","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"endpoint_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints","description":"<p>Adds one or more endpoints to a specific authentication implementation.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"548a90c6-1b3d-4b60-9686-5a3f2279588a","description":{"content":"<p>The authentication implementation identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_implementation"}]}},"response":[{"id":"8ec10fb3-e45e-4ebc-928b-84a6b8199e1d","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"endpoint_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"field_path\": \"example_field_path\",\n    \"tags\": \"example_tags\",\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"variables\": \"example_variables\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"system_id\": 1,\n    \"system\": {},\n    \"entity_type_id\": 1,\n    \"entity_type\": {},\n    \"endpoint\": \"example_endpoint\",\n    \"http_method\": \"CONNECT\",\n    \"data_type\": \"csv\",\n    \"pagination_method\": \"Custom relative URI\",\n    \"deprecated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"direction\": \"Send\",\n    \"returns_multiple_records\": true,\n    \"pre_script_version_id\": 1,\n    \"post_script_version_id\": 1,\n    \"endpoint_schema\": [],\n    \"field_tags\": [],\n    \"data_path\": [],\n    \"body_format\": \"none\",\n    \"raw_body\": [],\n    \"filters\": [],\n    \"modified\": [],\n    \"help_link\": [],\n    \"authentication_implementations\": [],\n    \"pre_script_version\": \"example_pre_script_version\",\n    \"post_script_version\": \"example_post_script_version\",\n    \"disable_header_addition\": true,\n    \"response_encoding\": \"base64\"\n  }\n}"},{"id":"91c48dfc-4c5c-4959-92ef-05736f9b8588","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"endpoint_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5d317cfc-5264-4429-81cb-1d2494308b2e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"endpoint_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ffe84672-354e-464f-b204-2f7ccef4f979","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"endpoint_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"endpoint_ids\": [\n      \"The endpoint ids field is required.\"\n    ],\n    \"endpoint_ids.*\": [\n      \"The endpoint ids * field is required.\"\n    ]\n  }\n}"}],"_postman_id":"6d1075e9-c135-4e74-ab8d-d8c02afaf438"},{"name":"Delete Authentication Implementation Endpoint","id":"ee950f7b-b7de-44ce-8aae-fbec51384b64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints/:endpoint","description":"<p>Permanently removes a specific endpoint from a specific authentication implementation.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints",":endpoint"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"bd78470e-591d-46da-a224-f18927ed1b98","description":{"content":"<p>The authentication implementation identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_implementation"},{"id":"848ef01b-b4a8-4e37-bea5-68e30f3cc4fe","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"56de2929-4449-409f-81a1-5e4765af3588","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints",":endpoint"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"ebcd8633-3175-476b-b6b5-8a0d34f6fe0c","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints",":endpoint"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3eeddb1b-51ea-4765-8c62-a19c23ffca3c","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","endpoints",":endpoint"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ee950f7b-b7de-44ce-8aae-fbec51384b64"},{"name":"List Authentication Implementation Variables","id":"7c27dc44-6858-4154-8d2e-0f64c66392fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","description":"<p>Retrieves a paginated list of variables for a specific authentication implementation.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by label.</p>\n","type":"text/plain"},"key":"filter[label]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: label, key, value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"4d4c5e44-7b94-43a9-b918-5b7925db3099","description":{"content":"<p>The authentication implementation identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_implementation"}]}},"response":[{"id":"42240581-ab51-4e53-acb0-d01f6b364fef","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"key\": \"example_key\",\n      \"value\": \"example_value\",\n      \"secret\": \"example_secret\",\n      \"locked\": \"example_locked\",\n      \"configurable\": \"example_configurable\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"modified\": \"example_modified\",\n      \"pivot\": \"example_pivot\",\n      \"required\": true,\n      \"advanced\": true,\n      \"alias\": \"example_alias\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/authentication-implementations/{authentication_implementation}/variables\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/authentication-implementations/{authentication_implementation}/variables?page=1\",\n    \"last\": \"https://api.example.com/api/v1/authentication-implementations/{authentication_implementation}/variables?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"4b686c8e-88f9-4c2f-8fb0-bcdb3e8e4861","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4fd6ccee-c261-4b3d-a1c8-ab4d5e28a451","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7c27dc44-6858-4154-8d2e-0f64c66392fa"},{"name":"Create Authentication Implementation Variable","id":"7506530a-c839-41c3-bc8d-f52bcee5d925","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","description":"<p>Creates a new variable for a specific authentication implementation.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f220ec5b-b8cf-4b47-b372-380675f8c4ae","description":{"content":"<p>The authentication implementation identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_implementation"}]}},"response":[{"id":"3fe764d9-a8b3-4660-8254-c2cb616ad119","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"locked\": \"example_locked\",\n    \"configurable\": \"example_configurable\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"modified\": \"example_modified\",\n    \"pivot\": \"example_pivot\",\n    \"required\": true,\n    \"advanced\": true,\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"20af3186-aba7-4f0f-8170-2a466b642e4a","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2b34f9d1-c8ba-4fb0-9f64-e3785b4c7d5f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7b11ba48-b34d-4a37-8a60-ebf1366eb6bc","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"7506530a-c839-41c3-bc8d-f52bcee5d925"},{"name":"Delete Authentication Implementation Variable","id":"90f262e6-518b-4270-85f9-11b5de5a162e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables/:variable","description":"<p>Permanently deletes a specific variable from a specific authentication implementation.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","authentication-implementations",":authentication_implementation","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"7604d57a-ac35-4e34-b046-0f259984d812","description":{"content":"<p>The authentication implementation identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_implementation"},{"id":"1617f14a-cf98-4880-8fd9-9beded95daed","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"798f974f-3ba3-4d2a-9d49-ac0af4c887d7","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables",":variable"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"84b75d06-19c0-4326-b96d-1ac8967b014f","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables",":variable"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c2be54d8-e445-452e-921f-37d9a9767e83","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/authentication-implementations/:authentication_implementation/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","authentication-implementations",":authentication_implementation","variables",":variable"],"variable":[{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"90f262e6-518b-4270-85f9-11b5de5a162e"}],"id":"4f1ee885-4ceb-4a41-b3f2-be9f668628d8","_postman_id":"4f1ee885-4ceb-4a41-b3f2-be9f668628d8","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Blueprints","item":[{"name":"List Blueprints","id":"8fb7c3ae-5f8d-4656-8ae2-6e7e0f781fca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints","description":"<p>Retrieves a paginated list of blueprints.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by intval.</p>\n","type":"text/plain"},"key":"filter[intval]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by labelTemplates.</p>\n","type":"text/plain"},"key":"filter[labelTemplates]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label_templates.id.</p>\n","type":"text/plain"},"key":"filter[label_templates.id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, updated_at, name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"9966eeae-9870-44a3-b420-0a38377fb3ac","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by intval.","key":"filter[intval]","value":"string","disabled":true},{"description":"Filter results by labelTemplates.","key":"filter[labelTemplates]","value":"string","disabled":true},{"description":"Filter results by label_templates.id.","key":"filter[label_templates.id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, updated_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e774e40b-452a-4df4-a9f8-6b84049fdc5f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by intval.","key":"filter[intval]","value":"string","disabled":true},{"description":"Filter results by labelTemplates.","key":"filter[labelTemplates]","value":"string","disabled":true},{"description":"Filter results by label_templates.id.","key":"filter[label_templates.id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, updated_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"233f53c1-85fc-4bac-823f-304bc99070e6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by intval.","key":"filter[intval]","value":"string","disabled":true},{"description":"Filter results by labelTemplates.","key":"filter[labelTemplates]","value":"string","disabled":true},{"description":"Filter results by label_templates.id.","key":"filter[label_templates.id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, updated_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8fb7c3ae-5f8d-4656-8ae2-6e7e0f781fca"},{"name":"Create Blueprint","id":"8bc06d28-09c2-4eb2-8939-0b5c27e5cf15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints","description":"<p>Creates a new blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"1d1d1510-3a62-47d2-9d22-813fb68dc4fb","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"35e43b70-4608-4b1a-a7d1-9a6f528566d1","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ba209e7f-5f93-460f-938a-3c667ad1bd61","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8b1164a2-e125-4261-b49e-40a55e1fa193","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"8bc06d28-09c2-4eb2-8939-0b5c27e5cf15"},{"name":"Get Blueprint","id":"ad761865-2a4e-4a8e-8b88-8084e35a1b26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","description":"<p>Retrieves the details of a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by intval.</p>\n","type":"text/plain"},"key":"filter[intval]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by labelTemplates.</p>\n","type":"text/plain"},"key":"filter[labelTemplates]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label_templates.id.</p>\n","type":"text/plain"},"key":"filter[label_templates.id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, updated_at, name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"a6bc3fac-9e3d-4820-a0dc-786475a7f824","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"d7058e0a-6d7b-4aa5-a035-8e646ef23868","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by intval.","key":"filter[intval]","value":"string","disabled":true},{"description":"Filter results by labelTemplates.","key":"filter[labelTemplates]","value":"string","disabled":true},{"description":"Filter results by label_templates.id.","key":"filter[label_templates.id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, updated_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"79ac3c63-2a4b-4627-a22a-088c46e83b2f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by intval.","key":"filter[intval]","value":"string","disabled":true},{"description":"Filter results by labelTemplates.","key":"filter[labelTemplates]","value":"string","disabled":true},{"description":"Filter results by label_templates.id.","key":"filter[label_templates.id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, updated_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e105ee4d-27b6-43aa-bd4c-47fafa97399d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by intval.","key":"filter[intval]","value":"string","disabled":true},{"description":"Filter results by labelTemplates.","key":"filter[labelTemplates]","value":"string","disabled":true},{"description":"Filter results by label_templates.id.","key":"filter[label_templates.id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, updated_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ad761865-2a4e-4a8e-8b88-8084e35a1b26"},{"name":"Update Blueprint","id":"dceb2b54-735f-4cdc-85e7-96509c540389","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","description":"<p>Updates an existing blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"52f8804c-825d-4cd5-9d00-c3fe34f51e88","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"df026358-d3d0-4271-8203-4dcd1418bb8d","name":"Successful response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"32f3c205-be7f-4da0-82af-ceca83489a90","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"61a77f65-c48f-4407-a92f-250cab80f9e3","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bed0ea15-f765-4dd1-bc5a-aac62a15ca82","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"dceb2b54-735f-4cdc-85e7-96509c540389"},{"name":"Delete Blueprint","id":"7c015bc1-d9b6-48a1-b570-64de3649ad22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","description":"<p>Permanently deletes a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"394fcef1-08da-48bf-9674-cde14bd4a75d","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"563e2822-7a9c-4210-aa68-6f41dda6844a","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a5d61c17-93df-4ff0-8e83-a2c5d84a4e78","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ececdcf3-df63-4b17-959b-3af579f4e59b","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7c015bc1-d9b6-48a1-b570-64de3649ad22"},{"name":"Get Unpublished","id":"eca54168-0804-4a70-83ba-1ca54ce5a712","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/unpublished","description":"<p>Retrieves blueprints that have not yet been published.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints","unpublished"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"0c87ef8e-f20e-4deb-8492-9c191c19d8f4","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/unpublished"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4e1c1405-6116-4020-9f94-81235a663d24","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/unpublished"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"55f411f7-e5e0-4432-8a89-86effbadd553","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/unpublished"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eca54168-0804-4a70-83ba-1ca54ce5a712"},{"name":"Get Post Install Options","id":"92c85ad2-0037-490d-ab32-082b2bedcdf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/post-install-options","description":"<p>Retrieves the available post-install action options for blueprints.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints","post-install-options"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"03f711d9-f723-45b1-a505-22423eda85da","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/post-install-options"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"190a22a6-dea8-4b5a-83cd-1cc7e832b7ac","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/post-install-options"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"24efdf7a-7bda-4452-b909-c8b5e3533911","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/post-install-options"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"92c85ad2-0037-490d-ab32-082b2bedcdf8"},{"name":"Install Blueprint","id":"2f305584-d40b-4dc0-bdeb-1f2b58a587f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/install","description":"<p>Installs the active version of a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","install"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"4ac9576d-16e7-4d19-bb82-b375c4d083cf","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"54346e57-9680-472d-a869-94e1150ed31e","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"6c18a3a0-774b-41ce-9205-6d1e45a0f783","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0492f5d5-cdcc-4d0d-9821-2693213d91cb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d1cf7044-4dd1-4e92-ad7c-922b4ae56d29","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"2f305584-d40b-4dc0-bdeb-1f2b58a587f3"},{"name":"Install Blueprint Version","id":"1af41338-63c6-4a2e-8d40-3b221fafb58c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/versions/:version/install","description":"<p>Installs a specific version of a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","versions",":version","install"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1425c569-107a-42ff-9a20-ec32e86ef4de","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"},{"id":"0fe89755-834e-4bf2-8450-6ecd138416bd","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"31d34a7a-a568-48ab-9c7a-9909a0628af7","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/versions/:version/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","versions",":version","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"c41e80c1-9761-4173-a0ee-ce9d4685c306","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/versions/:version/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","versions",":version","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a7f36c12-3514-4ec0-9b4c-8df315db39eb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/versions/:version/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","versions",":version","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d0794314-a503-4b68-a027-0d6c146c81c8","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\",\n  \"instances\": \"string\",\n  \"post_install\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/versions/:version/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","versions",":version","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"1af41338-63c6-4a2e-8d40-3b221fafb58c"},{"name":"Install Blueprint","id":"8d6a5e15-46a6-4ea9-9446-7328313b133f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/install","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","install"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9b7c614f-6eff-4010-aafb-df6a0aa82d40","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"5e8c61ec-f9e3-407d-bf8b-685fbeb2d027","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"241ae336-b881-4b0f-b108-f083e98b8cf5","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"746943f7-7cf0-4d58-8cb4-b139bd0f3602","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","install"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8d6a5e15-46a6-4ea9-9446-7328313b133f"},{"name":"List Blueprint Installs","id":"6b452abf-6e1c-4ba5-9e86-534740292144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs","description":"<p>Retrieves a paginated list of installs for a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","installs"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"192c5768-ae25-4c2b-a06c-386f46cfbcab","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"8369c493-0209-452e-8a2f-0b3eb7acf63d","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"29266435-4f27-4770-bb5e-d233b5dbb33f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b5334db4-4c51-4bb5-aefe-b49423531f03","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6b452abf-6e1c-4ba5-9e86-534740292144"},{"name":"List Blueprint Bulk Installs","id":"103dfa54-133e-4d00-b1cd-8b8d595e190c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","description":"<p>Retrieves a paginated list of bulk install batches for a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9dacd605-39d0-4f0f-a984-3a9586f6807a","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"731440b3-59d5-4d6a-a158-df050d23525c","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6b24a0ea-eb51-471b-b956-0b74134ab268","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2e8a5046-4dfe-4ded-9df1-b1c7052bea00","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"103dfa54-133e-4d00-b1cd-8b8d595e190c"},{"name":"Create Blueprint Bulk Install","id":"80addd60-7963-45a1-94c3-e5812e1cd315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","description":"<p>Creates a new bulk install batch for a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"387772cd-59e6-44e0-b504-62483c1d302e","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"a28afe55-9ed6-4ab7-8e14-36a96f5801f1","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e6fa2939-0e8c-426c-9467-30cf0e734ee0","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"69e19e61-2ca1-4b20-bec2-4b80fb936872","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"53de5770-0158-4974-945d-28e9dac898be","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"80addd60-7963-45a1-94c3-e5812e1cd315"},{"name":"Get Blueprint Bulk Install Batch","id":"6dff839f-667d-4593-8415-515a18d1b18a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch","description":"<p>Retrieves the details of a specific bulk install batch.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"374ccf88-1569-4b64-8de5-5b4f3ee64487","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"},{"id":"26369c59-01c0-4353-b18c-f7cb8be8f932","description":{"content":"<p>The batch identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"batch"}]}},"response":[{"id":"63a55da9-6d98-46ec-8b7f-4b72e6367748","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"92139001-8c0d-4314-abad-dc835b999bf2","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9d5d7466-2165-43b9-81c8-83e7821a5fe3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6dff839f-667d-4593-8415-515a18d1b18a"},{"name":"Cancel Blueprint Install Bulk","id":"86479a8c-210e-40e7-b7b2-2b5d5401fa31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/cancel","description":"<p>Cancels a specific in-progress bulk install batch.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","cancel"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"939ed912-5ac1-4793-a8f9-2a86dd03ebb9","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"},{"id":"0aef0cac-f2c7-4c01-b7ce-5e8885f403bd","description":{"content":"<p>The batch identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"batch"}]}},"response":[{"id":"ac5a27cf-f1ca-4ca3-bbab-4ccc0a0879f3","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/cancel","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","cancel"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f63d7a0d-f54b-4c88-a88a-f98f3f6f8ce7","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/cancel","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","cancel"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"30c9ead8-3c03-4e07-b76e-07dd29e7444f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/cancel","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","cancel"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6d275ac7-9b19-40d4-9444-c4ab18715259","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/cancel","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","cancel"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"86479a8c-210e-40e7-b7b2-2b5d5401fa31"},{"name":"List Blueprint Bulk Install Batch Items","id":"50803ad6-49cb-4d86-817f-a70848936ff5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/items","description":"<p>Retrieves a paginated list of items for a specific bulk install batch.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","items"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"7121dfad-2ee8-4144-9473-fa56e986ea17","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"},{"id":"e24fd939-41d3-41f7-bc56-5ebb9cfa62f8","description":{"content":"<p>The batch identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"batch"}]}},"response":[{"id":"028189b3-1de9-4b07-988f-d83ef7a82846","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/items","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","items"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"db6cc6e9-820b-4e6d-83de-814d10e522be","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/items","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","items"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b5e5abfb-43ed-451e-9caf-795e8352bf65","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/items","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","items"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"50803ad6-49cb-4d86-817f-a70848936ff5"},{"name":"Get Blueprint Bulk Install Batch Item","id":"e7a8580d-60d4-4cc1-9c0f-9fc0c747e1ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/items/:item","description":"<p>Retrieves the details of a specific bulk install batch item.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","items",":item"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1f781a1c-e5e6-4380-8884-8340277eefd3","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"},{"id":"85c9bc09-8c9f-4b67-8d9e-9645b789f808","description":{"content":"<p>The batch identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"batch"},{"id":"bbb9275b-05d7-43be-8c14-f5e69a446be5","description":{"content":"<p>The item identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"item"}]}},"response":[{"id":"5db81c94-eab7-48b3-a4b5-d2c05b1c9675","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/items/:item","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","items",":item"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."},{"key":"item","value":"string","description":"The item identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c3efb16a-bd2b-474b-b824-ae759c5f017b","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/items/:item","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","items",":item"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."},{"key":"item","value":"string","description":"The item identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1d5d3bb0-f66a-4788-8463-aca3c500e814","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/installs/bulk/:batch/items/:item","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","installs","bulk",":batch","items",":item"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"batch","value":"string","description":"The batch identifier."},{"key":"item","value":"string","description":"The item identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e7a8580d-60d4-4cc1-9c0f-9fc0c747e1ce"},{"name":"List Blueprint Versions","id":"6bac46e3-f877-4268-9539-18d862065e41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions","description":"<p>Retrieves a paginated list of versions for a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","versions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"e008f2df-74fd-43ea-90fc-f390915efc0c","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"feb0bfcd-9ebc-4ac3-a218-d34ed991bfea","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5e3c4a82-8ed7-49b2-9c59-06ad4b2812ac","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"05de4e91-6134-4b92-961c-1c2fe6bbd34c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6bac46e3-f877-4268-9539-18d862065e41"},{"name":"Get Active Blueprint Version","id":"dbaa0d66-d393-4600-86b5-e3d15bafd988","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/active","description":"<p>Retrieves the currently active version of a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","versions","active"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"38e112c0-13be-42bc-82f5-99d6baa640fa","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"42c620e5-6134-4259-abb6-abe77c5eb6b6","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/active","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions","active"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"89ed665c-269a-48ee-92c1-a23c234cebc3","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/active","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions","active"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"757f46e6-2457-48d0-92f6-30d8b8f45c24","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/active","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions","active"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dbaa0d66-d393-4600-86b5-e3d15bafd988"},{"name":"Get Blueprint Version","id":"09bdf238-8422-4fa3-ba43-db02b073d225","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version","description":"<p>Retrieves the details of a specific blueprint version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1d8e9a75-12f4-4c84-a635-8cb85ee3c329","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"},{"id":"e3c0c77c-59e7-4860-a4ea-dc13108aeef5","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"fb9b7b0e-45c7-408e-b8be-9458a710f3bf","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ce1efbc4-643d-4b1f-969c-260fed91b41f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4d9660d9-a75a-4972-aa57-7ed24ad91335","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"09bdf238-8422-4fa3-ba43-db02b073d225"},{"name":"Delete Blueprint Version","id":"cc9a2cc5-79fb-4acc-9faf-b2546742eab4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version","description":"<p>Permanently deletes a specific blueprint version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1bfd6117-919d-49c0-bfb6-8a252da7b61d","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"},{"id":"13383d70-6f70-4a43-ad55-8d0c7d44f50b","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"c54b19f6-d37b-4b23-9c50-f2228ccdb734","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1a166f6b-9030-4ce0-8335-0bb052ce24c3","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6a34d86d-4676-41a8-8db4-63205b234429","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cc9a2cc5-79fb-4acc-9faf-b2546742eab4"},{"name":"Activate Blueprint Version","id":"6a31f3a3-65ff-46ae-8e32-343bbfe6d33b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version/activate","description":"<p>Sets a specific blueprint version as the active version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version","activate"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"67bdc854-e94f-4233-bc68-885a365da3c6","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"},{"id":"74598af6-1304-46e8-9bd7-b1b614835794","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"acb031e3-0d22-4ed0-b398-dbefb096b316","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version/activate","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version","activate"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8482b568-da66-42bf-8bdd-d8726cda458d","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version/activate","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version","activate"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2d6ae1b4-769a-449d-8527-5de9f19bd133","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version/activate","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version","activate"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6d7799cd-333e-49b7-b150-fecc16437508","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/blueprints/:blueprint/versions/:version/activate","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","blueprints",":blueprint","versions",":version","activate"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"6a31f3a3-65ff-46ae-8e32-343bbfe6d33b"},{"name":"Get Blueprint Draft","id":"633cf3a5-4ab6-47ac-9bd8-a32821f768ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","description":"<p>Retrieves the draft manifest for a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","draft"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"da82f17b-9338-44be-9f01-64c13e001d5f","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"ee2262ed-93c7-40c4-b987-cff40d88e157","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"3843329e-1644-4adf-a31b-9bfcc7b072a9","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6ef84e0f-2b35-4158-bd08-e13e10cc34b3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"633cf3a5-4ab6-47ac-9bd8-a32821f768ed"},{"name":"Create Blueprint Draft","id":"4c24eee6-8cfc-42f7-880e-7c79dbcc123c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","description":"<p>Creates a new draft manifest for a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","draft"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"917d83c2-0c9c-49d6-b6d1-f7fe6835594f","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"f4436f7d-7b4c-4ddf-b435-6854f9d64b40","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"acb04dca-3113-4c57-a962-4c23e644b0c2","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fe9d30f6-1031-483a-807f-6422a3a82703","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e310c07a-1b4f-49f9-b947-0aa01f620d12","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"4c24eee6-8cfc-42f7-880e-7c79dbcc123c"},{"name":"Update Blueprint Draft","id":"1d06b1ea-9699-4189-9b3a-b50fe85ebe50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","description":"<p>Updates the draft manifest for a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","draft"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"731f9622-1e3d-48b3-ae94-b77c040a7144","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"21699c1d-8059-4f1a-ab9c-525f8229431f","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"2c032626-6c33-4e21-b4b4-2d0dcd9d6a0f","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"90de170b-adc1-4a2f-b147-b4ab5b16c096","name":"Unauthorized","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3fd6b5e4-d9e8-4f1d-8280-5b4463f44618","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"1d06b1ea-9699-4189-9b3a-b50fe85ebe50"},{"name":"Delete Blueprint Draft","id":"bdc4ed64-0ca5-4234-a318-a1ca017e633b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","description":"<p>Permanently deletes the draft manifest for a specific blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","draft"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d56270b0-5a03-4b9a-bef9-677708c63f15","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"1279bc94-3f23-4243-92c6-79c2f5ab8808","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"c9f7a04c-7792-4b53-812c-d7131da3afbe","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"702efc85-09d5-48e2-8a49-6e57f94b7af3","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bdc4ed64-0ca5-4234-a318-a1ca017e633b"},{"name":"Check Blueprint Draft","id":"876b5951-78ad-400f-b1ca-17a55bfe4548","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/check","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","draft","check"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d3dc8bc2-3bae-4972-a2e6-b218639166c0","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"a47b2d8f-f893-42e8-a955-964644b9813f","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/check","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","check"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"cb4815a4-6e77-46bb-a212-55f68aa59290","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/check","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","check"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"567e8668-fff8-44b6-88f5-1ef8556d640f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/check","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","check"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"876b5951-78ad-400f-b1ca-17a55bfe4548"},{"name":"Publish Blueprint Draft","id":"46236c9e-0647-42d5-a0ca-63a12c57e353","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/publish","description":"<p>Publishes the draft manifest for a specific blueprint, creating a new version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","draft","publish"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"cdd8caf4-797c-4ae5-b926-242875aa42f9","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"9039bdac-45db-4c3d-ba82-b16c25996350","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/publish","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","publish"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"675a6950-90a6-4aec-bb06-097e53924799","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/publish","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","publish"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ebbd6243-e60d-4467-bab5-f05bc868a78c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/publish","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","publish"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"dc757699-3207-4a75-a9b8-97f3177c5799","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/publish","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","publish"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"46236c9e-0647-42d5-a0ca-63a12c57e353"},{"name":"Reset Blueprint Draft","id":"11a660d0-ec4b-4e17-9b42-a3cf4323faba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/reset","description":"<p>Resets the draft manifest for a specific blueprint to match the current active version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","blueprints",":blueprint","draft","reset"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"085e6f1d-3ecf-480a-bdb9-31d75bbefb47","description":{"content":"<p>The blueprint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"blueprint"}]}},"response":[{"id":"0dce07cd-426d-44a8-98e0-9fb454cbb886","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/reset","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","reset"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"7a927653-a7e7-494c-a0b8-7bd7a309e964","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/reset","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","reset"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8d2cc241-9078-4b21-88c1-e2eb96428acc","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/reset","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","reset"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"534281c1-fb87-48b4-8c18-666802ed5230","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/blueprints/:blueprint/draft/reset","host":["https://core.wearepatchworks.com"],"path":["api","v1","blueprints",":blueprint","draft","reset"],"variable":[{"key":"blueprint","value":"string","description":"The blueprint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"11a660d0-ec4b-4e17-9b42-a3cf4323faba"}],"id":"032a7c16-cf10-4de8-8ff6-e7508f94248f","_postman_id":"032a7c16-cf10-4de8-8ff6-e7508f94248f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Cache Step","item":[{"name":"List Cache Step","id":"e708cbf9-89c3-49ea-81ee-f3724c043b40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cache-step","description":"<p>Retrieves a paginated list of <code>Add to Cache</code> steps associated with <code>company</code> caches, across all process flows. Specify a <code>flow_id</code> query parameter for a list of <code>Add to Cache</code> steps associated with any cache type, for the given flow.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cache-step"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"d2565540-c39b-48e6-bf48-3d3dbd671a23","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/cache-step"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"scope\": \"string\",\n      \"ttl\": 0,\n      \"flow_id\": 0,\n      \"flow\": {\n        \"id\": 0,\n        \"name\": \"string\"\n      },\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/cache-step\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/cache-step?page=1\",\n    \"last\": \"https://api.example.com/api/v1/cache-step?page=1\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"max_ttl\": 0\n}"},{"id":"649bf181-2cf2-48ab-ba42-8776d719bcdf","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/cache-step"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a0e07f58-48cb-4dda-ba10-13b7d1c3fb9a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/cache-step"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e708cbf9-89c3-49ea-81ee-f3724c043b40"},{"name":"Create Cache Step","id":"bb8a3305-ba90-4825-adc7-97f69e9e7f83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"scope\": \"string\",\n  \"flow_id\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cache-step","description":"<p>Creates a new cache step.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cache-step"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"93bb3986-cad3-4c8e-b9ce-f68098235d63","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"scope\": \"string\",\n  \"flow_id\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cache-step"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"scope\": \"example_scope\",\n    \"flow_id\": 1,\n    \"ttl_unit\": \"example_ttl_unit\",\n    \"ttl_number\": \"example_ttl_number\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"66adf9fc-cf3e-4184-83d1-b7a39aab10f6","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"scope\": \"string\",\n  \"flow_id\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cache-step"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b30b32a1-5579-4277-a9c8-1c366e25189d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"scope\": \"string\",\n  \"flow_id\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cache-step"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a117bcf1-3e53-4b50-aa36-be62416fd2a0","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"scope\": \"string\",\n  \"flow_id\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cache-step"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"bb8a3305-ba90-4825-adc7-97f69e9e7f83"},{"name":"Get Cache Step","id":"f7212c43-5e28-4a61-ae32-c5bbdd8701cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cache-step/:cache_step","description":"<p>Retrieves the details of a specific cache step.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cache-step",":cache_step"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"5ebfa13f-5413-4e8c-911a-ffa4b2b6ec83","description":{"content":"<p>The cache step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cache_step"}]}},"response":[{"id":"46f5a1c2-838e-4a0c-baad-f3ae1481205f","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cache-step/:cache_step","host":["https://core.wearepatchworks.com"],"path":["api","v1","cache-step",":cache_step"],"variable":[{"key":"cache_step","value":"string","description":"The cache step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"scope\": \"string\",\n      \"ttl\": 0,\n      \"flow_id\": 0,\n      \"flow\": {\n        \"id\": 0,\n        \"name\": \"string\"\n      },\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/cache-step\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/cache-step?page=1\",\n    \"last\": \"https://api.example.com/api/v1/cache-step?page=1\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"max_ttl\": 0\n}"},{"id":"a99d3f12-9163-4056-8506-03436204bf6a","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cache-step/:cache_step","host":["https://core.wearepatchworks.com"],"path":["api","v1","cache-step",":cache_step"],"variable":[{"key":"cache_step","value":"string","description":"The cache step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6b44144a-cabc-43ce-92fe-078c4da2efb3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cache-step/:cache_step","host":["https://core.wearepatchworks.com"],"path":["api","v1","cache-step",":cache_step"],"variable":[{"key":"cache_step","value":"string","description":"The cache step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f7212c43-5e28-4a61-ae32-c5bbdd8701cb"}],"id":"82254c30-6fdc-4a37-914b-45c0d6512917","_postman_id":"82254c30-6fdc-4a37-914b-45c0d6512917","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Caches","item":[{"name":"List Caches","id":"c1483307-ac70-47c2-b1f0-044d10c80c87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/caches","description":"<p>Retrieves a paginated list of caches. Can be filtered by <code>flow_id</code>, <code>for_flow</code>, <code>scope</code>, and <code>name</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by flow_id.</p>\n","type":"text/plain"},"key":"filter[flow_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by for_flow.</p>\n","type":"text/plain"},"key":"filter[for_flow]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by scope.</p>\n","type":"text/plain"},"key":"filter[scope]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by LIKE.</p>\n","type":"text/plain"},"key":"filter[LIKE]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow.</p>\n","type":"text/plain"},"key":"filter[flow]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flow</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"d0d73f95-17e8-48ad-98d9-99ea0efa7887","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by for_flow.","key":"filter[for_flow]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Filter results by flow.","key":"filter[flow]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"scope\": \"string\",\n      \"ttl\": 0,\n      \"flow_id\": 0,\n      \"flow\": {\n        \"id\": 0,\n        \"name\": \"string\"\n      },\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/caches\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/caches?page=1\",\n    \"last\": \"https://api.example.com/api/v1/caches?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"32c8c60f-5bb9-422a-92e7-1f216a270305","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by for_flow.","key":"filter[for_flow]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Filter results by flow.","key":"filter[flow]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"17964dfe-7c2d-47de-afc7-c9e83ad57e76","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by for_flow.","key":"filter[for_flow]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Filter results by flow.","key":"filter[flow]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c1483307-ac70-47c2-b1f0-044d10c80c87"},{"name":"Get Metadata","id":"2c3a5613-bdfc-4b8c-8819-dbb2843e037c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/caches/metadata","description":"<p>Retrieves information about caches used in flows.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches","metadata"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"f19393e0-8bbd-401f-a122-cecb1d1d626d","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/caches/metadata"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"key_count\": 0,\n      \"memory_usage\": 0\n    }\n  ],\n  \"pagination\": {\n    \"current_page\": 1,\n    \"last_page\": 1,\n    \"per_page\": 15,\n    \"total\": 0\n  }\n}"},{"id":"e9b51708-19d4-4a83-908b-70b34bab4f05","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/caches/metadata"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1cd1e9ff-a421-4c4b-bcd2-e210018e8414","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/caches/metadata"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2c3a5613-bdfc-4b8c-8819-dbb2843e037c"},{"name":"Get Cache","id":"078b4a31-a9d9-4699-81a5-a43edd9b7eba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/caches/:cache","description":"<p>Retrieves the details of a specific cache.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches",":cache"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by flow_id.</p>\n","type":"text/plain"},"key":"filter[flow_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by for_flow.</p>\n","type":"text/plain"},"key":"filter[for_flow]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by scope.</p>\n","type":"text/plain"},"key":"filter[scope]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by LIKE.</p>\n","type":"text/plain"},"key":"filter[LIKE]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow.</p>\n","type":"text/plain"},"key":"filter[flow]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flow</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"7f3309a3-5161-4630-8cb2-1b2096bad011","description":{"content":"<p>The cache identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cache"}]}},"response":[{"id":"dafbcae4-83a2-4fa5-9818-6f2884ff8b16","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by for_flow.","key":"filter[for_flow]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Filter results by flow.","key":"filter[flow]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"scope\": \"string\",\n    \"ttl\": 0,\n    \"flow_id\": 0,\n    \"flow\": {\n      \"id\": 0,\n      \"name\": \"string\"\n    },\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"e4ede0f7-75a7-465e-bcd0-40e976389522","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by for_flow.","key":"filter[for_flow]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Filter results by flow.","key":"filter[flow]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5201e687-cefb-48cb-b304-f4b3f40cdd48","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by for_flow.","key":"filter[for_flow]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Filter results by flow.","key":"filter[flow]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"078b4a31-a9d9-4699-81a5-a43edd9b7eba"},{"name":"Update Cache","id":"b167ace7-f881-4362-8c04-e270c6d5a931","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/caches/:cache","description":"<p>Updates an existing cache.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches",":cache"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f3e88d56-927c-48c1-8c59-026636c49931","description":{"content":"<p>The cache identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cache"}]}},"response":[{"id":"f2b1a2f2-a64b-449d-bf1a-cc91aa83b002","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"scope\": \"example_scope\",\n    \"ttl\": \"example_ttl\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"flow_id\": 1,\n    \"cache_template_id\": 1,\n    \"content\": \"example_content\",\n    \"ttl_unit\": \"example_ttl_unit\",\n    \"ttl_number\": \"example_ttl_number\",\n    \"flow\": \"example_flow\"\n  }\n}"},{"id":"5077f4a9-9216-47ed-a0e5-492937295032","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"795582c4-4700-47c7-811e-2085f6afbd10","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"299c4441-7a53-45a0-a32d-9e132dd029c0","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"ttl_unit\": \"string\",\n  \"ttl_number\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ]\n  }\n}"}],"_postman_id":"b167ace7-f881-4362-8c04-e270c6d5a931"},{"name":"Delete Cache","id":"6bc82e30-a5d1-4541-9d1f-007b1b0e551c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/caches/:cache","description":"<p>Permanently deletes a specific cache.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches",":cache"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"37e5b58e-3629-40ea-b0a5-f56df1274cb1","description":{"content":"<p>The cache identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cache"}]}},"response":[{"id":"1f66347f-6b91-4478-ac94-7ed4b6e1afc0","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"b13dafb4-bb3a-458c-adb0-39e98a25fdba","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d6d42ec8-d8e0-4f39-ba02-3ec2e5ea9385","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6bc82e30-a5d1-4541-9d1f-007b1b0e551c"},{"name":"Get Content","id":"26995051-a9c6-439c-a382-d15931c7295f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","description":"<p>Retrieves data for a given cache key.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches",":cache","content",":key"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8100dc85-2660-4e60-b5af-a63dce381ea8","description":{"content":"<p>The cache identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cache"},{"id":"cd3738e8-46d4-4ffb-a3ca-20a98780f04d","description":{"content":"<p>The key identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"key"}]}},"response":[{"id":"76220ddc-0048-4932-84c7-f21953932808","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","content",":key"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"key","value":"string","description":"The key identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e81e830c-6893-4084-9e12-b3b84165b79e","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","content",":key"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"key","value":"string","description":"The key identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f4cb6cf7-c02d-42ce-9322-b549a4c27ee8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","content",":key"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"key","value":"string","description":"The key identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"26995051-a9c6-439c-a382-d15931c7295f"},{"name":"Update Cache Content","id":"2cb5aee7-1c21-4e22-b301-20101d58e663","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","description":"<p>Updates the content for a given cache key.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches",":cache","content",":key"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"00c8bc9b-8619-4fdb-a9c4-ef74478ac0c7","description":{"content":"<p>The cache identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cache"},{"id":"a38c0cae-40f3-4cd1-be6b-8f5193588d45","description":{"content":"<p>The key identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"key"}]}},"response":[{"id":"52011359-5d57-4aae-a25e-95c18d11e24f","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","content",":key"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"key","value":"string","description":"The key identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"scope\": \"example_scope\",\n    \"ttl\": \"example_ttl\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"flow_id\": 1,\n    \"cache_template_id\": 1,\n    \"content\": \"example_content\",\n    \"ttl_unit\": \"example_ttl_unit\",\n    \"ttl_number\": \"example_ttl_number\",\n    \"flow\": \"example_flow\"\n  }\n}"},{"id":"74d3c129-7b2d-4421-af93-8d501bf9f643","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","content",":key"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"key","value":"string","description":"The key identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"15a4eb59-5b8c-43e7-ac0d-2a4e12d275a0","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","content",":key"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"key","value":"string","description":"The key identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7e2b53ba-4859-4b45-a705-e7ac754df6e5","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/content/:key","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","content",":key"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"key","value":"string","description":"The key identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"content\": [\n      \"The content must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"2cb5aee7-1c21-4e22-b301-20101d58e663"},{"name":"Flush Cache","id":"194a6678-6f82-440e-a3a8-abeecc4fed95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/caches/:cache/flush","description":"<p>Flushes the contents of a specific cache.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches",":cache","flush"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"0cb5547f-dcad-409e-b0ad-56446e9041ae","description":{"content":"<p>The cache identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cache"}]}},"response":[{"id":"d48351e1-9a97-4624-9b50-b9d33b6f3b27","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/flush","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","flush"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"660df926-7823-445b-8120-1732a088e271","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/flush","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","flush"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1f5dfc9c-0875-4fd8-aa01-40f7019913d7","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/flush","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","flush"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"44c3dd03-dc48-499e-a9ec-b41bf5bb2dfa","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/flush","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","flush"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"194a6678-6f82-440e-a3a8-abeecc4fed95"},{"name":"Search Cache","id":"0b033544-f46f-4f80-94d4-0ce419a6f904","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/caches/:cache/search/:search","description":"<p>Searches key names, page numbers, and unique keys within a specific cache for a given term.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","caches",":cache","search",":search"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"25abb619-4502-425a-be01-e6c2f55fe0b7","description":{"content":"<p>The cache identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cache"},{"id":"a458c3e1-db6f-4c8e-9908-0d1d3d16ea96","description":{"content":"<p>The search identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"search"}]}},"response":[{"id":"4bbff50f-5899-4cce-804d-4f71355cb175","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/search/:search","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","search",":search"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"search","value":"string","description":"The search identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"9417ce48-79c7-4a2c-8410-d8712b91b092","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/search/:search","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","search",":search"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"search","value":"string","description":"The search identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"37f4ba82-df5d-47df-8db9-d3c7c8fbd368","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/caches/:cache/search/:search","host":["https://core.wearepatchworks.com"],"path":["api","v1","caches",":cache","search",":search"],"variable":[{"key":"cache","value":"string","description":"The cache identifier."},{"key":"search","value":"string","description":"The search identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0b033544-f46f-4f80-94d4-0ce419a6f904"}],"id":"cbf73df8-1015-4341-80de-dee9d61a82f3","_postman_id":"cbf73df8-1015-4341-80de-dee9d61a82f3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Certificates","item":[{"name":"Create Certificate","id":"92f7b628-312e-4c4a-89e3-cfc44c5083a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"certificate\": \"string\",\n  \"connector_id\": \"string\",\n  \"passphrase\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/certificates","description":"<p>Creates a new certificate for use with connector authentication.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","certificates"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"8851d917-25cf-4bf2-b047-b6855cc82f91","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"certificate\": \"string\",\n  \"connector_id\": \"string\",\n  \"passphrase\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/certificates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"connector_id\": 1,\n    \"certificate\": \"example_certificate\",\n    \"passphrase\": \"example_passphrase\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"user_id\": 1,\n    \"connector\": {},\n    \"user\": {}\n  }\n}"},{"id":"7288ee6f-3a7f-41d3-b8b2-73418dcdf393","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"certificate\": \"string\",\n  \"connector_id\": \"string\",\n  \"passphrase\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/certificates"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8a98bb6e-d652-4137-8ea1-7e30b38b3439","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"certificate\": \"string\",\n  \"connector_id\": \"string\",\n  \"passphrase\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/certificates"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"64bbc714-1149-4197-88a7-3af99a2e0044","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"certificate\": \"string\",\n  \"connector_id\": \"string\",\n  \"passphrase\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/certificates"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"certificate\": [\n      \"The certificate field is required.\"\n    ],\n    \"passphrase\": [\n      \"The passphrase must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"92f7b628-312e-4c4a-89e3-cfc44c5083a1"},{"name":"Delete Certificate","id":"837cbf30-6378-4e2a-a229-59ece26b14e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/certificates/:certificate","description":"<p>Permanently deletes a specific certificate.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","certificates",":certificate"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"e8ffed3c-6397-4c8f-802a-43a8362d6920","description":{"content":"<p>The certificate identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"certificate"}]}},"response":[{"id":"ed7ef999-1380-4294-a24c-f9d446da4b8c","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/certificates/:certificate","host":["https://core.wearepatchworks.com"],"path":["api","v1","certificates",":certificate"],"variable":[{"key":"certificate","value":"string","description":"The certificate identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"8e0adc57-e280-41b7-a174-6ddf255dfff4","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/certificates/:certificate","host":["https://core.wearepatchworks.com"],"path":["api","v1","certificates",":certificate"],"variable":[{"key":"certificate","value":"string","description":"The certificate identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"308f3d69-ca93-4927-b244-dac8878dfc18","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/certificates/:certificate","host":["https://core.wearepatchworks.com"],"path":["api","v1","certificates",":certificate"],"variable":[{"key":"certificate","value":"string","description":"The certificate identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"837cbf30-6378-4e2a-a229-59ece26b14e6"}],"id":"4267e792-b223-4e4e-9d0a-54245fb37508","_postman_id":"4267e792-b223-4e4e-9d0a-54245fb37508","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Connection Pools","item":[{"name":"List Connection Pools","id":"35228955-fba7-4729-91cb-471debed5519","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/connection-pools","description":"<p>Retrieves a paginated list of connection pools.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connection-pools"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: connectors.system</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, limit, created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"a6aaadb1-9db9-4bd1-8eff-391316f7d120","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connectors.system","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, limit, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"limit\": 1,\n      \"timeout\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"name\": \"My Example\",\n      \"connectors\": []\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/connection-pools\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/connection-pools?page=1\",\n    \"last\": \"https://api.example.com/api/v1/connection-pools?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"e9486b65-6cd0-4d00-b5b4-4b43442492cc","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connectors.system","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, limit, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4ded83b1-8a4e-4794-8b73-813a5e3148cd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connectors.system","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, limit, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"35228955-fba7-4729-91cb-471debed5519"},{"name":"Create Connection Pool","id":"b29b0658-dd57-43c9-80dc-8d8df989b0dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 3156,\n  \"name\": \"string\",\n  \"timeout\": 4532\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connection-pools","description":"<p>Creates a new connection pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connection-pools"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"1a53b0a3-750b-441d-b50e-f71ff17091b9","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 3156,\n  \"name\": \"string\",\n  \"timeout\": 4532\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connection-pools"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"limit\": 1,\n    \"timeout\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"connectors\": []\n  }\n}"},{"id":"c5c1a154-ed30-4b89-83ec-1c289b26d0a9","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 3156,\n  \"name\": \"string\",\n  \"timeout\": 4532\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connection-pools"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8821c530-661f-46cd-99e6-a330af1185b5","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 3156,\n  \"name\": \"string\",\n  \"timeout\": 4532\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connection-pools"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9f0f6b29-ee42-4e55-bd2e-3607cb9d2431","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 3156,\n  \"name\": \"string\",\n  \"timeout\": 4532\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connection-pools"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"limit\": [\n      \"The limit field is required.\"\n    ],\n    \"timeout\": [\n      \"The timeout must be an integer.\"\n    ]\n  }\n}"}],"_postman_id":"b29b0658-dd57-43c9-80dc-8d8df989b0dc"},{"name":"Get Connection Pool","id":"78e9c92b-fc2b-436c-b73d-ac93dc0b72bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","description":"<p>Retrieves the details of a specific connection pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connection-pools",":connection_pool"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: connectors.system</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, limit, created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"c5107913-9fe3-40c2-965b-3783557d2a4c","description":{"content":"<p>The connection pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connection_pool"}]}},"response":[{"id":"1ca6b5c9-26b8-41a8-9f54-8ff1882dc366","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connectors.system","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, limit, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"limit\": 1,\n    \"timeout\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"connectors\": []\n  }\n}"},{"id":"ea213bd7-7d03-47d6-a7d1-03be8cba60ed","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connectors.system","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, limit, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"223b2497-a306-4339-a71f-0ffaa94b123b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connectors.system","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, limit, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"78e9c92b-fc2b-436c-b73d-ac93dc0b72bd"},{"name":"Update Connection Pool","id":"6d33a2a8-c9f3-48d4-849d-a8cb164b6890","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 6940,\n  \"timeout\": 7150,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","description":"<p>Updates an existing connection pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connection-pools",":connection_pool"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"925b6565-7f1b-4c00-a18b-355f3d6418f5","description":{"content":"<p>The connection pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connection_pool"}]}},"response":[{"id":"1de3ee32-8ccc-450a-8cbf-d3622254e01c","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 6940,\n  \"timeout\": 7150,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"limit\": 1,\n    \"timeout\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"connectors\": []\n  }\n}"},{"id":"ef0238b2-f026-4924-83c4-6fa155c5bdae","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 6940,\n  \"timeout\": 7150,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ac53613a-fc06-482f-afd3-d2737dcbfd94","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 6940,\n  \"timeout\": 7150,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cb3efba0-94f4-4e20-8c84-cd5e3f0eb05e","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"limit\": 6940,\n  \"timeout\": 7150,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"limit\": [\n      \"The limit must be an integer.\"\n    ],\n    \"timeout\": [\n      \"The timeout must be an integer.\"\n    ]\n  }\n}"}],"_postman_id":"6d33a2a8-c9f3-48d4-849d-a8cb164b6890"},{"name":"Delete Connection Pool","id":"f4734a7d-328c-4c51-a7dd-63229362f3c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","description":"<p>Permanently deletes a specific connection pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connection-pools",":connection_pool"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"da676529-c07e-4e27-bdc8-60cf297f577b","description":{"content":"<p>The connection pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connection_pool"}]}},"response":[{"id":"f04dbcd6-a5b4-4bab-bcec-697adfc58b23","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"f1e074ec-3dab-4749-9698-2bbf30c17131","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4e79dab2-d452-4643-a200-5c62bb5decbd","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f4734a7d-328c-4c51-a7dd-63229362f3c9"},{"name":"Clear Connection Pool","id":"f288643e-40d9-4ba5-a2b5-6ba64f5a70b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool/clear","description":"<p>Removes all pending requests from a specific connection pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connection-pools",":connection_pool","clear"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"bd7df112-2ffc-4184-be3b-2b3185388718","description":{"content":"<p>The connection pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connection_pool"}]}},"response":[{"id":"cd90008a-f31f-4ade-a1fd-1443d8d2d638","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool/clear","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool","clear"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"e011f41a-250a-43ee-a742-d021f14c1805","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool/clear","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool","clear"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d77bedb4-13fd-4f17-adaa-b8348a60cd68","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool/clear","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool","clear"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f0457b41-6877-47ab-94b1-55a81356acc8","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connection-pools/:connection_pool/clear","host":["https://core.wearepatchworks.com"],"path":["api","v1","connection-pools",":connection_pool","clear"],"variable":[{"key":"connection_pool","value":"string","description":"The connection pool identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"f288643e-40d9-4ba5-a2b5-6ba64f5a70b7"}],"id":"1e4a041b-fb2e-4ea8-835c-65a6cce0946f","_postman_id":"1e4a041b-fb2e-4ea8-835c-65a6cce0946f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Connector Instances","item":[{"name":"Create Connector Instance","id":"2c91db05-1c07-43d9-b469-303d6082ccc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_template_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 9751,\n  \"rate_limit_unit\": \"minute\",\n  \"timezone\": \"string\",\n  \"variable_templates\": \"string\",\n  \"connection_pool_id\": 7750\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connector-instances","description":"<p>To be confirmed.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>authentication_implementation_template_id</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>date_format</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>rate_limit_unit</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>rate_limit_duration</td>\n<td>integer</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>connection_pool_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>variable_templates</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variable_templates.*.key</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>variable_templates.*.value</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>variable_templates.*.label</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>variable_templates.*.secret</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variable_templates.*.locked</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variable_templates.*.pivot.alias</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>variable_templates.*.pivot.configurable</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variable_templates.*.pivot.required</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variable_templates.*.pivot.advanced</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connector-instances"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"feddce88-de93-4431-a83c-0b07fc6ce3d2","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_template_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 9751,\n  \"rate_limit_unit\": \"minute\",\n  \"timezone\": \"string\",\n  \"variable_templates\": \"string\",\n  \"connection_pool_id\": 7750\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connector-instances"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"authentication_implementation_template_id\": 1,\n    \"timezone\": \"example_timezone\",\n    \"date_format\": \"example_date_format\",\n    \"rate_limit_unit\": \"second\",\n    \"rate_limit_duration\": 1,\n    \"connection_pool_id\": 1,\n    \"variable_templates\": \"example_variable_templates\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"6b5ec065-4539-4a82-be89-375eb8157784","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_template_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 9751,\n  \"rate_limit_unit\": \"minute\",\n  \"timezone\": \"string\",\n  \"variable_templates\": \"string\",\n  \"connection_pool_id\": 7750\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connector-instances"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8562e891-a976-4e34-b910-1e05b4594716","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_template_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 9751,\n  \"rate_limit_unit\": \"minute\",\n  \"timezone\": \"string\",\n  \"variable_templates\": \"string\",\n  \"connection_pool_id\": 7750\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connector-instances"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"84b3bff2-214f-497a-858a-350f6e52d8a5","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_template_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 9751,\n  \"rate_limit_unit\": \"minute\",\n  \"timezone\": \"string\",\n  \"variable_templates\": \"string\",\n  \"connection_pool_id\": 7750\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connector-instances"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"authentication_implementation_template_id\": [\n      \"The authentication implementation template id field is required.\"\n    ],\n    \"timezone\": [\n      \"The timezone field is required.\"\n    ]\n  }\n}"}],"_postman_id":"2c91db05-1c07-43d9-b469-303d6082ccc9"}],"id":"771427e1-a352-4620-a377-9ac78d8347d7","_postman_id":"771427e1-a352-4620-a377-9ac78d8347d7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Connectors","item":[{"name":"List Connectors","id":"41479c1d-8a05-417b-b5c5-525d3d8d4287","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/connectors","description":"<p>Retrieves a paginated list of connectors. Can be filtered by <code>canonical_key</code>, <code>system</code>, and other criteria. Note: In the Patchworks dashboard, a <code>connector</code> is known as an <code>instance</code>.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>authenticationImplementation</li>\n<li>authenticationImplementation_count</li>\n<li>authenticationImplementationExists</li>\n<li>authenticationImplementation.authenticationType</li>\n<li>authenticationImplementation.system</li>\n<li>authenticationImplementation.system.logo</li>\n<li>authenticationImplementation.endpoints</li>\n<li>authenticationImplementation.endpoints.filters</li>\n<li>authenticationImplementation.endpoints.endpointSchema</li>\n<li>authenticationImplementation.endpoints.system</li>\n<li>authenticationImplementation.endpoints.system.logo</li>\n<li>authenticationImplementation.endpoints.entityType</li>\n<li>authenticationImplementation.endpoints.fieldTags</li>\n<li>authenticationImplementation.system.systemType</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>authenticationImplementation.endpoints.variables</li>\n<li>certificate</li>\n<li>certificate_count</li>\n<li>certificateExists</li>\n<li>certificate.user</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>forSystemTemplate</li>\n<li>forSession</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connectors"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by canonical_key.</p>\n","type":"text/plain"},"key":"filter[canonical_key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by forSystemTemplate.</p>\n","type":"text/plain"},"key":"filter[forSystemTemplate]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system.</p>\n","type":"text/plain"},"key":"filter[system]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system_template_id.</p>\n","type":"text/plain"},"key":"filter[system_template_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by forSession.</p>\n","type":"text/plain"},"key":"filter[forSession]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by platformSession.</p>\n","type":"text/plain"},"key":"filter[platformSession]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: authenticationImplementation.authenticationType, authenticationImplementation.system, authenticationImplementation.system.logo, authenticationImplementation.endpoints, authenticationImplementation.endpoints.filters, authenticationImplementation.endpoints.endpointSchema, authenticationImplementation.endpoints.system, authenticationImplementation.endpoints.system.logo, authenticationImplementation.endpoints.entityType, authenticationImplementation.endpoints.fieldTags, authenticationImplementation.system.systemType, variables, authenticationImplementation.endpoints.variables, certificate.user</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"b96cf224-fbcd-4e49-bcea-c95ec202b169","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors"],"query":[{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by forSystemTemplate.","key":"filter[forSystemTemplate]","value":"string","disabled":true},{"description":"Filter results by system.","key":"filter[system]","value":"string","disabled":true},{"description":"Filter results by system_template_id.","key":"filter[system_template_id]","value":"string","disabled":true},{"description":"Filter results by forSession.","key":"filter[forSession]","value":"string","disabled":true},{"description":"Filter results by platformSession.","key":"filter[platformSession]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: authenticationImplementation.authenticationType, authenticationImplementation.system, authenticationImplementation.system.logo, authenticationImplementation.endpoints, authenticationImplementation.endpoints.filters, authenticationImplementation.endpoints.endpointSchema, authenticationImplementation.endpoints.system, authenticationImplementation.endpoints.system.logo, authenticationImplementation.endpoints.entityType, authenticationImplementation.endpoints.fieldTags, authenticationImplementation.system.systemType, variables, authenticationImplementation.endpoints.variables, certificate.user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"authentication_implementation_id\": 1,\n      \"timezone\": \"example_timezone\",\n      \"date_format\": \"example_date_format\",\n      \"rate_limit_unit\": \"second\",\n      \"rate_limit_duration\": 1,\n      \"connection_pool_id\": 1,\n      \"variables\": \"example_variables\",\n      \"session_id\": 1,\n      \"platform_app_key\": \"example_platform_app_key\",\n      \"certificate_id\": 1,\n      \"type\": \"example_type\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"name\": \"My Example\",\n      \"authentication_implementation\": [],\n      \"system\": \"example_system\",\n      \"certificate\": \"example_certificate\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/connectors\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/connectors?page=1\",\n    \"last\": \"https://api.example.com/api/v1/connectors?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"dcf7cff9-7a8f-4668-93bd-d6a63b3d79d0","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors"],"query":[{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by forSystemTemplate.","key":"filter[forSystemTemplate]","value":"string","disabled":true},{"description":"Filter results by system.","key":"filter[system]","value":"string","disabled":true},{"description":"Filter results by system_template_id.","key":"filter[system_template_id]","value":"string","disabled":true},{"description":"Filter results by forSession.","key":"filter[forSession]","value":"string","disabled":true},{"description":"Filter results by platformSession.","key":"filter[platformSession]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: authenticationImplementation.authenticationType, authenticationImplementation.system, authenticationImplementation.system.logo, authenticationImplementation.endpoints, authenticationImplementation.endpoints.filters, authenticationImplementation.endpoints.endpointSchema, authenticationImplementation.endpoints.system, authenticationImplementation.endpoints.system.logo, authenticationImplementation.endpoints.entityType, authenticationImplementation.endpoints.fieldTags, authenticationImplementation.system.systemType, variables, authenticationImplementation.endpoints.variables, certificate.user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"32c6da39-d6b7-47e5-93ef-b3e15085e3c3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors"],"query":[{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by forSystemTemplate.","key":"filter[forSystemTemplate]","value":"string","disabled":true},{"description":"Filter results by system.","key":"filter[system]","value":"string","disabled":true},{"description":"Filter results by system_template_id.","key":"filter[system_template_id]","value":"string","disabled":true},{"description":"Filter results by forSession.","key":"filter[forSession]","value":"string","disabled":true},{"description":"Filter results by platformSession.","key":"filter[platformSession]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: authenticationImplementation.authenticationType, authenticationImplementation.system, authenticationImplementation.system.logo, authenticationImplementation.endpoints, authenticationImplementation.endpoints.filters, authenticationImplementation.endpoints.endpointSchema, authenticationImplementation.endpoints.system, authenticationImplementation.endpoints.system.logo, authenticationImplementation.endpoints.entityType, authenticationImplementation.endpoints.fieldTags, authenticationImplementation.system.systemType, variables, authenticationImplementation.endpoints.variables, certificate.user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"41479c1d-8a05-417b-b5c5-525d3d8d4287"},{"name":"Create Connector","id":"dc9365b6-37d5-4260-9d94-dbeb0322436c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 7657,\n  \"rate_limit_unit\": \"day\",\n  \"timezone\": \"string\",\n  \"variables\": \"string\",\n  \"connection_pool_id\": 9852,\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connectors","description":"<p>Creates a new connector. Note: In the Patchworks dashboard, a <code>connector</code> is known as an <code>instance</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>authentication_implementation_id</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>date_format</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>rate_limit_unit</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>rate_limit_duration</td>\n<td>integer</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>connection_pool_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>variables</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.key</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>variables.*.value</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.label</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>variables.*.secret</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.locked</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.pivot.alias</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.pivot.configurable</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.pivot.required</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.pivot.advanced</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>session_id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>platform_app_key</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>certificate_id</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connectors"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"a9f49458-8717-4dc6-b396-ad6e42d0293d","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 7657,\n  \"rate_limit_unit\": \"day\",\n  \"timezone\": \"string\",\n  \"variables\": \"string\",\n  \"connection_pool_id\": 9852,\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connectors"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"authentication_implementation_id\": 1,\n    \"timezone\": \"example_timezone\",\n    \"date_format\": \"example_date_format\",\n    \"rate_limit_unit\": \"second\",\n    \"rate_limit_duration\": 1,\n    \"connection_pool_id\": 1,\n    \"variables\": \"example_variables\",\n    \"session_id\": 1,\n    \"platform_app_key\": \"example_platform_app_key\",\n    \"certificate_id\": 1,\n    \"type\": \"example_type\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"authentication_implementation\": [],\n    \"system\": \"example_system\",\n    \"certificate\": \"example_certificate\"\n  }\n}"},{"id":"2303e407-efc6-484a-993e-bec6a6ffd7c6","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 7657,\n  \"rate_limit_unit\": \"day\",\n  \"timezone\": \"string\",\n  \"variables\": \"string\",\n  \"connection_pool_id\": 9852,\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connectors"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"83e11fc4-900a-4d86-96e2-9cac0f03fa7d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 7657,\n  \"rate_limit_unit\": \"day\",\n  \"timezone\": \"string\",\n  \"variables\": \"string\",\n  \"connection_pool_id\": 9852,\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connectors"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"99df8279-f199-49c6-b6d3-a1c49aa8f281","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"date_format\": \"string\",\n  \"name\": \"string\",\n  \"rate_limit_duration\": 7657,\n  \"rate_limit_unit\": \"day\",\n  \"timezone\": \"string\",\n  \"variables\": \"string\",\n  \"connection_pool_id\": 9852,\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connectors"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"authentication_implementation_id\": [\n      \"The authentication implementation id field is required.\"\n    ],\n    \"timezone\": [\n      \"The timezone field is required.\"\n    ]\n  }\n}"}],"_postman_id":"dc9365b6-37d5-4260-9d94-dbeb0322436c"},{"name":"Get Connector","id":"7fcb6b06-d613-4950-8ebd-22b16b04b511","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/connectors/:connector","description":"<p>Retrieves details for a given connector. Note: In the Patchworks dashboard, a <code>connector</code> is known as an <code>instance</code>.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>authenticationImplementation</li>\n<li>authenticationImplementation_count</li>\n<li>authenticationImplementationExists</li>\n<li>authenticationImplementation.authenticationType</li>\n<li>authenticationImplementation.system</li>\n<li>authenticationImplementation.system.logo</li>\n<li>authenticationImplementation.endpoints</li>\n<li>authenticationImplementation.endpoints.filters</li>\n<li>authenticationImplementation.endpoints.endpointSchema</li>\n<li>authenticationImplementation.endpoints.system</li>\n<li>authenticationImplementation.endpoints.system.logo</li>\n<li>authenticationImplementation.endpoints.entityType</li>\n<li>authenticationImplementation.endpoints.fieldTags</li>\n<li>authenticationImplementation.system.systemType</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>authenticationImplementation.endpoints.variables</li>\n<li>certificate</li>\n<li>certificate_count</li>\n<li>certificateExists</li>\n<li>certificate.user</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>forSystemTemplate</li>\n<li>forSession</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connectors",":connector"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by canonical_key.</p>\n","type":"text/plain"},"key":"filter[canonical_key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by forSystemTemplate.</p>\n","type":"text/plain"},"key":"filter[forSystemTemplate]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system.</p>\n","type":"text/plain"},"key":"filter[system]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system_template_id.</p>\n","type":"text/plain"},"key":"filter[system_template_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by forSession.</p>\n","type":"text/plain"},"key":"filter[forSession]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by platformSession.</p>\n","type":"text/plain"},"key":"filter[platformSession]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: authenticationImplementation.authenticationType, authenticationImplementation.system, authenticationImplementation.system.logo, authenticationImplementation.endpoints, authenticationImplementation.endpoints.filters, authenticationImplementation.endpoints.endpointSchema, authenticationImplementation.endpoints.system, authenticationImplementation.endpoints.system.logo, authenticationImplementation.endpoints.entityType, authenticationImplementation.endpoints.fieldTags, authenticationImplementation.system.systemType, variables, authenticationImplementation.endpoints.variables, certificate.user</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"8f457bbf-727c-4d4d-aae8-d9f838ce1cbe","description":{"content":"<p>The connector identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connector"}]}},"response":[{"id":"016849ad-9b64-4035-8a14-f80e29c7f069","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"query":[{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by forSystemTemplate.","key":"filter[forSystemTemplate]","value":"string","disabled":true},{"description":"Filter results by system.","key":"filter[system]","value":"string","disabled":true},{"description":"Filter results by system_template_id.","key":"filter[system_template_id]","value":"string","disabled":true},{"description":"Filter results by forSession.","key":"filter[forSession]","value":"string","disabled":true},{"description":"Filter results by platformSession.","key":"filter[platformSession]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: authenticationImplementation.authenticationType, authenticationImplementation.system, authenticationImplementation.system.logo, authenticationImplementation.endpoints, authenticationImplementation.endpoints.filters, authenticationImplementation.endpoints.endpointSchema, authenticationImplementation.endpoints.system, authenticationImplementation.endpoints.system.logo, authenticationImplementation.endpoints.entityType, authenticationImplementation.endpoints.fieldTags, authenticationImplementation.system.systemType, variables, authenticationImplementation.endpoints.variables, certificate.user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"authentication_implementation_id\": 1,\n    \"timezone\": \"example_timezone\",\n    \"date_format\": \"example_date_format\",\n    \"rate_limit_unit\": \"second\",\n    \"rate_limit_duration\": 1,\n    \"connection_pool_id\": 1,\n    \"variables\": \"example_variables\",\n    \"session_id\": 1,\n    \"platform_app_key\": \"example_platform_app_key\",\n    \"certificate_id\": 1,\n    \"type\": \"example_type\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"authentication_implementation\": [],\n    \"system\": \"example_system\",\n    \"certificate\": \"example_certificate\"\n  }\n}"},{"id":"795874b0-a403-47c3-8a6d-cf33c5ff5739","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"query":[{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by forSystemTemplate.","key":"filter[forSystemTemplate]","value":"string","disabled":true},{"description":"Filter results by system.","key":"filter[system]","value":"string","disabled":true},{"description":"Filter results by system_template_id.","key":"filter[system_template_id]","value":"string","disabled":true},{"description":"Filter results by forSession.","key":"filter[forSession]","value":"string","disabled":true},{"description":"Filter results by platformSession.","key":"filter[platformSession]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: authenticationImplementation.authenticationType, authenticationImplementation.system, authenticationImplementation.system.logo, authenticationImplementation.endpoints, authenticationImplementation.endpoints.filters, authenticationImplementation.endpoints.endpointSchema, authenticationImplementation.endpoints.system, authenticationImplementation.endpoints.system.logo, authenticationImplementation.endpoints.entityType, authenticationImplementation.endpoints.fieldTags, authenticationImplementation.system.systemType, variables, authenticationImplementation.endpoints.variables, certificate.user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9eedaaf2-ce75-40a8-810f-f3602f34ee37","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"query":[{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by forSystemTemplate.","key":"filter[forSystemTemplate]","value":"string","disabled":true},{"description":"Filter results by system.","key":"filter[system]","value":"string","disabled":true},{"description":"Filter results by system_template_id.","key":"filter[system_template_id]","value":"string","disabled":true},{"description":"Filter results by forSession.","key":"filter[forSession]","value":"string","disabled":true},{"description":"Filter results by platformSession.","key":"filter[platformSession]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: authenticationImplementation.authenticationType, authenticationImplementation.system, authenticationImplementation.system.logo, authenticationImplementation.endpoints, authenticationImplementation.endpoints.filters, authenticationImplementation.endpoints.endpointSchema, authenticationImplementation.endpoints.system, authenticationImplementation.endpoints.system.logo, authenticationImplementation.endpoints.entityType, authenticationImplementation.endpoints.fieldTags, authenticationImplementation.system.systemType, variables, authenticationImplementation.endpoints.variables, certificate.user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7fcb6b06-d613-4950-8ebd-22b16b04b511"},{"name":"Update Connector","id":"02c6bf23-5a53-4a37-936e-69014b297285","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 7533,\n  \"connection_pool_id\": 9139,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/connectors/:connector","description":"<p>Update an existing connector. Note: In the Patchworks dashboard, a <code>connector</code> is known as an <code>instance</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>authentication_implementation_id</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>timezone</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>date_format</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>rate_limit_unit</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>rate_limit_duration</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>connection_pool_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>variables</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.id</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>variables.*.key</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.value</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.label</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.secret</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.locked</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.pivot.alias</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.pivot.configurable</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.pivot.required</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>variables.*.pivot.advanced</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connectors",":connector"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"087c4648-1a46-491b-ab14-2408b2923a62","description":{"content":"<p>The connector identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connector"}]}},"response":[{"id":"a86cd07e-b056-494d-84d8-dd32bf17df35","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 7533,\n  \"connection_pool_id\": 9139,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"authentication_implementation_id\": 1,\n    \"timezone\": \"example_timezone\",\n    \"date_format\": \"example_date_format\",\n    \"rate_limit_unit\": \"second\",\n    \"rate_limit_duration\": 1,\n    \"connection_pool_id\": 1,\n    \"variables\": \"example_variables\",\n    \"session_id\": 1,\n    \"platform_app_key\": \"example_platform_app_key\",\n    \"certificate_id\": 1,\n    \"type\": \"example_type\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"authentication_implementation\": [],\n    \"system\": \"example_system\",\n    \"certificate\": \"example_certificate\"\n  }\n}"},{"id":"c632cb46-2601-4961-9c1f-beb11ef8a299","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 7533,\n  \"connection_pool_id\": 9139,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8ef1da0f-886a-49af-8bbd-c131e122db41","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 7533,\n  \"connection_pool_id\": 9139,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a8ab7fb4-86ec-437d-bc33-6635479467c9","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 7533,\n  \"connection_pool_id\": 9139,\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"type\": [\n      \"The type must be a string.\"\n    ],\n    \"timezone\": [\n      \"The timezone must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"02c6bf23-5a53-4a37-936e-69014b297285"},{"name":"Delete Connector","id":"003f121a-6a0c-4d44-8e84-610214cf1738","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/connectors/:connector","description":"<p>Delete an existing connector. Note: In the Patchworks dashboard, a <code>connector</code> is known as an <code>instance</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connectors",":connector"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a978ff04-c4b1-47f5-9d90-edc073580bbf","description":{"content":"<p>The connector identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connector"}]}},"response":[{"id":"352bb627-affc-4d19-9a79-80a2ae676077","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"9d4f4526-3e66-45de-a3de-7b8516802a84","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b057ade1-1939-480a-ba2b-19fd5bb3f6d9","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"003f121a-6a0c-4d44-8e84-610214cf1738"},{"name":"Test Connector","id":"1ebbaf82-1755-4bac-ba1b-a7f1682f5b60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/connectors/:connector/test","description":"<p>Test the connection to ensure authentication credentials are valid . Note: In the Patchworks dashboard, a <code>connector</code> is known as an <code>instance</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","connectors",":connector","test"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"01e0048e-deef-4c85-8b52-86f7de649361","description":{"content":"<p>The connector identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connector"}]}},"response":[{"id":"5097f672-fbe6-4593-b94f-f1398870eee0","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector/test","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector","test"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bb4c686c-3d84-4958-9466-2e7d5e93d35f","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector/test","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector","test"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"887155dd-c4c0-41a3-a696-1416a2be06f6","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector/test","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector","test"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a78dfcf6-5a9e-459f-b163-8ae56119bc3c","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/connectors/:connector/test","host":["https://core.wearepatchworks.com"],"path":["api","v1","connectors",":connector","test"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"1ebbaf82-1755-4bac-ba1b-a7f1682f5b60"}],"id":"1726ab6b-0cb0-40cf-8bb3-d5c14b03a9f4","_postman_id":"1726ab6b-0cb0-40cf-8bb3-d5c14b03a9f4","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Cross Reference Lookups","item":[{"name":"List Cross Reference Lookups","id":"8ad1c004-6e60-4c8c-9a86-9efcc4ac7e9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups","description":"<p>Retrieves a paginated list of cross reference lookups. Can be filtered by <code>name</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: crossReferenceLookupValues</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"e10a95cb-04e5-43e9-802f-54ffd09dbbac","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"cross_reference_lookup_template_id\": 1,\n      \"name\": \"My Example\",\n      \"description\": \"A description of the resource\",\n      \"default_value\": \"example_default_value\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"deleted_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"left_value\": \"example_left_value\",\n      \"right_value\": \"example_right_value\",\n      \"cross_reference_lookup_values\": []\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/cross-reference-lookups\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/cross-reference-lookups?page=1\",\n    \"last\": \"https://api.example.com/api/v1/cross-reference-lookups?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"7530c784-bf9b-4f6c-bfe9-7743a0317748","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4cec6b4f-c587-4de5-bf68-97674a1b11be","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8ad1c004-6e60-4c8c-9a86-9efcc4ac7e9e"},{"name":"Create Cross Reference Lookup","id":"985af16d-df91-4e67-8324-cb8f4509fc21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\",\n  \"default_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups","description":"<p>Creates a new cross reference lookup.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"a0868d6a-2d1f-4aea-8f42-3a10c2f28d4f","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\",\n  \"default_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"cross_reference_lookup_template_id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"default_value\": \"example_default_value\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deleted_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"left_value\": \"example_left_value\",\n    \"right_value\": \"example_right_value\",\n    \"cross_reference_lookup_values\": []\n  }\n}"},{"id":"795425af-7dbc-4bfa-a2b3-7f224a1da95d","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\",\n  \"default_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a6fc151e-e9aa-4924-b0ae-c1b89c4b3e54","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\",\n  \"default_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0d729eaf-186f-4df3-8ed3-d3a86c6739d1","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\",\n  \"default_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"description\": [\n      \"The description field is required.\"\n    ]\n  }\n}"}],"_postman_id":"985af16d-df91-4e67-8324-cb8f4509fc21"},{"name":"Install Cross Reference Lookup","id":"d62f9216-75a6-490a-8a21-e25e8c08aa39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookupTemplate/install","description":"<p>Installs a standard cross reference lookup from a template, such as ISO currency code or country code conversions.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":crossReferenceLookupTemplate","install"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"02a8a89b-78c3-49d1-924e-a5d0f069cb40","description":{"content":"<p>The crossReferenceLookupTemplate identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"crossReferenceLookupTemplate"}]}},"response":[{"id":"ca495d9c-461d-44e0-85a6-82148e1c6c83","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookupTemplate/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":crossReferenceLookupTemplate","install"],"variable":[{"key":"crossReferenceLookupTemplate","value":"string","description":"The crossReferenceLookupTemplate identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"50635d83-eca9-4ba8-b09a-490c2501c403","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookupTemplate/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":crossReferenceLookupTemplate","install"],"variable":[{"key":"crossReferenceLookupTemplate","value":"string","description":"The crossReferenceLookupTemplate identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fb8d513b-606a-4981-99cc-f3c6942e8034","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookupTemplate/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":crossReferenceLookupTemplate","install"],"variable":[{"key":"crossReferenceLookupTemplate","value":"string","description":"The crossReferenceLookupTemplate identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ae5ce9d6-1330-4655-b463-0377afe22f34","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookupTemplate/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":crossReferenceLookupTemplate","install"],"variable":[{"key":"crossReferenceLookupTemplate","value":"string","description":"The crossReferenceLookupTemplate identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"d62f9216-75a6-490a-8a21-e25e8c08aa39"},{"name":"Upload Cross Reference Lookup","id":"4929361d-da3c-4825-9469-80b8cc4c1781","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookup/upload","description":"<p>Uploads a given cross reference lookup to your <code>private</code> marketplace.</p>\n<p>This operation requires <code>administrator</code> permissions. If you are authorising requests with an API key, this request won't work (company-level API keys are associated with manager-level permissions). If you are an <code>administrator</code>, you can use OAuth 2 credentials to complete this operation. For more information please see our <a href=\"https://doc.wearepatchworks.com/product-documentation/api-reference/getting-started/authentication#oauth-2-client-credentials\">Authentication</a> section.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":crossReferenceLookup","upload"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"7a24764d-9da5-43fc-a1c6-5061572a3a4f","description":{"content":"<p>The crossReferenceLookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"crossReferenceLookup"}]}},"response":[{"id":"e3da4aae-a31a-4bc4-83b5-721e8cde3710","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookup/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":crossReferenceLookup","upload"],"variable":[{"key":"crossReferenceLookup","value":"string","description":"The crossReferenceLookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"4cc4b38a-37f5-4f53-9aeb-5a16c210af11","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookup/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":crossReferenceLookup","upload"],"variable":[{"key":"crossReferenceLookup","value":"string","description":"The crossReferenceLookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0991f8e7-b886-4bab-8ee8-adad88090a9a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookup/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":crossReferenceLookup","upload"],"variable":[{"key":"crossReferenceLookup","value":"string","description":"The crossReferenceLookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c3902520-af7c-4950-974c-841c28df290e","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:crossReferenceLookup/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":crossReferenceLookup","upload"],"variable":[{"key":"crossReferenceLookup","value":"string","description":"The crossReferenceLookup identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"4929361d-da3c-4825-9469-80b8cc4c1781"},{"name":"Get Cross Reference Lookup","id":"f5f03c08-6fc4-446c-9d5f-97256bd1aa39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","description":"<p>Retrieves the details of a specific cross reference lookup.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: crossReferenceLookupValues</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"8a67a0b1-320b-4f79-8d89-3606670cff3f","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"}]}},"response":[{"id":"144e5d14-cb8b-4aaf-a05e-ca4802b7eb44","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"cross_reference_lookup_template_id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"default_value\": \"example_default_value\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deleted_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"left_value\": \"example_left_value\",\n    \"right_value\": \"example_right_value\",\n    \"cross_reference_lookup_values\": []\n  }\n}"},{"id":"0a928c57-68dd-4d5e-af16-19aa622f5d23","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d455653d-7eac-4cff-b8e9-332e5d46cc7d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f5f03c08-6fc4-446c-9d5f-97256bd1aa39"},{"name":"Update Cross Reference Lookup","id":"bb4b85fd-3878-4471-98d2-7e39d3cf986f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"default_value\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","description":"<p>Updates an existing cross reference lookup.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"99156e28-365c-460e-896b-ff5f02b95b7d","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"}]}},"response":[{"id":"e4c00991-1337-4a20-876b-0da333f03246","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"default_value\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"cross_reference_lookup_template_id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"default_value\": \"example_default_value\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deleted_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"left_value\": \"example_left_value\",\n    \"right_value\": \"example_right_value\",\n    \"cross_reference_lookup_values\": []\n  }\n}"},{"id":"47113eea-3eaf-4ae7-989c-4e111edd9997","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"default_value\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6f902e5b-4117-4b96-9f63-03a4761eaa8a","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"default_value\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f8fb63e4-bb0c-4076-8af1-690239567401","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"default_value\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"description\": [\n      \"The description must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"bb4b85fd-3878-4471-98d2-7e39d3cf986f"},{"name":"Delete Cross Reference Lookup","id":"92c2a4b7-36ac-4b39-8203-9c8a2cc741e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","description":"<p>Permanently deletes a specific cross reference lookup.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"4e79debe-1027-4e71-b160-6978e905cc23","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"}]}},"response":[{"id":"b06844c9-08a8-4b3c-99e0-ff8c60cf9b34","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"8a1e5bb7-d882-4038-9af8-0ca3bc15e097","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3049c4e4-1eee-4fc7-8307-676a3b649ce7","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"92c2a4b7-36ac-4b39-8203-9c8a2cc741e8"},{"name":"Clear Cross Reference Lookup","id":"c4026059-0f88-479f-b200-36948b7dcc4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/clear","description":"<p>Removes all values from a specific cross reference lookup.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","clear"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"4510c4c6-9c63-4e4b-a4fa-0fb42b8a4c0c","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"}]}},"response":[{"id":"d5b5b795-7d80-4ad3-8786-f8ab339b3343","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/clear","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","clear"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"745cb589-efe6-4a3b-8535-104477eaf05d","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/clear","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","clear"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4ab16b6a-4dd6-4f8f-9024-d0692940de8c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/clear","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","clear"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3b841250-77ec-4f73-82b6-634b3d7b9017","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/clear","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","clear"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"c4026059-0f88-479f-b200-36948b7dcc4c"},{"name":"List Cross Reference Lookup Values","id":"2791a935-ce79-426a-a39f-3832d24588e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","description":"<p>Retrieves a paginated list of values for a specific cross reference lookup. Can be filtered by <code>left_value</code> and <code>right_value</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by cross_reference_lookup_id.</p>\n","type":"text/plain"},"key":"filter[cross_reference_lookup_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by left_value.</p>\n","type":"text/plain"},"key":"filter[left_value]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by right_value.</p>\n","type":"text/plain"},"key":"filter[right_value]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: cross_reference_lookup_id, left_value, right_value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"5f04be28-65cb-4222-970e-f6467a34e45d","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"}]}},"response":[{"id":"bffe36c0-ddbc-4c22-b825-34fbbfef0c97","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"query":[{"description":"Filter results by cross_reference_lookup_id.","key":"filter[cross_reference_lookup_id]","value":"string","disabled":true},{"description":"Filter results by left_value.","key":"filter[left_value]","value":"string","disabled":true},{"description":"Filter results by right_value.","key":"filter[right_value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: cross_reference_lookup_id, left_value, right_value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"cross_reference_lookup_template_id\": 1,\n      \"name\": \"My Example\",\n      \"description\": \"A description of the resource\",\n      \"default_value\": \"example_default_value\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"deleted_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"left_value\": \"example_left_value\",\n      \"right_value\": \"example_right_value\",\n      \"cross_reference_lookup_values\": []\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/cross-reference-lookups/{cross_reference_lookup}/cross-reference-lookup-values\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/cross-reference-lookups/{cross_reference_lookup}/cross-reference-lookup-values?page=1\",\n    \"last\": \"https://api.example.com/api/v1/cross-reference-lookups/{cross_reference_lookup}/cross-reference-lookup-values?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"81ed229f-6b06-4d7b-8ac3-aab1b6bab41d","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"query":[{"description":"Filter results by cross_reference_lookup_id.","key":"filter[cross_reference_lookup_id]","value":"string","disabled":true},{"description":"Filter results by left_value.","key":"filter[left_value]","value":"string","disabled":true},{"description":"Filter results by right_value.","key":"filter[right_value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: cross_reference_lookup_id, left_value, right_value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3bfdd7fc-3258-4d81-9aa8-5de40e6e9f8c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"query":[{"description":"Filter results by cross_reference_lookup_id.","key":"filter[cross_reference_lookup_id]","value":"string","disabled":true},{"description":"Filter results by left_value.","key":"filter[left_value]","value":"string","disabled":true},{"description":"Filter results by right_value.","key":"filter[right_value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: cross_reference_lookup_id, left_value, right_value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2791a935-ce79-426a-a39f-3832d24588e8"},{"name":"Create Cross Reference Lookup Value","id":"d4aa2be2-78b1-4dd0-908e-4537d12a5c16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","description":"<p>Creates a new value for a specific cross reference lookup.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d4dee7cb-f84b-4471-bec0-b6bdc1f8bbeb","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"}]}},"response":[{"id":"cf72d692-5ff9-430a-8431-3e060e2891a4","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"cross_reference_lookup_template_id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"default_value\": \"example_default_value\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deleted_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"left_value\": \"example_left_value\",\n    \"right_value\": \"example_right_value\",\n    \"cross_reference_lookup_values\": []\n  }\n}"},{"id":"7dce155f-3cfe-4d8d-b46b-8f3b4c5152e0","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f226fce1-3e25-451b-ae65-94d1a6b3ba5a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b84342fa-4f3b-4694-9683-8d16ac8567cc","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"d4aa2be2-78b1-4dd0-908e-4537d12a5c16"},{"name":"Import Cross Reference Lookup Value","id":"1530377b-c70e-4842-9cff-1211ce318a45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"values_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/import","description":"<p>Imports values into a specific cross reference lookup from a CSV file containing <code>left_value</code> and <code>right_value</code> columns.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values","import"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"16f9b55b-9fe1-40b0-b2e5-6e05c231616e","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"}]}},"response":[{"id":"f8bc5523-9009-4349-801a-7132f3754c25","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"values_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/import","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values","import"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"0dbc05d3-3e24-4b2f-8965-d516a821bb35","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"values_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/import","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values","import"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9842cb56-bf56-4a22-89ec-a94b6bf7b285","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"values_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/import","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values","import"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3ec596d1-ca3b-42e1-a69c-907fb4c3bc37","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"values_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/import","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values","import"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"1530377b-c70e-4842-9cff-1211ce318a45"},{"name":"Get Cross Reference Lookup Value","id":"553904b7-4e3f-4c09-95f2-943a8d04d765","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","description":"<p>Retrieves the details of a specific cross reference lookup value.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by cross_reference_lookup_id.</p>\n","type":"text/plain"},"key":"filter[cross_reference_lookup_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by left_value.</p>\n","type":"text/plain"},"key":"filter[left_value]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by right_value.</p>\n","type":"text/plain"},"key":"filter[right_value]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: cross_reference_lookup_id, left_value, right_value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"d7a3418b-19f4-412c-9a93-1a5435031d6a","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"},{"id":"efffec92-f9eb-4b8d-a2a4-574bf3f6a777","description":{"content":"<p>The cross reference lookup value identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup_value"}]}},"response":[{"id":"34a7ff79-71f3-46e2-8fcf-6063179b7a58","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"query":[{"description":"Filter results by cross_reference_lookup_id.","key":"filter[cross_reference_lookup_id]","value":"string","disabled":true},{"description":"Filter results by left_value.","key":"filter[left_value]","value":"string","disabled":true},{"description":"Filter results by right_value.","key":"filter[right_value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: cross_reference_lookup_id, left_value, right_value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"cross_reference_lookup_template_id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"default_value\": \"example_default_value\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deleted_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"left_value\": \"example_left_value\",\n    \"right_value\": \"example_right_value\",\n    \"cross_reference_lookup_values\": []\n  }\n}"},{"id":"8641c2fb-0a61-4659-9030-db570320899f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"query":[{"description":"Filter results by cross_reference_lookup_id.","key":"filter[cross_reference_lookup_id]","value":"string","disabled":true},{"description":"Filter results by left_value.","key":"filter[left_value]","value":"string","disabled":true},{"description":"Filter results by right_value.","key":"filter[right_value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: cross_reference_lookup_id, left_value, right_value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d4d34448-f798-42f2-8edc-29f50e3ca0e6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"query":[{"description":"Filter results by cross_reference_lookup_id.","key":"filter[cross_reference_lookup_id]","value":"string","disabled":true},{"description":"Filter results by left_value.","key":"filter[left_value]","value":"string","disabled":true},{"description":"Filter results by right_value.","key":"filter[right_value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: cross_reference_lookup_id, left_value, right_value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"553904b7-4e3f-4c09-95f2-943a8d04d765"},{"name":"Update Cross Reference Lookup Value","id":"58250a4e-41ea-435e-b4b4-229635414806","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","description":"<p>Updates an existing cross reference lookup value.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d9620e0e-ff86-4f71-b731-be3e6e372f22","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"},{"id":"27411e92-8597-4f7f-b78c-8c877bbd30af","description":{"content":"<p>The cross reference lookup value identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup_value"}]}},"response":[{"id":"cd2b4694-041a-40bd-9214-63b72e4634af","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"cross_reference_lookup_template_id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"default_value\": \"example_default_value\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deleted_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"left_value\": \"example_left_value\",\n    \"right_value\": \"example_right_value\",\n    \"cross_reference_lookup_values\": []\n  }\n}"},{"id":"879be686-8d35-4955-aebc-04e79eae8194","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f8c8000c-c643-4bdc-84ca-97fbaf20c667","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a2723cff-4261-4f64-a086-1d321a5c147e","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"left_value\": \"string\",\n  \"right_value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"58250a4e-41ea-435e-b4b4-229635414806"},{"name":"Delete Cross Reference Lookup Value","id":"53171edf-e28e-439f-9465-06e4b6c7c12a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","description":"<p>Permanently deletes a specific cross reference lookup value.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"35c163fb-6c11-4525-b610-fc24454322c6","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"},{"id":"81c6ee68-b178-4729-bc63-3eb1c2b3596b","description":{"content":"<p>The cross reference lookup value identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup_value"}]}},"response":[{"id":"087a8de8-d591-410b-b27f-5dff4afe471c","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"43120a6f-7f8a-4f46-aaeb-5ca1741dbfff","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"019db87a-6410-4dc3-8b56-dbf8f102e82f","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/cross-reference-lookup-values/:cross_reference_lookup_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","cross-reference-lookup-values",":cross_reference_lookup_value"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."},{"key":"cross_reference_lookup_value","value":"string","description":"The cross reference lookup value identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"53171edf-e28e-439f-9465-06e4b6c7c12a"},{"name":"Download Cross Reference Lookup","id":"6cefe099-4209-420d-b559-5b0cee2905ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/download","description":"<p>Triggers the download of a specific cross reference lookup as a CSV file with <code>left_value</code> and <code>right_value</code> columns. The file is added to the File Downloads section in General Settings.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","download"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"739c93bf-9627-4e39-87ec-6edabb534888","description":{"content":"<p>The cross reference lookup identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup"}]}},"response":[{"id":"42de2cb3-4285-49c0-95a9-6f6020ee2351","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","download"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"20e55b8d-fbf3-41e8-bca9-b015b8d27de9","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","download"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0008568c-e38f-4236-b24d-a090e5139a5f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/cross-reference-lookups/:cross_reference_lookup/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","cross-reference-lookups",":cross_reference_lookup","download"],"variable":[{"key":"cross_reference_lookup","value":"string","description":"The cross reference lookup identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6cefe099-4209-420d-b559-5b0cee2905ed"}],"id":"d6082784-2e2a-4f5c-97a9-342d0b3ce7c3","_postman_id":"d6082784-2e2a-4f5c-97a9-342d0b3ce7c3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Data Pools","item":[{"name":"List Data Pools","id":"934a7785-35f0-45dd-b3b6-c4dccd1c401d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/data-pool","description":"<p>Retrieves a paginated list of data pools. Can be filtered by <code>name</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: name, description</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"5b1fdca3-86ad-4eed-93f1-80ce69b3aae0","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, description","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"My Example\",\n      \"description\": \"A description of the resource\",\n      \"data_pool_template_id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/data-pool\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/data-pool?page=1\",\n    \"last\": \"https://api.example.com/api/v1/data-pool?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"2ecbf335-e09c-4127-93c7-9ce68d593c70","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, description","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"17f76e7b-a1a9-40cd-b4a6-0c52ecc0c77c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, description","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"934a7785-35f0-45dd-b3b6-c4dccd1c401d"},{"name":"Create Data Pool","id":"c02c2e6d-c54d-4407-82aa-354f70d1aed8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/data-pool","description":"<p>Creates a new data pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"52ec3e25-7770-4a80-9ea1-b9bfc540da68","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/data-pool"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"data_pool_template_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"b8367a39-1250-4d9b-9785-74ee75d2a490","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/data-pool"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4cba3c57-ccea-4368-9f7f-cd1d1cef9587","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/data-pool"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3d45161d-9731-44cb-a198-e8f475c29ee4","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/data-pool"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"description\": [\n      \"The description must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"c02c2e6d-c54d-4407-82aa-354f70d1aed8"},{"name":"Get Data Pool","id":"dd49a145-6e25-42c3-8cba-e411d604d2e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","description":"<p>Retrieves the details of a specific data pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool",":data_pool"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: name, description</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"097e4f04-cc29-4194-8882-6fd785041e6a","description":{"content":"<p>The data pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"data_pool"}]}},"response":[{"id":"6e44010d-f978-4d85-8481-12f7df390d10","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, description","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"data_pool_template_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"2e6e830f-f53f-43c4-8c52-d46131533728","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, description","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"410f8bdf-92fb-4eca-b505-f2ca93dfb050","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, description","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dd49a145-6e25-42c3-8cba-e411d604d2e1"},{"name":"Update Data Pool","id":"e273b0fc-331f-44c4-8eb6-eb13b94f89f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","description":"<p>Updates an existing data pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool",":data_pool"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9c1d4eb2-1ada-406b-9cc9-71aa79e81a39","description":{"content":"<p>The data pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"data_pool"}]}},"response":[{"id":"0c704487-baa9-4b5c-be13-ed7794d1a167","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"data_pool_template_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"b61a2b37-c05a-446e-a6fa-5d8ff5456043","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9c81def7-2704-4a7f-b204-49e851e0d307","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6e8cba55-d89f-4a52-a77f-ef7115aa79be","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"description\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"description\": [\n      \"The description must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"e273b0fc-331f-44c4-8eb6-eb13b94f89f0"},{"name":"Delete Data Pool","id":"52058bf1-0611-4557-a094-729b2a878fde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","description":"<p>Permanently deletes a specific data pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool",":data_pool"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"0220405c-4420-43b8-b644-a69a42270950","description":{"content":"<p>The data pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"data_pool"}]}},"response":[{"id":"f54f32c9-8bb1-46f2-83f5-7b0eae93d82d","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"fa244fd5-ebe9-45f3-9083-aa3f1793cc3b","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a458a9c8-7ed5-454b-b373-4903e8764874","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"52058bf1-0611-4557-a094-729b2a878fde"},{"name":"List Data Pool Deduped Data","id":"36cfd4ca-7607-41a6-a180-2c71c444e167","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data","description":"<p>Retrieves a paginated list of deduped data records for a specific data pool. Can be filtered by <code>flow_id</code>, <code>flow_run_id</code>, <code>step_id</code>, <code>entity_type_id</code>, <code>value</code>, <code>created_before</code>, and <code>created_after</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool",":data_pool","deduped-data"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by flow_id.</p>\n","type":"text/plain"},"key":"filter[flow_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_run_id.</p>\n","type":"text/plain"},"key":"filter[flow_run_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by step_id.</p>\n","type":"text/plain"},"key":"filter[step_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by entity_type_id.</p>\n","type":"text/plain"},"key":"filter[entity_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by created_before.</p>\n","type":"text/plain"},"key":"filter[created_before]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by created_after.</p>\n","type":"text/plain"},"key":"filter[created_after]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flow, flowRun, flowStep, entityType, dataPool</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"ba91ebb9-e140-4d9f-8fef-92d3b32e097f","description":{"content":"<p>The data pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"data_pool"}]}},"response":[{"id":"ffef8170-5c1d-496c-af87-ac8fb247e9ee","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by step_id.","key":"filter[step_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow, flowRun, flowStep, entityType, dataPool","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"My Example\",\n      \"description\": \"A description of the resource\",\n      \"data_pool_template_id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/data-pool/{data_pool}/deduped-data\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/data-pool/{data_pool}/deduped-data?page=1\",\n    \"last\": \"https://api.example.com/api/v1/data-pool/{data_pool}/deduped-data?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"d2e233ad-3f60-40cb-8c4b-0b15ab09ec16","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by step_id.","key":"filter[step_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow, flowRun, flowStep, entityType, dataPool","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c08ab79b-3cc7-4724-9ce7-635202086a46","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by step_id.","key":"filter[step_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow, flowRun, flowStep, entityType, dataPool","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"36cfd4ca-7607-41a6-a180-2c71c444e167"},{"name":"Download Data Pool Deduped Data","id":"39cd18fe-b517-41e7-b933-c493ed507647","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/download","description":"<p>Triggers the download of de-dupe data for a specific data pool. A CSV file is generated and added to the file downloads section in the Patchworks dashboard.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool",":data_pool","deduped-data","download"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1a80b22b-c681-43b9-935b-5e75109c0814","description":{"content":"<p>The data pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"data_pool"}]}},"response":[{"id":"27dff795-8f9f-4c9e-918e-abb65cdc5df3","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data","download"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"b0ada8ba-fed6-42d1-8c3d-1499ef3cd04f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data","download"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7de89460-ce08-41b7-9872-134d3a998c2a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data","download"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"39cd18fe-b517-41e7-b933-c493ed507647"},{"name":"Import Data Pool Deduped Data","id":"aed9a602-c4be-4134-80c2-5ef14f8072f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deduped_data_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/import","description":"<p>Imports de-dupe values into a specific data pool from a CSV file containing <code>value</code> and <code>entity_type_id</code> headers. All records in the import file are added as new items, and any existing items in the data pool are left unchanged.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool",":data_pool","deduped-data","import"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"149cf7ff-7ba9-481c-a4d4-2a40d1ca0d62","description":{"content":"<p>The data pool identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"data_pool"}]}},"response":[{"id":"6c70d633-b6c3-4d7d-9182-724f82e954bf","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"deduped_data_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/import","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data","import"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"e786354e-3580-41db-9481-ad10907ba613","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"deduped_data_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/import","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data","import"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"644cb53f-4620-450d-8fbc-15b38824a5b7","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"deduped_data_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/import","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data","import"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"abee59a1-14a3-45d6-a8e5-1e77d82f247a","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"deduped_data_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:data_pool/deduped-data/import","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":data_pool","deduped-data","import"],"variable":[{"key":"data_pool","value":"string","description":"The data pool identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"aed9a602-c4be-4134-80c2-5ef14f8072f1"},{"name":"Delete Deduped Data Record","id":"d8c6d1c0-298a-49c3-864d-4fb50e229bf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/data-pool/:id/deduped-data/delete-records","description":"<p>Deletes specific records from a data pool.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","data-pool",":id","deduped-data","delete-records"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"79434bcd-47c9-44ba-8b47-a190b111af69","description":{"content":"<p>The unique identifier of the id.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"id"}]}},"response":[{"id":"0b4ce3df-27c8-49c9-b800-badda7b08f0f","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:id/deduped-data/delete-records","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":id","deduped-data","delete-records"],"variable":[{"key":"id","value":"string","description":"The unique identifier of the id."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"8529ea37-2220-400e-81dc-c1c2221d9db9","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:id/deduped-data/delete-records","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":id","deduped-data","delete-records"],"variable":[{"key":"id","value":"string","description":"The unique identifier of the id."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"89b29ddb-da4f-46cc-919a-f9ab8dac190a","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/data-pool/:id/deduped-data/delete-records","host":["https://core.wearepatchworks.com"],"path":["api","v1","data-pool",":id","deduped-data","delete-records"],"variable":[{"key":"id","value":"string","description":"The unique identifier of the id."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d8c6d1c0-298a-49c3-864d-4fb50e229bf6"}],"id":"16e1b5ee-bd17-44fc-92e8-015e8dba5e5b","_postman_id":"16e1b5ee-bd17-44fc-92e8-015e8dba5e5b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Endpoints","item":[{"name":"List Endpoint Field Tags","id":"cdbaca95-b8c4-40ec-a7b7-e16c0d33b735","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","description":"<p>Retrieves a paginated list of field tags for a specific endpoint. Can be filtered by <code>name</code>, <code>entity_type_id</code>, <code>store_as</code>, and <code>is_required</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","field-tags"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by entity_type_id.</p>\n","type":"text/plain"},"key":"filter[entity_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by store_as.</p>\n","type":"text/plain"},"key":"filter[store_as]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by is_required.</p>\n","type":"text/plain"},"key":"filter[is_required]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: entityType</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"bcd5c715-ff8b-4656-9a51-18301f45112f","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"fc86f751-f924-4a1a-a73e-5dacde432310","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"field_path\": \"example_field_path\",\n      \"tags\": \"example_tags\",\n      \"label\": \"My Label\",\n      \"key\": \"example_key\",\n      \"value\": \"example_value\",\n      \"secret\": \"example_secret\",\n      \"variables\": \"example_variables\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"name\": \"My Example\",\n      \"system_id\": 1,\n      \"system\": {},\n      \"entity_type_id\": 1,\n      \"entity_type\": {},\n      \"endpoint\": \"example_endpoint\",\n      \"http_method\": \"CONNECT\",\n      \"data_type\": \"csv\",\n      \"pagination_method\": \"Custom relative URI\",\n      \"deprecated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"direction\": \"Send\",\n      \"returns_multiple_records\": true,\n      \"pre_script_version_id\": 1,\n      \"post_script_version_id\": 1,\n      \"endpoint_schema\": [],\n      \"field_tags\": [],\n      \"data_path\": [],\n      \"body_format\": \"none\",\n      \"raw_body\": [],\n      \"filters\": [],\n      \"modified\": [],\n      \"help_link\": [],\n      \"authentication_implementations\": [],\n      \"pre_script_version\": \"example_pre_script_version\",\n      \"post_script_version\": \"example_post_script_version\",\n      \"disable_header_addition\": true,\n      \"response_encoding\": \"base64\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/endpoints/{endpoint}/field-tags\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/endpoints/{endpoint}/field-tags?page=1\",\n    \"last\": \"https://api.example.com/api/v1/endpoints/{endpoint}/field-tags?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"d31e1d18-0460-4661-8738-3f4d38d37a74","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"77f54392-033c-4313-b67e-db381bafd65c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cdbaca95-b8c4-40ec-a7b7-e16c0d33b735"},{"name":"Create Endpoint Field Tag","id":"007768b9-4d44-4fbb-8aec-e13d1b206655","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"field_path\": \"string\",\n  \"tags\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","description":"<p>Creates a new field tag for a specific endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","field-tags"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"7cc1f3a1-df57-46f3-a416-7b3361dedcfb","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"6a88b719-fee9-4a60-9817-9e987e678f29","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"field_path\": \"string\",\n  \"tags\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"field_path\": \"example_field_path\",\n    \"tags\": \"example_tags\",\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"variables\": \"example_variables\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"system_id\": 1,\n    \"system\": {},\n    \"entity_type_id\": 1,\n    \"entity_type\": {},\n    \"endpoint\": \"example_endpoint\",\n    \"http_method\": \"CONNECT\",\n    \"data_type\": \"csv\",\n    \"pagination_method\": \"Custom relative URI\",\n    \"deprecated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"direction\": \"Send\",\n    \"returns_multiple_records\": true,\n    \"pre_script_version_id\": 1,\n    \"post_script_version_id\": 1,\n    \"endpoint_schema\": [],\n    \"field_tags\": [],\n    \"data_path\": [],\n    \"body_format\": \"none\",\n    \"raw_body\": [],\n    \"filters\": [],\n    \"modified\": [],\n    \"help_link\": [],\n    \"authentication_implementations\": [],\n    \"pre_script_version\": \"example_pre_script_version\",\n    \"post_script_version\": \"example_post_script_version\",\n    \"disable_header_addition\": true,\n    \"response_encoding\": \"base64\"\n  }\n}"},{"id":"3bc7b5d6-bdaf-4dd7-87b3-f5ee794eddee","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"field_path\": \"string\",\n  \"tags\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"07475473-93b4-4947-a8dd-aab2a934b1a8","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"field_path\": \"string\",\n  \"tags\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3857b777-51a3-43e7-a641-a04823fae6ab","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"field_path\": \"string\",\n  \"tags\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field_path\": [\n      \"The field path field is required.\"\n    ],\n    \"tags.*.field_tag_id\": [\n      \"The tags * field tag id field is required.\"\n    ],\n    \"tags.*.field_path\": [\n      \"The tags * field path field is required.\"\n    ]\n  }\n}"}],"_postman_id":"007768b9-4d44-4fbb-8aec-e13d1b206655"},{"name":"Update Endpoint Field Tag","id":"c33d6961-aadd-40e9-a3f5-cccbb43d13c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","description":"<p>Updates an existing field tag for a specific endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f7d8911d-a267-41ad-a0c8-61ac28e5350a","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"},{"id":"b3094145-1266-4fa5-9f24-049f463b8cc9","description":{"content":"<p>The field tag identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"field_tag"}]}},"response":[{"id":"6daddfa0-921a-484b-b81f-d2f26fefd396","name":"Successful response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"field_tag","value":"string","description":"The field tag identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8ab2a4f3-6b03-4081-bc5b-ee5f8aebc410","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"field_tag","value":"string","description":"The field tag identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0212b36c-8a62-4fb6-8407-1b661d4b6a88","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"field_tag","value":"string","description":"The field tag identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f9625eb2-2f9b-4aa1-95db-e691f5ec1a07","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"field_tag","value":"string","description":"The field tag identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"c33d6961-aadd-40e9-a3f5-cccbb43d13c9"},{"name":"Delete Endpoint Field Tag","id":"ca120287-7ebe-42e6-8669-5e93967f12d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","description":"<p>Permanently deletes a specific field tag for a specific endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"2ba56fa3-8ea0-40b4-93fd-8af54018695e","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"},{"id":"4106c12b-a6a1-45d6-bfec-b37aaca470dc","description":{"content":"<p>The field tag identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"field_tag"}]}},"response":[{"id":"74986244-189d-41b7-bc28-50040e0f992b","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"field_tag","value":"string","description":"The field tag identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"49c413b5-7498-47f0-aba2-442192c03af9","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"field_tag","value":"string","description":"The field tag identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a71dbbc0-ab4f-4397-9701-20831b2d48c1","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/field-tags/:field_tag","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","field-tags",":field_tag"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"field_tag","value":"string","description":"The field tag identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ca120287-7ebe-42e6-8669-5e93967f12d2"},{"name":"List Endpoint Pagination","id":"6ba2f7e0-52f2-4a03-bf9f-c9215e33bf7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","description":"<p>Retrieves the pagination method details for a specific endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","pagination"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b3262d5a-b70f-4765-9d07-d11608d82673","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"7201d51a-7abd-4e94-a33b-6d8ddfbf6b91","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","pagination"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"field_path\": \"example_field_path\",\n      \"tags\": \"example_tags\",\n      \"label\": \"My Label\",\n      \"key\": \"example_key\",\n      \"value\": \"example_value\",\n      \"secret\": \"example_secret\",\n      \"variables\": \"example_variables\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"name\": \"My Example\",\n      \"system_id\": 1,\n      \"system\": {},\n      \"entity_type_id\": 1,\n      \"entity_type\": {},\n      \"endpoint\": \"example_endpoint\",\n      \"http_method\": \"CONNECT\",\n      \"data_type\": \"csv\",\n      \"pagination_method\": \"Custom relative URI\",\n      \"deprecated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"direction\": \"Send\",\n      \"returns_multiple_records\": true,\n      \"pre_script_version_id\": 1,\n      \"post_script_version_id\": 1,\n      \"endpoint_schema\": [],\n      \"field_tags\": [],\n      \"data_path\": [],\n      \"body_format\": \"none\",\n      \"raw_body\": [],\n      \"filters\": [],\n      \"modified\": [],\n      \"help_link\": [],\n      \"authentication_implementations\": [],\n      \"pre_script_version\": \"example_pre_script_version\",\n      \"post_script_version\": \"example_post_script_version\",\n      \"disable_header_addition\": true,\n      \"response_encoding\": \"base64\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/endpoints/{endpoint}/pagination\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/endpoints/{endpoint}/pagination?page=1\",\n    \"last\": \"https://api.example.com/api/v1/endpoints/{endpoint}/pagination?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"b236e718-50d4-4f09-89b8-f6bb7fe30550","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","pagination"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b46786eb-0137-4651-9308-2b9957ab93b8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","pagination"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6ba2f7e0-52f2-4a03-bf9f-c9215e33bf7d"},{"name":"Update Endpoint Pagination","id":"417d93de-2198-43b5-aa55-8ddbbdad0ac3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"request_options\": [],\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","description":"<p>Updates the pagination method configuration for a specific endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","pagination"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"6990cb00-cd1a-4533-ab12-43345d43d0d8","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"8a0db5ab-0ee2-4bcf-9e0c-1648eaf5a5f1","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"request_options\": [],\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","pagination"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"field_path\": \"example_field_path\",\n    \"tags\": \"example_tags\",\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"variables\": \"example_variables\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"system_id\": 1,\n    \"system\": {},\n    \"entity_type_id\": 1,\n    \"entity_type\": {},\n    \"endpoint\": \"example_endpoint\",\n    \"http_method\": \"CONNECT\",\n    \"data_type\": \"csv\",\n    \"pagination_method\": \"Custom relative URI\",\n    \"deprecated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"direction\": \"Send\",\n    \"returns_multiple_records\": true,\n    \"pre_script_version_id\": 1,\n    \"post_script_version_id\": 1,\n    \"endpoint_schema\": [],\n    \"field_tags\": [],\n    \"data_path\": [],\n    \"body_format\": \"none\",\n    \"raw_body\": [],\n    \"filters\": [],\n    \"modified\": [],\n    \"help_link\": [],\n    \"authentication_implementations\": [],\n    \"pre_script_version\": \"example_pre_script_version\",\n    \"post_script_version\": \"example_post_script_version\",\n    \"disable_header_addition\": true,\n    \"response_encoding\": \"base64\"\n  }\n}"},{"id":"2112e2f8-ad75-4639-b9e3-4d488df5bed5","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"request_options\": [],\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","pagination"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2d56d0e3-67c5-450a-beb8-26f65fe98bbb","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"request_options\": [],\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","pagination"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"86fcf2df-86eb-4652-b4ac-16834752c4ce","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"request_options\": [],\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/pagination","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","pagination"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"variables.*.alias\": [\n      \"The variables * alias field is required.\"\n    ],\n    \"variables.*.value\": [\n      \"The variables * value must be a string.\"\n    ],\n    \"request_options.*.key\": [\n      \"The request options * key field is required.\"\n    ]\n  }\n}"}],"_postman_id":"417d93de-2198-43b5-aa55-8ddbbdad0ac3"},{"name":"List Endpoint Schema","id":"694c1bd3-30e2-41ab-92e4-68a111862735","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/schema","description":"<p>Retrieves the schema defined for a specific endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","schema"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"08bbe13e-6801-4aa4-bacb-b4abc00dea60","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"1f4712c9-f965-431e-b9b6-660ea21861f1","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/schema","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","schema"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"field_path\": \"example_field_path\",\n      \"tags\": \"example_tags\",\n      \"label\": \"My Label\",\n      \"key\": \"example_key\",\n      \"value\": \"example_value\",\n      \"secret\": \"example_secret\",\n      \"variables\": \"example_variables\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"name\": \"My Example\",\n      \"system_id\": 1,\n      \"system\": {},\n      \"entity_type_id\": 1,\n      \"entity_type\": {},\n      \"endpoint\": \"example_endpoint\",\n      \"http_method\": \"CONNECT\",\n      \"data_type\": \"csv\",\n      \"pagination_method\": \"Custom relative URI\",\n      \"deprecated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"direction\": \"Send\",\n      \"returns_multiple_records\": true,\n      \"pre_script_version_id\": 1,\n      \"post_script_version_id\": 1,\n      \"endpoint_schema\": [],\n      \"field_tags\": [],\n      \"data_path\": [],\n      \"body_format\": \"none\",\n      \"raw_body\": [],\n      \"filters\": [],\n      \"modified\": [],\n      \"help_link\": [],\n      \"authentication_implementations\": [],\n      \"pre_script_version\": \"example_pre_script_version\",\n      \"post_script_version\": \"example_post_script_version\",\n      \"disable_header_addition\": true,\n      \"response_encoding\": \"base64\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/endpoints/{endpoint}/schema\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/endpoints/{endpoint}/schema?page=1\",\n    \"last\": \"https://api.example.com/api/v1/endpoints/{endpoint}/schema?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"9eca448c-2368-41ce-8fe7-29df55a62a35","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/schema","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","schema"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fbbc11d5-6a4b-4f1b-8826-a5681e716671","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/schema","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","schema"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"694c1bd3-30e2-41ab-92e4-68a111862735"},{"name":"List Endpoint Variables","id":"8cf9b118-eced-4f1a-8e00-658c48af9df2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","description":"<p>Retrieves a paginated list of variables for a specific endpoint. Can be filtered by <code>label</code>, <code>key</code>, and <code>value</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","variables"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by label.</p>\n","type":"text/plain"},"key":"filter[label]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: label, key, value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"b6df86d1-79a2-4c5b-836e-ecf2d7a5c43c","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"fdc94fd1-ce79-4501-ba44-df5a7aa04e68","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"key\": \"example_key\",\n      \"value\": \"example_value\",\n      \"secret\": \"example_secret\",\n      \"locked\": \"example_locked\",\n      \"configurable\": \"example_configurable\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"modified\": \"example_modified\",\n      \"pivot\": \"example_pivot\",\n      \"required\": true,\n      \"advanced\": true,\n      \"alias\": \"example_alias\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/endpoints/{endpoint}/variables\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/endpoints/{endpoint}/variables?page=1\",\n    \"last\": \"https://api.example.com/api/v1/endpoints/{endpoint}/variables?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"37cd82da-a751-44f1-b219-4ba6c1286602","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0659dd3b-0c7e-445f-a50b-505befd765cd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8cf9b118-eced-4f1a-8e00-658c48af9df2"},{"name":"Create Endpoint Variable","id":"40e6e89b-351a-41f8-90b6-62ab48324e34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","description":"<p>Creates a new variable for a specific endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","variables"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b8805fe6-8ff2-4f7b-871c-5a45b63d3da7","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"04efd2fa-ec55-45e4-b4eb-23ef81e1327a","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"locked\": \"example_locked\",\n    \"configurable\": \"example_configurable\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"modified\": \"example_modified\",\n    \"pivot\": \"example_pivot\",\n    \"required\": true,\n    \"advanced\": true,\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"221be570-a94e-4a51-9e45-7fd2a998e9c2","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e4617d98-bdf3-45b6-92d6-e1773f9b6550","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"979b2756-e1c5-406d-b7f9-931320777a23","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"pivot\": {\n    \"alias\": \"string\",\n    \"configurable\": \"string\",\n    \"required\": \"string\",\n    \"advanced\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"40e6e89b-351a-41f8-90b6-62ab48324e34"},{"name":"Delete Endpoint Variable","id":"a83aa1e7-a6ea-4ed3-8333-288e09e40225","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables/:variable","description":"<p>Permanently deletes a specific variable for a specific endpoint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","endpoints",":endpoint","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"4971aa06-3f13-4e3c-91f3-ef6a96a9c0f6","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"},{"id":"9d00b69a-e884-4e8c-87c4-d17e5081e7aa","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"8020a64a-11d4-48e1-9213-780f2a32480b","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables",":variable"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"42a6c5f0-8838-4bc0-a363-0307113caf46","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables",":variable"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"25e218f6-ffb5-40c8-9288-b17dd472cd7a","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/endpoints/:endpoint/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","endpoints",":endpoint","variables",":variable"],"variable":[{"key":"endpoint","value":"string","description":"The endpoint identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a83aa1e7-a6ea-4ed3-8333-288e09e40225"}],"id":"3a127b37-b00c-4b46-b632-6f0d08f35aaf","_postman_id":"3a127b37-b00c-4b46-b632-6f0d08f35aaf","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Features","item":[{"name":"List Features","id":"4a7dafa1-80b9-4dc4-be51-3c2023c088da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/features","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","features"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by scope.</p>\n","type":"text/plain"},"key":"filter[scope]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_name.</p>\n","type":"text/plain"},"key":"filter[model_name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, scope</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"2366669d-1f0c-402c-8d89-ea1c2bccfe62","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/features","host":["https://core.wearepatchworks.com"],"path":["api","v1","features"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by model_name.","key":"filter[model_name]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, scope","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1be0d9bf-2603-48f0-a5f4-34ec31865f24","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/features","host":["https://core.wearepatchworks.com"],"path":["api","v1","features"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by model_name.","key":"filter[model_name]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, scope","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1028be19-95c6-45aa-a0b0-eabb19ccdf2b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/features","host":["https://core.wearepatchworks.com"],"path":["api","v1","features"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by model_name.","key":"filter[model_name]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, scope","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4a7dafa1-80b9-4dc4-be51-3c2023c088da"},{"name":"List Features","id":"cc6376c8-4369-4420-871f-39d9191864fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/features","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","features"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by scope.</p>\n","type":"text/plain"},"key":"filter[scope]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_name.</p>\n","type":"text/plain"},"key":"filter[model_name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, scope</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"b7c991d3-d987-44bc-b50a-dd90a0d71cf8","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by model_name.","key":"filter[model_name]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, scope","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"73b871be-7347-46c5-a91c-fc7dbb6f8510","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by model_name.","key":"filter[model_name]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, scope","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"56e0c4c4-be6a-4fac-99a9-6652cdecca82","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by scope.","key":"filter[scope]","value":"string","disabled":true},{"description":"Filter results by model_name.","key":"filter[model_name]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, scope","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cc6376c8-4369-4420-871f-39d9191864fc"},{"name":"Update Feature","id":"de7d5184-533b-4f7c-8613-d141d0e9c86a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","features",":feature"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"badbe02b-45a1-462a-9c41-80065c2f3cab","description":{"content":"<p>The feature identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"feature"}]}},"response":[{"id":"d290d009-a033-483a-8969-a483e4decd96","name":"Successful response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features",":feature"],"variable":[{"key":"feature","value":"string","description":"The feature identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4334810e-aa79-450a-a586-150d3c3bb30a","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features",":feature"],"variable":[{"key":"feature","value":"string","description":"The feature identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"12aae9bf-71e4-499d-bedc-f48debf6ee50","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features",":feature"],"variable":[{"key":"feature","value":"string","description":"The feature identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"003c42ce-5f5e-42a1-bc44-833c763b24be","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features",":feature"],"variable":[{"key":"feature","value":"string","description":"The feature identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"de7d5184-533b-4f7c-8613-d141d0e9c86a"},{"name":"Delete Feature","id":"60e9e906-ea61-4aa0-a9b1-b45b48e78dfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","features",":feature"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"2e9732ba-99b9-4910-9294-fee2eba2ebf1","description":{"content":"<p>The feature identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"feature"}]}},"response":[{"id":"f28898cd-c85c-471b-9b7b-736dcf9e3274","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features",":feature"],"variable":[{"key":"feature","value":"string","description":"The feature identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5f2b2af8-af34-457a-8752-f2eff7aae2e7","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features",":feature"],"variable":[{"key":"feature","value":"string","description":"The feature identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"339fc3bf-b3c0-40be-ad03-551c3e7fd502","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/features/:feature","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","features",":feature"],"variable":[{"key":"feature","value":"string","description":"The feature identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"60e9e906-ea61-4aa0-a9b1-b45b48e78dfa"}],"id":"f50c8279-b77a-4511-98f2-cedc4194f241","_postman_id":"f50c8279-b77a-4511-98f2-cedc4194f241","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Filters","item":[{"name":"List Filters","id":"38c26024-f352-4096-8aa3-21d296116eb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/filters","description":"<p>Retrieves a paginated list of filters.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","filters"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by field.</p>\n","type":"text/plain"},"key":"filter[field]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by comparison.</p>\n","type":"text/plain"},"key":"filter[comparison]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by location.</p>\n","type":"text/plain"},"key":"filter[location]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by is_default.</p>\n","type":"text/plain"},"key":"filter[is_default]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by keep_matching.</p>\n","type":"text/plain"},"key":"filter[keep_matching]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: type, field, comparison</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"e3e02475-9509-4414-9701-4bfb95901041","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by field.","key":"filter[field]","value":"string","disabled":true},{"description":"Filter results by comparison.","key":"filter[comparison]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by location.","key":"filter[location]","value":"string","disabled":true},{"description":"Filter results by is_default.","key":"filter[is_default]","value":"string","disabled":true},{"description":"Filter results by keep_matching.","key":"filter[keep_matching]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, field, comparison","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"type\": \"example_type\",\n      \"comparison\": \"example_comparison\",\n      \"value\": \"example_value\",\n      \"value_type\": \"example_value_type\",\n      \"keep_matching\": \"example_keep_matching\",\n      \"operator_logic\": \"example_operator_logic\",\n      \"match_order\": \"example_match_order\",\n      \"is_default\": \"example_is_default\",\n      \"location\": \"example_location\",\n      \"model_type\": \"example_model_type\",\n      \"model_id\": 1,\n      \"date_format\": \"example_date_format\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"field\": \"example_field\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/filters\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/filters?page=1\",\n    \"last\": \"https://api.example.com/api/v1/filters?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"3af5045c-4367-4039-9a24-eab9a95b1230","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by field.","key":"filter[field]","value":"string","disabled":true},{"description":"Filter results by comparison.","key":"filter[comparison]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by location.","key":"filter[location]","value":"string","disabled":true},{"description":"Filter results by is_default.","key":"filter[is_default]","value":"string","disabled":true},{"description":"Filter results by keep_matching.","key":"filter[keep_matching]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, field, comparison","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f1ca30e7-bf0d-41fe-9708-80ed31f707f7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by field.","key":"filter[field]","value":"string","disabled":true},{"description":"Filter results by comparison.","key":"filter[comparison]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by location.","key":"filter[location]","value":"string","disabled":true},{"description":"Filter results by is_default.","key":"filter[is_default]","value":"string","disabled":true},{"description":"Filter results by keep_matching.","key":"filter[keep_matching]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, field, comparison","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"38c26024-f352-4096-8aa3-21d296116eb1"},{"name":"Create Filter","id":"d1585055-c302-4b3a-8b38-3dc54542e5fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"comparison\": \"string\",\n  \"field\": \"string\",\n  \"keep_matching\": \"string\",\n  \"model_id\": 5291,\n  \"model_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/filters","description":"<p>Creates a new filter.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","filters"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"8a8ce139-7625-4326-8aec-e0adb2b6c39a","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"comparison\": \"string\",\n  \"field\": \"string\",\n  \"keep_matching\": \"string\",\n  \"model_id\": 5291,\n  \"model_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/filters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"type\": \"example_type\",\n    \"comparison\": \"example_comparison\",\n    \"value\": \"example_value\",\n    \"value_type\": \"example_value_type\",\n    \"keep_matching\": \"example_keep_matching\",\n    \"operator_logic\": \"example_operator_logic\",\n    \"match_order\": \"example_match_order\",\n    \"is_default\": \"example_is_default\",\n    \"location\": \"example_location\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"date_format\": \"example_date_format\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"field\": \"example_field\"\n  }\n}"},{"id":"b38f366f-5dc6-4c40-b551-a23e6b2b979e","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"comparison\": \"string\",\n  \"field\": \"string\",\n  \"keep_matching\": \"string\",\n  \"model_id\": 5291,\n  \"model_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/filters"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"188b6e7d-d0cd-4369-87f5-e5cb1a4a17b9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"comparison\": \"string\",\n  \"field\": \"string\",\n  \"keep_matching\": \"string\",\n  \"model_id\": 5291,\n  \"model_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/filters"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0a7fcf32-e6f7-42b3-93bb-2dfad7c35444","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"comparison\": \"string\",\n  \"field\": \"string\",\n  \"keep_matching\": \"string\",\n  \"model_id\": 5291,\n  \"model_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/filters"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"type\": [\n      \"The type field is required.\"\n    ],\n    \"field\": [\n      \"The field field is required.\"\n    ],\n    \"comparison\": [\n      \"The comparison field is required.\"\n    ]\n  }\n}"}],"_postman_id":"d1585055-c302-4b3a-8b38-3dc54542e5fb"},{"name":"Get Filter","id":"5a25de2a-73a0-4daa-addc-c1eaf3dfa294","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/filters/:filter","description":"<p>Retrieves the details of a specific filter.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","filters",":filter"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by field.</p>\n","type":"text/plain"},"key":"filter[field]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by comparison.</p>\n","type":"text/plain"},"key":"filter[comparison]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by location.</p>\n","type":"text/plain"},"key":"filter[location]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by is_default.</p>\n","type":"text/plain"},"key":"filter[is_default]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by keep_matching.</p>\n","type":"text/plain"},"key":"filter[keep_matching]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: type, field, comparison</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"05b25bbd-aecb-4965-929f-e60148cb6317","description":{"content":"<p>The filter identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"filter"}]}},"response":[{"id":"28bb7aff-659f-4f6e-aed7-208cdfefe35a","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by field.","key":"filter[field]","value":"string","disabled":true},{"description":"Filter results by comparison.","key":"filter[comparison]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by location.","key":"filter[location]","value":"string","disabled":true},{"description":"Filter results by is_default.","key":"filter[is_default]","value":"string","disabled":true},{"description":"Filter results by keep_matching.","key":"filter[keep_matching]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, field, comparison","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"type\": \"example_type\",\n    \"comparison\": \"example_comparison\",\n    \"value\": \"example_value\",\n    \"value_type\": \"example_value_type\",\n    \"keep_matching\": \"example_keep_matching\",\n    \"operator_logic\": \"example_operator_logic\",\n    \"match_order\": \"example_match_order\",\n    \"is_default\": \"example_is_default\",\n    \"location\": \"example_location\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"date_format\": \"example_date_format\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"field\": \"example_field\"\n  }\n}"},{"id":"bd410275-23a4-45d7-a863-fc5606fe4eee","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by field.","key":"filter[field]","value":"string","disabled":true},{"description":"Filter results by comparison.","key":"filter[comparison]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by location.","key":"filter[location]","value":"string","disabled":true},{"description":"Filter results by is_default.","key":"filter[is_default]","value":"string","disabled":true},{"description":"Filter results by keep_matching.","key":"filter[keep_matching]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, field, comparison","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b8d68473-aa08-45c1-8fb3-5620d2106a28","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by field.","key":"filter[field]","value":"string","disabled":true},{"description":"Filter results by comparison.","key":"filter[comparison]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by location.","key":"filter[location]","value":"string","disabled":true},{"description":"Filter results by is_default.","key":"filter[is_default]","value":"string","disabled":true},{"description":"Filter results by keep_matching.","key":"filter[keep_matching]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, field, comparison","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5a25de2a-73a0-4daa-addc-c1eaf3dfa294"},{"name":"Update Filter","id":"bde8f62c-5996-488c-9e1c-e1deb5209f94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"comparison\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"keep_matching\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\",\n  \"field\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/filters/:filter","description":"<p>Updates an existing filter.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","filters",":filter"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"211e397c-1076-42f6-865d-fb118a75159d","description":{"content":"<p>The filter identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"filter"}]}},"response":[{"id":"5448ef8d-eb61-496b-b30f-59696a79edcb","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"comparison\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"keep_matching\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\",\n  \"field\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"type\": \"example_type\",\n    \"comparison\": \"example_comparison\",\n    \"value\": \"example_value\",\n    \"value_type\": \"example_value_type\",\n    \"keep_matching\": \"example_keep_matching\",\n    \"operator_logic\": \"example_operator_logic\",\n    \"match_order\": \"example_match_order\",\n    \"is_default\": \"example_is_default\",\n    \"location\": \"example_location\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"date_format\": \"example_date_format\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"field\": \"example_field\"\n  }\n}"},{"id":"a88c0004-f92d-4ab2-8953-4832b3c8efe6","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"comparison\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"keep_matching\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\",\n  \"field\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"88c45fd2-5042-4ab1-a933-e77b225e930a","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"comparison\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"keep_matching\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\",\n  \"field\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4ff48cef-3f5f-4fb6-82bc-9eb3b3beb388","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"comparison\": \"string\",\n  \"value\": \"string\",\n  \"value_type\": \"string\",\n  \"keep_matching\": \"string\",\n  \"operator_logic\": \"string\",\n  \"match_order\": \"string\",\n  \"is_default\": \"string\",\n  \"location\": \"string\",\n  \"date_format\": \"string\",\n  \"field\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"type\": [\n      \"The type must be a string.\"\n    ],\n    \"field\": [\n      \"The field must be a string.\"\n    ],\n    \"comparison\": [\n      \"The comparison must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"bde8f62c-5996-488c-9e1c-e1deb5209f94"},{"name":"Delete Filter","id":"c58b01ff-aa7d-4e30-8042-b0be13d7a749","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/filters/:filter","description":"<p>Permanently deletes a specific filter.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","filters",":filter"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"dba9d4b2-4712-4465-9e52-6b55eab2c3ab","description":{"content":"<p>The filter identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"filter"}]}},"response":[{"id":"4040cc2d-d273-4ac0-84de-de84ef1349c8","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"c6d1f85b-09e2-4b0c-af74-68b4b2d61dfa","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7d09f372-2192-4166-861c-8a9e7a8b1a8c","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/filters/:filter","host":["https://core.wearepatchworks.com"],"path":["api","v1","filters",":filter"],"variable":[{"key":"filter","value":"string","description":"The filter identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c58b01ff-aa7d-4e30-8042-b0be13d7a749"}],"id":"a54dd219-6ec3-4044-8a34-cc90e11940ee","_postman_id":"a54dd219-6ec3-4044-8a34-cc90e11940ee","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Metric Model Totals","item":[{"name":"Total Flow Metric Model Total","id":"c8b7707d-c5a6-4d23-a72b-b8ed1697ff76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-model-totals","description":"<p>Retrieves aggregated flow metric totals for one or more models over a specified time interval.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-metric-model-totals"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"34bfdabc-e4df-4b42-bc1b-afcf6835d617","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-model-totals"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"d543c939-2267-474d-8057-c861568fac90","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-model-totals"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1efbccca-51c0-49c5-b4b5-845ea8e50a27","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-model-totals"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c8b7707d-c5a6-4d23-a72b-b8ed1697ff76"}],"id":"1078c56b-fe78-45a4-94cb-a30a4ad62771","_postman_id":"1078c56b-fe78-45a4-94cb-a30a4ad62771","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Metric Value Summaries","item":[{"name":"List Flow Metric Value Summaries","id":"633e7d2e-7c30-455a-95f5-f731d18e20f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-summaries","description":"<p>List all flow metric value summaries.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>model</li>\n<li>model_count</li>\n<li>modelExists</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>model_type</li>\n<li>model_id</li>\n<li>interval_unit</li>\n<li>key</li>\n<li>for_month</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>created_at</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-metric-value-summaries"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by interval_unit.</p>\n","type":"text/plain"},"key":"filter[interval_unit]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by for_month.</p>\n","type":"text/plain"},"key":"filter[for_month]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: model</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"373a7527-1fa4-4650-872d-da77a3d7c956","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-metric-value-summaries","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-metric-value-summaries"],"query":[{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by interval_unit.","key":"filter[interval_unit]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by for_month.","key":"filter[for_month]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/flow-metric-value-summaries\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/flow-metric-value-summaries?page=1\",\n    \"last\": \"https://api.example.com/api/v1/flow-metric-value-summaries?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"bc3fcde8-8c78-40f3-bbb8-5ac0131687ee","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-metric-value-summaries","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-metric-value-summaries"],"query":[{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by interval_unit.","key":"filter[interval_unit]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by for_month.","key":"filter[for_month]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9d462924-7921-4401-a772-f1e194a0378a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-metric-value-summaries","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-metric-value-summaries"],"query":[{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by interval_unit.","key":"filter[interval_unit]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by for_month.","key":"filter[for_month]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"633e7d2e-7c30-455a-95f5-f731d18e20f0"}],"id":"16176e6e-9722-49f9-a949-34fd892ee921","_postman_id":"16176e6e-9722-49f9-a949-34fd892ee921","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Metric Value Totals","item":[{"name":"Total Flow Metric Value Total","id":"cebddb4d-2248-46a0-968a-da21615d9a40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-totals","description":"<p>Retrieves aggregated flow metric value totals over a specified time interval.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-metric-value-totals"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"decc70a4-ad0f-4520-a7f4-5206e6e8c029","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-totals"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"90049daa-9281-4d01-bacd-af246f1831b0","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-totals"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3af38068-6b26-4509-81e3-53163313b183","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-totals"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cebddb4d-2248-46a0-968a-da21615d9a40"},{"name":"Get Company Breakdown","id":"f72b7147-3311-435d-9add-be8973bb3b91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-totals/company-breakdown","description":"<p>Get Company Breakdown for company breakdown.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-metric-value-totals","company-breakdown"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"5dd8cc1b-2e19-4568-91f3-2f19c38f6980","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-totals/company-breakdown"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c1eb46e0-0d37-42c8-b307-432662ff9c46","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-totals/company-breakdown"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a3184ed2-5ecf-48ec-a15f-0b9dbf7ad4b0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/flow-metric-value-totals/company-breakdown"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f72b7147-3311-435d-9add-be8973bb3b91"}],"id":"0f9eea57-cccd-4e49-a953-9576c8fbcd3a","_postman_id":"0f9eea57-cccd-4e49-a953-9576c8fbcd3a","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Run Logs","item":[{"name":"List Flow Runs","id":"1051a73b-e9f0-4c09-a8d7-361b4ba5e7d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-runs","description":"<p>Retrieves a paginated list of flow runs. Can be filtered by <code>user_id</code>, <code>flow_id</code>, <code>flow_version_id</code>, <code>virtual_environment_id</code>, <code>trigger</code>, <code>status</code>, date range, and other criteria.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-runs"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by user_id.</p>\n","type":"text/plain"},"key":"filter[user_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_id.</p>\n","type":"text/plain"},"key":"filter[flow_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_version_id.</p>\n","type":"text/plain"},"key":"filter[flow_version_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by virtual_environment_id.</p>\n","type":"text/plain"},"key":"filter[virtual_environment_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by trigger.</p>\n","type":"text/plain"},"key":"filter[trigger]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by status.</p>\n","type":"text/plain"},"key":"filter[status]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by search.</p>\n","type":"text/plain"},"key":"filter[search]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results to flow runs that started before the specified time. Accepts a Unix timestamp in milliseconds, e.g. <code>2026-03-01 19:00</code> converts to <code>1772391627000</code> so <code>1772391627000</code> is the parameter value.</p>\n","type":"text/plain"},"key":"filter[started_before]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results to flow runs that started after the specified time. Accepts a Unix timestamp in milliseconds.</p>\n","type":"text/plain"},"key":"filter[started_after]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results to flow runs that started on the specified date. Accepts a Unix timestamp in milliseconds.</p>\n","type":"text/plain"},"key":"filter[started_on]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by retried.</p>\n","type":"text/plain"},"key":"filter[retried]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by has_warnings.</p>\n","type":"text/plain"},"key":"filter[has_warnings]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowVersion, flowVersion.steps, flow, flowRunLogs, errorWarningLogs, flowRunLogs.flowStep, trackedData, metrics, cpuTime, payloadSize, operationsSent, operationsReceived, retriedFlowRun, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: started_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of trackedData fields to return. Available: id</p>\n","type":"text/plain"},"key":"fields[trackedData]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of flow fields to return. Available: id, name</p>\n","type":"text/plain"},"key":"fields[flow]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of flowVersion fields to return. Available: steps.name</p>\n","type":"text/plain"},"key":"fields[flowVersion]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of retriedFlowRun fields to return. Available: id, status</p>\n","type":"text/plain"},"key":"fields[retriedFlowRun]","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"be0c5950-054f-4c63-8f16-20228a61ec17","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by trigger.","key":"filter[trigger]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by search.","key":"filter[search]","value":"string","disabled":true},{"description":"Filter results to flow runs that started before the specified time. Accepts a Unix timestamp in milliseconds, e.g. `2026-03-01 19:00` converts to `1772391627000` so `1772391627000` is the parameter value.","key":"filter[started_before]","value":"string","disabled":true},{"description":"Filter results to flow runs that started after the specified time. Accepts a Unix timestamp in milliseconds.","key":"filter[started_after]","value":"string","disabled":true},{"description":"Filter results to flow runs that started on the specified date. Accepts a Unix timestamp in milliseconds.","key":"filter[started_on]","value":"string","disabled":true},{"description":"Filter results by retried.","key":"filter[retried]","value":"string","disabled":true},{"description":"Filter results by has_warnings.","key":"filter[has_warnings]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, flowVersion.steps, flow, flowRunLogs, errorWarningLogs, flowRunLogs.flowStep, trackedData, metrics, cpuTime, payloadSize, operationsSent, operationsReceived, retriedFlowRun, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of trackedData fields to return. Available: id","key":"fields[trackedData]","value":"string","disabled":true},{"description":"Comma-separated list of flow fields to return. Available: id, name","key":"fields[flow]","value":"string","disabled":true},{"description":"Comma-separated list of flowVersion fields to return. Available: steps.name","key":"fields[flowVersion]","value":"string","disabled":true},{"description":"Comma-separated list of retriedFlowRun fields to return. Available: id, status","key":"fields[retriedFlowRun]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"string\",\n      \"flow_id\": 0,\n      \"flow_version_id\": 0,\n      \"virtual_environment_version\": null,\n      \"trigger\": \"string\",\n      \"status\": 0,\n      \"has_warnings\": false,\n      \"started_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"duration\": 0,\n      \"retry_flow_run_id\": null,\n      \"summary\": null,\n      \"flow\": {\n        \"id\": 0,\n        \"name\": \"string\",\n        \"deleted_at\": null\n      },\n      \"flow_version\": {\n        \"id\": 0,\n        \"iteration\": 0,\n        \"deleted_at\": null\n      }\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/flow-runs\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/flow-runs?page=1\",\n    \"last\": \"https://api.example.com/api/v1/flow-runs?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"2f1bda16-dcfb-4a61-a93e-929fc76d5231","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by trigger.","key":"filter[trigger]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by search.","key":"filter[search]","value":"string","disabled":true},{"description":"Filter results to flow runs that started before the specified time. Accepts a Unix timestamp in milliseconds, e.g. `2026-03-01 19:00` converts to `1772391627000` so `1772391627000` is the parameter value.","key":"filter[started_before]","value":"string","disabled":true},{"description":"Filter results to flow runs that started after the specified time. Accepts a Unix timestamp in milliseconds.","key":"filter[started_after]","value":"string","disabled":true},{"description":"Filter results to flow runs that started on the specified date. Accepts a Unix timestamp in milliseconds.","key":"filter[started_on]","value":"string","disabled":true},{"description":"Filter results by retried.","key":"filter[retried]","value":"string","disabled":true},{"description":"Filter results by has_warnings.","key":"filter[has_warnings]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, flowVersion.steps, flow, flowRunLogs, errorWarningLogs, flowRunLogs.flowStep, trackedData, metrics, cpuTime, payloadSize, operationsSent, operationsReceived, retriedFlowRun, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of trackedData fields to return. Available: id","key":"fields[trackedData]","value":"string","disabled":true},{"description":"Comma-separated list of flow fields to return. Available: id, name","key":"fields[flow]","value":"string","disabled":true},{"description":"Comma-separated list of flowVersion fields to return. Available: steps.name","key":"fields[flowVersion]","value":"string","disabled":true},{"description":"Comma-separated list of retriedFlowRun fields to return. Available: id, status","key":"fields[retriedFlowRun]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a78243ec-dd84-4211-9a84-a02471639ee6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by trigger.","key":"filter[trigger]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by search.","key":"filter[search]","value":"string","disabled":true},{"description":"Filter results to flow runs that started before the specified time. Accepts a Unix timestamp in milliseconds, e.g. `2026-03-01 19:00` converts to `1772391627000` so `1772391627000` is the parameter value.","key":"filter[started_before]","value":"string","disabled":true},{"description":"Filter results to flow runs that started after the specified time. Accepts a Unix timestamp in milliseconds.","key":"filter[started_after]","value":"string","disabled":true},{"description":"Filter results to flow runs that started on the specified date. Accepts a Unix timestamp in milliseconds.","key":"filter[started_on]","value":"string","disabled":true},{"description":"Filter results by retried.","key":"filter[retried]","value":"string","disabled":true},{"description":"Filter results by has_warnings.","key":"filter[has_warnings]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, flowVersion.steps, flow, flowRunLogs, errorWarningLogs, flowRunLogs.flowStep, trackedData, metrics, cpuTime, payloadSize, operationsSent, operationsReceived, retriedFlowRun, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of trackedData fields to return. Available: id","key":"fields[trackedData]","value":"string","disabled":true},{"description":"Comma-separated list of flow fields to return. Available: id, name","key":"fields[flow]","value":"string","disabled":true},{"description":"Comma-separated list of flowVersion fields to return. Available: steps.name","key":"fields[flowVersion]","value":"string","disabled":true},{"description":"Comma-separated list of retriedFlowRun fields to return. Available: id, status","key":"fields[retriedFlowRun]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1051a73b-e9f0-4c09-a8d7-361b4ba5e7d9"},{"name":"Get Flow Run","id":"8d6ccb1a-fe0f-45ba-8b50-ffb793c57fd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run","description":"<p>Retrieves the details of a specific flow run.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-runs",":flow_run"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by user_id.</p>\n","type":"text/plain"},"key":"filter[user_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_id.</p>\n","type":"text/plain"},"key":"filter[flow_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_version_id.</p>\n","type":"text/plain"},"key":"filter[flow_version_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by virtual_environment_id.</p>\n","type":"text/plain"},"key":"filter[virtual_environment_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by trigger.</p>\n","type":"text/plain"},"key":"filter[trigger]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by status.</p>\n","type":"text/plain"},"key":"filter[status]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by search.</p>\n","type":"text/plain"},"key":"filter[search]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results to flow runs that started before the specified time. Accepts a Unix timestamp in milliseconds, e.g. <code>2026-03-01 19:00</code> converts to <code>1772391627000</code> so <code>1772391627000</code> is the parameter value.</p>\n","type":"text/plain"},"key":"filter[started_before]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results to flow runs that started after the specified time. Accepts a Unix timestamp in milliseconds.</p>\n","type":"text/plain"},"key":"filter[started_after]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results to flow runs that started on the specified date. Accepts a Unix timestamp in milliseconds.</p>\n","type":"text/plain"},"key":"filter[started_on]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by retried.</p>\n","type":"text/plain"},"key":"filter[retried]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by has_warnings.</p>\n","type":"text/plain"},"key":"filter[has_warnings]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowVersion, flowVersion.steps, flow, flowRunLogs, errorWarningLogs, flowRunLogs.flowStep, trackedData, metrics, cpuTime, payloadSize, operationsSent, operationsReceived, retriedFlowRun, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: started_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of trackedData fields to return. Available: id</p>\n","type":"text/plain"},"key":"fields[trackedData]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of flow fields to return. Available: id, name</p>\n","type":"text/plain"},"key":"fields[flow]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of flowVersion fields to return. Available: steps.name</p>\n","type":"text/plain"},"key":"fields[flowVersion]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of retriedFlowRun fields to return. Available: id, status</p>\n","type":"text/plain"},"key":"fields[retriedFlowRun]","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"3148a2a4-c3c6-41cf-8824-951fb53aa9e0","description":{"content":"<p>The flow run identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_run"}]}},"response":[{"id":"9424f1ab-490d-4d28-a5fd-d2f68986c9ce","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by trigger.","key":"filter[trigger]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by search.","key":"filter[search]","value":"string","disabled":true},{"description":"Filter results to flow runs that started before the specified time. Accepts a Unix timestamp in milliseconds, e.g. `2026-03-01 19:00` converts to `1772391627000` so `1772391627000` is the parameter value.","key":"filter[started_before]","value":"string","disabled":true},{"description":"Filter results to flow runs that started after the specified time. Accepts a Unix timestamp in milliseconds.","key":"filter[started_after]","value":"string","disabled":true},{"description":"Filter results to flow runs that started on the specified date. Accepts a Unix timestamp in milliseconds.","key":"filter[started_on]","value":"string","disabled":true},{"description":"Filter results by retried.","key":"filter[retried]","value":"string","disabled":true},{"description":"Filter results by has_warnings.","key":"filter[has_warnings]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, flowVersion.steps, flow, flowRunLogs, errorWarningLogs, flowRunLogs.flowStep, trackedData, metrics, cpuTime, payloadSize, operationsSent, operationsReceived, retriedFlowRun, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of trackedData fields to return. Available: id","key":"fields[trackedData]","value":"string","disabled":true},{"description":"Comma-separated list of flow fields to return. Available: id, name","key":"fields[flow]","value":"string","disabled":true},{"description":"Comma-separated list of flowVersion fields to return. Available: steps.name","key":"fields[flowVersion]","value":"string","disabled":true},{"description":"Comma-separated list of retriedFlowRun fields to return. Available: id, status","key":"fields[retriedFlowRun]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"string\",\n    \"flow_id\": 0,\n    \"flow_version_id\": 0,\n    \"user_id\": null,\n    \"trigger\": \"string\",\n    \"status\": 0,\n    \"summary\": null,\n    \"started_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"finished_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"duration\": 0,\n    \"retry_flow_run_id\": null,\n    \"has_warnings\": false,\n    \"starting_payload_count\": 0,\n    \"starting_payload_size\": 0,\n    \"flow\": {\n      \"id\": 0,\n      \"name\": \"string\"\n    },\n    \"flow_version\": {\n      \"id\": 0,\n      \"flow_id\": 0,\n      \"iteration\": 0,\n      \"status\": \"string\",\n      \"is_deployed\": false\n    }\n  }\n}"},{"id":"466be9f8-143e-4ece-8b67-69d807f5681c","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by trigger.","key":"filter[trigger]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by search.","key":"filter[search]","value":"string","disabled":true},{"description":"Filter results to flow runs that started before the specified time. Accepts a Unix timestamp in milliseconds, e.g. `2026-03-01 19:00` converts to `1772391627000` so `1772391627000` is the parameter value.","key":"filter[started_before]","value":"string","disabled":true},{"description":"Filter results to flow runs that started after the specified time. Accepts a Unix timestamp in milliseconds.","key":"filter[started_after]","value":"string","disabled":true},{"description":"Filter results to flow runs that started on the specified date. Accepts a Unix timestamp in milliseconds.","key":"filter[started_on]","value":"string","disabled":true},{"description":"Filter results by retried.","key":"filter[retried]","value":"string","disabled":true},{"description":"Filter results by has_warnings.","key":"filter[has_warnings]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, flowVersion.steps, flow, flowRunLogs, errorWarningLogs, flowRunLogs.flowStep, trackedData, metrics, cpuTime, payloadSize, operationsSent, operationsReceived, retriedFlowRun, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of trackedData fields to return. Available: id","key":"fields[trackedData]","value":"string","disabled":true},{"description":"Comma-separated list of flow fields to return. Available: id, name","key":"fields[flow]","value":"string","disabled":true},{"description":"Comma-separated list of flowVersion fields to return. Available: steps.name","key":"fields[flowVersion]","value":"string","disabled":true},{"description":"Comma-separated list of retriedFlowRun fields to return. Available: id, status","key":"fields[retriedFlowRun]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"993226b0-13e4-4ab0-86b9-b46f44105d14","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by trigger.","key":"filter[trigger]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by search.","key":"filter[search]","value":"string","disabled":true},{"description":"Filter results to flow runs that started before the specified time. Accepts a Unix timestamp in milliseconds, e.g. `2026-03-01 19:00` converts to `1772391627000` so `1772391627000` is the parameter value.","key":"filter[started_before]","value":"string","disabled":true},{"description":"Filter results to flow runs that started after the specified time. Accepts a Unix timestamp in milliseconds.","key":"filter[started_after]","value":"string","disabled":true},{"description":"Filter results to flow runs that started on the specified date. Accepts a Unix timestamp in milliseconds.","key":"filter[started_on]","value":"string","disabled":true},{"description":"Filter results by retried.","key":"filter[retried]","value":"string","disabled":true},{"description":"Filter results by has_warnings.","key":"filter[has_warnings]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, flowVersion.steps, flow, flowRunLogs, errorWarningLogs, flowRunLogs.flowStep, trackedData, metrics, cpuTime, payloadSize, operationsSent, operationsReceived, retriedFlowRun, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of trackedData fields to return. Available: id","key":"fields[trackedData]","value":"string","disabled":true},{"description":"Comma-separated list of flow fields to return. Available: id, name","key":"fields[flow]","value":"string","disabled":true},{"description":"Comma-separated list of flowVersion fields to return. Available: steps.name","key":"fields[flowVersion]","value":"string","disabled":true},{"description":"Comma-separated list of retriedFlowRun fields to return. Available: id, status","key":"fields[retriedFlowRun]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8d6ccb1a-fe0f-45ba-8b50-ffb793c57fd5"},{"name":"Download Run Logs","id":"b3369b7e-5509-4172-af52-7855d5906a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/download","description":"<p>Queues a download of the detailed logs for a specific flow run. The downloaded file is added to the File Downloads section in General Settings.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-runs",":flow_run","download"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9ea3ec17-a0ff-444c-96ef-b40ef40ea58a","description":{"content":"<p>The flow run identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_run"}]}},"response":[{"id":"eb0e4280-f772-4a36-bb26-0cf12c1e6093","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","download"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"ad63d61b-73dd-4da6-b872-9ca5eac1c4a6","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","download"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f4a53da7-afe1-4660-bc59-9e6d9923502a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","download"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b3369b7e-5509-4172-af52-7855d5906a8c"},{"name":"List Run Logs","id":"2518ee21-d8de-44a3-90b9-34eb65acedd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/flow-run-logs","description":"<p>Retrieves a paginated list of logs for a specific flow run. Can be filtered by <code>flow_step_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-runs",":flow_run","flow-run-logs"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by flow_step_id.</p>\n","type":"text/plain"},"key":"filter[flow_step_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowRun, flowStep, flowRunLogMetadata, flowRunLogPayloads, flowStep.payloads</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of flowStep fields to return. Available: id, name, payload.id</p>\n","type":"text/plain"},"key":"fields[flowStep]","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"d17de429-f79b-46d5-aa52-00a655cddfc2","description":{"content":"<p>The flow run identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_run"}]}},"response":[{"id":"18bbbe24-c313-46c3-a733-867622ae9282","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/flow-run-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","flow-run-logs"],"query":[{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowRun, flowStep, flowRunLogMetadata, flowRunLogPayloads, flowStep.payloads","key":"include","value":"string","disabled":true},{"description":"Comma-separated list of flowStep fields to return. Available: id, name, payload.id","key":"fields[flowStep]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"My Example\",\n      \"payload.id\": \"example_payload.id\",\n      \"steps.name\": \"example_steps.name\",\n      \"status\": \"Draft\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"flow_id\": 1,\n      \"flow_version_id\": 1,\n      \"virtual_environment_version\": {},\n      \"user_id\": 1,\n      \"trigger\": \"API\",\n      \"summary\": \"example_summary\",\n      \"started_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"finished_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"duration\": {},\n      \"retry_flow_run_id\": 1,\n      \"retried_flow_run\": [],\n      \"has_warnings\": [],\n      \"flow_run_logs\": [],\n      \"flow\": [],\n      \"flow_version\": [],\n      \"metrics\": [],\n      \"cpu_time\": \"example_cpu_time\",\n      \"payload_size\": \"example_payload_size\",\n      \"operations_sent\": \"example_operations_sent\",\n      \"operations_received\": \"example_operations_received\",\n      \"score\": \"example_score\",\n      \"starting_payload_count\": 5,\n      \"starting_payload_size\": \"example_starting_payload_size\",\n      \"flow_steps_with_errors\": \"example_flow_steps_with_errors\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/flow-runs/{flow_run}/flow-run-logs\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/flow-runs/{flow_run}/flow-run-logs?page=1\",\n    \"last\": \"https://api.example.com/api/v1/flow-runs/{flow_run}/flow-run-logs?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"205e8b9a-729b-4f97-b0c0-54c60ad559dc","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/flow-run-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","flow-run-logs"],"query":[{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowRun, flowStep, flowRunLogMetadata, flowRunLogPayloads, flowStep.payloads","key":"include","value":"string","disabled":true},{"description":"Comma-separated list of flowStep fields to return. Available: id, name, payload.id","key":"fields[flowStep]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6439fd87-51c5-478b-8cfd-4896e84a42d4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/flow-run-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","flow-run-logs"],"query":[{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowRun, flowStep, flowRunLogMetadata, flowRunLogPayloads, flowStep.payloads","key":"include","value":"string","disabled":true},{"description":"Comma-separated list of flowStep fields to return. Available: id, name, payload.id","key":"fields[flowStep]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2518ee21-d8de-44a3-90b9-34eb65acedd1"},{"name":"Get Run Log","id":"82c41cbc-d822-4ac6-b3ff-3d803fdf7946","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/flow-run-logs/:flow_run_log","description":"<p>Retrieves the details of a specific flow run log.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-runs",":flow_run","flow-run-logs",":flow_run_log"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by flow_step_id.</p>\n","type":"text/plain"},"key":"filter[flow_step_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowRun, flowStep, flowRunLogMetadata, flowRunLogPayloads, flowStep.payloads</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of flowStep fields to return. Available: id, name, payload.id</p>\n","type":"text/plain"},"key":"fields[flowStep]","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"01a8a63f-6399-4618-9f4c-568c7590f198","description":{"content":"<p>The flow run identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_run"},{"id":"5f4271fa-753d-4c94-8a25-8db0f74a5e6d","description":{"content":"<p>The flow run log identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_run_log"}]}},"response":[{"id":"715fecf6-2396-4dc3-aa47-f3576dfdaa97","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/flow-run-logs/:flow_run_log","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","flow-run-logs",":flow_run_log"],"query":[{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowRun, flowStep, flowRunLogMetadata, flowRunLogPayloads, flowStep.payloads","key":"include","value":"string","disabled":true},{"description":"Comma-separated list of flowStep fields to return. Available: id, name, payload.id","key":"fields[flowStep]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."},{"key":"flow_run_log","value":"string","description":"The flow run log identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"payload.id\": \"example_payload.id\",\n    \"steps.name\": \"example_steps.name\",\n    \"status\": \"Draft\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"flow_id\": 1,\n    \"flow_version_id\": 1,\n    \"virtual_environment_version\": {},\n    \"user_id\": 1,\n    \"trigger\": \"API\",\n    \"summary\": \"example_summary\",\n    \"started_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"finished_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"duration\": {},\n    \"retry_flow_run_id\": 1,\n    \"retried_flow_run\": [],\n    \"has_warnings\": [],\n    \"flow_run_logs\": [],\n    \"flow\": [],\n    \"flow_version\": [],\n    \"metrics\": [],\n    \"cpu_time\": \"example_cpu_time\",\n    \"payload_size\": \"example_payload_size\",\n    \"operations_sent\": \"example_operations_sent\",\n    \"operations_received\": \"example_operations_received\",\n    \"score\": \"example_score\",\n    \"starting_payload_count\": 5,\n    \"starting_payload_size\": \"example_starting_payload_size\",\n    \"flow_steps_with_errors\": \"example_flow_steps_with_errors\"\n  }\n}"},{"id":"186bcd3b-9bc7-4a52-b6ef-9da32a55bd86","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/flow-run-logs/:flow_run_log","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","flow-run-logs",":flow_run_log"],"query":[{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowRun, flowStep, flowRunLogMetadata, flowRunLogPayloads, flowStep.payloads","key":"include","value":"string","disabled":true},{"description":"Comma-separated list of flowStep fields to return. Available: id, name, payload.id","key":"fields[flowStep]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."},{"key":"flow_run_log","value":"string","description":"The flow run log identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"49afd1c5-90ed-4f9e-a43d-8eadb862f374","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/flow-run-logs/:flow_run_log","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","flow-run-logs",":flow_run_log"],"query":[{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowRun, flowStep, flowRunLogMetadata, flowRunLogPayloads, flowStep.payloads","key":"include","value":"string","disabled":true},{"description":"Comma-separated list of flowStep fields to return. Available: id, name, payload.id","key":"fields[flowStep]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."},{"key":"flow_run_log","value":"string","description":"The flow run log identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"82c41cbc-d822-4ac6-b3ff-3d803fdf7946"},{"name":"Retry Flow Run","id":"a29ff9e2-8720-41d9-8b05-e5ca1bee43bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/retry","description":"<p>Retries a specific flow run.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-runs",":flow_run","retry"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"0aeb97fb-25ec-49b1-b5fc-f3890a3ab703","description":{"content":"<p>The flow run identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_run"}]}},"response":[{"id":"552f2afb-f835-44a3-add9-34818b8c312d","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/retry","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","retry"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"1cfbb9da-9c1f-4efd-9561-a9355d324f45","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/retry","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","retry"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b4ff46b5-2f07-4f8b-9545-83552da57a81","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/retry","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","retry"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b479bdbe-0cdd-43bf-a4c3-eb9c4b053b05","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/retry","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","retry"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"a29ff9e2-8720-41d9-8b05-e5ca1bee43bd"},{"name":"Stop Flow Run","id":"37007c06-300c-48fd-a3e6-cf286e288129","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/stop","description":"<p>Stops a specific flow run that is currently in progress.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-runs",":flow_run","stop"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8347d3f1-c1bc-4b08-be87-7da71f014112","description":{"content":"<p>The flow run identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_run"}]}},"response":[{"id":"6c2b31c8-2f4a-4c9d-83a1-f527b7ea2f24","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/stop","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","stop"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"255e4055-496b-4a48-bc91-2202ff90385e","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/stop","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","stop"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2febe90e-515b-4184-8b71-f25e31fa1616","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/stop","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","stop"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ff1c9974-b4e6-41c9-b2a9-bcd521964606","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-runs/:flow_run/stop","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-runs",":flow_run","stop"],"variable":[{"key":"flow_run","value":"string","description":"The flow run identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"37007c06-300c-48fd-a3e6-cf286e288129"}],"id":"e990e11a-c284-4164-a5eb-ef45d3e4bb32","_postman_id":"e990e11a-c284-4164-a5eb-ef45d3e4bb32","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Routes & Branches","item":[{"name":"List Flow Step Routes","id":"2eeccb37-87e9-41d3-8269-b4fe8e7ac836","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","description":"<p>Retrieves a list of routes (legs) for a specific Route or Branch flow step. The <code>flow_step</code> identifier can be obtained from <code>GET /api/v1/flow-versions/{flow_version}/steps</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-steps",":flow_step","routes"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"54d0d734-c505-4d2f-894a-1444103f6fa8","description":{"content":"<p>The flow step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_step"}]}},"response":[{"id":"e965b886-bf39-4212-97ab-f68b31b43c31","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"first_step_id\": 1,\n      \"filter_logic_operator\": \"example_filter_logic_operator\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"flow_version_id\": 1,\n      \"name\": \"My Example\",\n      \"microservice\": {},\n      \"config\": {},\n      \"parent_id\": 1,\n      \"flow_version\": {},\n      \"children\": {},\n      \"endpoint\": {},\n      \"connector\": [],\n      \"data_pool\": [],\n      \"filters\": [],\n      \"parent_flow_step\": [],\n      \"routes\": [],\n      \"variables\": [],\n      \"script_version\": [],\n      \"cache\": [],\n      \"payloads\": [],\n      \"flow\": {},\n      \"cross_references\": \"example_cross_references\",\n      \"notes_count\": 5,\n      \"notification_group\": {},\n      \"order\": \"example_order\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/flow-steps/{flow_step}/routes\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/flow-steps/{flow_step}/routes?page=1\",\n    \"last\": \"https://api.example.com/api/v1/flow-steps/{flow_step}/routes?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"5fb7467b-1c31-4532-ac8c-18956fa2035d","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"37f67673-76ec-4a4f-99b8-bd115928dd20","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2eeccb37-87e9-41d3-8269-b4fe8e7ac836"},{"name":"Create Flow Step Route","id":"f04b633b-81dc-4e13-bb58-c454ccb4bfe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","description":"<p>Creates a new route (leg) on a Route or Branch flow step. Requires a <code>name</code>, and optionally accepts a <code>first_step_id</code> and <code>filter_logic_operator</code>. The <code>flow_step</code> identifier can be obtained from <code>GET /api/v1/flow-versions/{flow_version}/steps</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-steps",":flow_step","routes"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"64ef3558-bbea-429a-b0c9-f221704aa808","description":{"content":"<p>The flow step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_step"}]}},"response":[{"id":"0ee2012f-0408-442c-be72-2b5c1e084be4","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"first_step_id\": 1,\n    \"filter_logic_operator\": \"example_filter_logic_operator\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"flow_version_id\": 1,\n    \"name\": \"My Example\",\n    \"microservice\": {},\n    \"config\": {},\n    \"parent_id\": 1,\n    \"flow_version\": {},\n    \"children\": {},\n    \"endpoint\": {},\n    \"connector\": [],\n    \"data_pool\": [],\n    \"filters\": [],\n    \"parent_flow_step\": [],\n    \"routes\": [],\n    \"variables\": [],\n    \"script_version\": [],\n    \"cache\": [],\n    \"payloads\": [],\n    \"flow\": {},\n    \"cross_references\": \"example_cross_references\",\n    \"notes_count\": 5,\n    \"notification_group\": {},\n    \"order\": \"example_order\"\n  }\n}"},{"id":"a679fe5f-6d93-4b05-96ef-ae32a2b29cf3","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4af73f9a-e35b-4d79-9def-116ad88d343c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"050849b6-eb0f-41a4-b498-b1b08e9516e8","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"filter_logic_operator\": [\n      \"The filter logic operator must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"f04b633b-81dc-4e13-bb58-c454ccb4bfe5"},{"name":"Update Flow Step Route","id":"cee2ea70-4a41-4c85-a1e1-501f03bddd9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","description":"<p>Updates an existing route (leg) on a Route or Branch flow step. Accepts <code>name</code>, <code>first_step_id</code>, and <code>filter_logic_operator</code>. The <code>flow_step</code> identifier can be obtained from <code>GET /api/v1/flow-versions/{flow_version}/steps</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-steps",":flow_step","routes",":route"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"7b13b510-0f4c-46c7-848c-dee8d67a7d0b","description":{"content":"<p>The flow step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_step"},{"id":"57d2e9a3-e8eb-4acf-bfa6-6554f817a66a","description":{"content":"<p>The route identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"route"}]}},"response":[{"id":"a4d870da-9ace-4c8c-9131-72f4ce5a98e6","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes",":route"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."},{"key":"route","value":"string","description":"The route identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"first_step_id\": 1,\n    \"filter_logic_operator\": \"example_filter_logic_operator\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"flow_version_id\": 1,\n    \"name\": \"My Example\",\n    \"microservice\": {},\n    \"config\": {},\n    \"parent_id\": 1,\n    \"flow_version\": {},\n    \"children\": {},\n    \"endpoint\": {},\n    \"connector\": [],\n    \"data_pool\": [],\n    \"filters\": [],\n    \"parent_flow_step\": [],\n    \"routes\": [],\n    \"variables\": [],\n    \"script_version\": [],\n    \"cache\": [],\n    \"payloads\": [],\n    \"flow\": {},\n    \"cross_references\": \"example_cross_references\",\n    \"notes_count\": 5,\n    \"notification_group\": {},\n    \"order\": \"example_order\"\n  }\n}"},{"id":"48065c84-bc14-40bd-86af-571015365d4b","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes",":route"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."},{"key":"route","value":"string","description":"The route identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"83b14a03-b3af-43ed-8b0c-79f9695b3134","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes",":route"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."},{"key":"route","value":"string","description":"The route identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b437adaa-d423-4308-bc87-ebaa2fb6a80b","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"first_step_id\": \"string\",\n  \"filter_logic_operator\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes",":route"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."},{"key":"route","value":"string","description":"The route identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"filter_logic_operator\": [\n      \"The filter logic operator must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"cee2ea70-4a41-4c85-a1e1-501f03bddd9a"},{"name":"Delete Flow Step Route","id":"32742c2b-56e8-46d5-8b35-adba39f57443","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","description":"<p>Permanently deletes a specific route (leg) from a Route or Branch flow step. The <code>flow_step</code> identifier can be obtained from <code>GET /api/v1/flow-versions/{flow_version}/steps</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-steps",":flow_step","routes",":route"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"62446e73-154c-4094-95e1-0549ab097e55","description":{"content":"<p>The flow step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_step"},{"id":"8a5bc5c0-e95e-46cc-ba99-4bc5e83bfb2f","description":{"content":"<p>The route identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"route"}]}},"response":[{"id":"daaaa5c7-45c3-4eab-9f58-1852df568446","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes",":route"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."},{"key":"route","value":"string","description":"The route identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"fa585231-d807-4380-8379-549fcb3a8b39","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes",":route"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."},{"key":"route","value":"string","description":"The route identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7a2f0180-d2f3-40b9-9ba1-bbabbbbc793e","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flow_step/routes/:route","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flow_step","routes",":route"],"variable":[{"key":"flow_step","value":"string","description":"The flow step identifier."},{"key":"route","value":"string","description":"The route identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"32742c2b-56e8-46d5-8b35-adba39f57443"},{"name":"Order Flow Step Route","id":"81c91fbe-0e19-4990-8f1e-7211efaa4791","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-steps/:flowStep/routes/order","description":"<p>Updates the display order of routes (legs) on a Route or Branch flow step. The <code>flow_step</code> identifier can be obtained from <code>GET /api/v1/flow-versions/{flow_version}/steps</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-steps",":flowStep","routes","order"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f28596b1-b0e9-46be-a454-a29ca785f989","description":{"content":"<p>The flowStep identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flowStep"}]}},"response":[{"id":"59df5919-9b55-4f55-8b0e-07c81b090fca","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flowStep/routes/order","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flowStep","routes","order"],"variable":[{"key":"flowStep","value":"string","description":"The flowStep identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"150d4a53-9c4c-4eb1-afd5-bd584d617bae","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flowStep/routes/order","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flowStep","routes","order"],"variable":[{"key":"flowStep","value":"string","description":"The flowStep identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ffe616e4-cfcf-4cc3-86fb-603bc483a054","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flowStep/routes/order","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flowStep","routes","order"],"variable":[{"key":"flowStep","value":"string","description":"The flowStep identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6ecf3745-c6bd-492d-862c-68fcf71df3ae","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-steps/:flowStep/routes/order","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-steps",":flowStep","routes","order"],"variable":[{"key":"flowStep","value":"string","description":"The flowStep identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"81c91fbe-0e19-4990-8f1e-7211efaa4791"}],"id":"a1e27247-24a7-4c9e-8d6f-43442af351e9","_postman_id":"a1e27247-24a7-4c9e-8d6f-43442af351e9","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Templates","item":[{"name":"List Flow Templates","id":"70b827d4-3cfa-440d-942c-33e802f774bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates","description":"<p>Retrieves a paginated list of flow templates included in marketplace blueprints.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","flow-templates"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hidden_from_marketplace.</p>\n","type":"text/plain"},"key":"filter[hidden_from_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visible_for_marketplace.</p>\n","type":"text/plain"},"key":"filter[visible_for_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by blueprint_id.</p>\n","type":"text/plain"},"key":"filter[blueprint_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by marketplaceApps.</p>\n","type":"text/plain"},"key":"filter[marketplaceApps]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by marketplace_apps.blueprint_id.</p>\n","type":"text/plain"},"key":"filter[marketplace_apps.blueprint_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by blueprint_version_number.</p>\n","type":"text/plain"},"key":"filter[blueprint_version_number]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by marketplace_apps.version.</p>\n","type":"text/plain"},"key":"filter[marketplace_apps.version]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private.</p>\n","type":"text/plain"},"key":"filter[private]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visibility.</p>\n","type":"text/plain"},"key":"filter[visibility]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: systemTemplates.logo, flowStepTemplates, flowStepTemplates.children, flowStepTemplates.parentFlowStep, flowTemplateSchedules, marketplaceCompany, publicCompany, marketplaceApps</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"877815a3-d911-4ff8-b646-73a313c85e74","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by marketplaceApps.","key":"filter[marketplaceApps]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.blueprint_id.","key":"filter[marketplace_apps.blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.version.","key":"filter[marketplace_apps.version]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemTemplates.logo, flowStepTemplates, flowStepTemplates.children, flowStepTemplates.parentFlowStep, flowTemplateSchedules, marketplaceCompany, publicCompany, marketplaceApps","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/flow-templates\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/flow-templates?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/flow-templates?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"790ca0b7-e276-4058-bcf8-e2034d1c3ecf","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by marketplaceApps.","key":"filter[marketplaceApps]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.blueprint_id.","key":"filter[marketplace_apps.blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.version.","key":"filter[marketplace_apps.version]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemTemplates.logo, flowStepTemplates, flowStepTemplates.children, flowStepTemplates.parentFlowStep, flowTemplateSchedules, marketplaceCompany, publicCompany, marketplaceApps","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8b541d6f-8fd2-49fe-a392-b01665f62365","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by marketplaceApps.","key":"filter[marketplaceApps]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.blueprint_id.","key":"filter[marketplace_apps.blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.version.","key":"filter[marketplace_apps.version]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemTemplates.logo, flowStepTemplates, flowStepTemplates.children, flowStepTemplates.parentFlowStep, flowTemplateSchedules, marketplaceCompany, publicCompany, marketplaceApps","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"70b827d4-3cfa-440d-942c-33e802f774bf"},{"name":"Get Flow Template","id":"06793a52-7521-4870-af90-c6230cad2a64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template","description":"<p>Retrieves the details of a specific flow template included in a marketplace blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","flow-templates",":flow_template"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hidden_from_marketplace.</p>\n","type":"text/plain"},"key":"filter[hidden_from_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visible_for_marketplace.</p>\n","type":"text/plain"},"key":"filter[visible_for_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by blueprint_id.</p>\n","type":"text/plain"},"key":"filter[blueprint_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by marketplaceApps.</p>\n","type":"text/plain"},"key":"filter[marketplaceApps]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by marketplace_apps.blueprint_id.</p>\n","type":"text/plain"},"key":"filter[marketplace_apps.blueprint_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by blueprint_version_number.</p>\n","type":"text/plain"},"key":"filter[blueprint_version_number]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by marketplace_apps.version.</p>\n","type":"text/plain"},"key":"filter[marketplace_apps.version]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private.</p>\n","type":"text/plain"},"key":"filter[private]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visibility.</p>\n","type":"text/plain"},"key":"filter[visibility]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: systemTemplates.logo, flowStepTemplates, flowStepTemplates.children, flowStepTemplates.parentFlowStep, flowTemplateSchedules, marketplaceCompany, publicCompany, marketplaceApps</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"e0a9ea8f-153b-41eb-9333-031b0839cf8b","description":{"content":"<p>The flow template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_template"}]}},"response":[{"id":"85a1276a-ec6b-4a5c-a130-be668efaa6af","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by marketplaceApps.","key":"filter[marketplaceApps]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.blueprint_id.","key":"filter[marketplace_apps.blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.version.","key":"filter[marketplace_apps.version]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemTemplates.logo, flowStepTemplates, flowStepTemplates.children, flowStepTemplates.parentFlowStep, flowTemplateSchedules, marketplaceCompany, publicCompany, marketplaceApps","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"2970908c-13c9-4390-b941-b5b22e55c19b","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by marketplaceApps.","key":"filter[marketplaceApps]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.blueprint_id.","key":"filter[marketplace_apps.blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.version.","key":"filter[marketplace_apps.version]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemTemplates.logo, flowStepTemplates, flowStepTemplates.children, flowStepTemplates.parentFlowStep, flowTemplateSchedules, marketplaceCompany, publicCompany, marketplaceApps","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0f48cb9f-0e28-4899-b038-4889e26988e0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by marketplaceApps.","key":"filter[marketplaceApps]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.blueprint_id.","key":"filter[marketplace_apps.blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by marketplace_apps.version.","key":"filter[marketplace_apps.version]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemTemplates.logo, flowStepTemplates, flowStepTemplates.children, flowStepTemplates.parentFlowStep, flowTemplateSchedules, marketplaceCompany, publicCompany, marketplaceApps","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"06793a52-7521-4870-af90-c6230cad2a64"},{"name":"Delete Flow Template","id":"afd64edc-74bc-460e-b52d-55433b7b208d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template","description":"<p>Permanently deletes a specific flow template.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","flow-templates",":flow_template"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"cb96f931-269a-4775-9bcb-797caa7ef05b","description":{"content":"<p>The flow template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_template"}]}},"response":[{"id":"d5329ecb-0f16-4b7e-9c7c-481af266037c","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"c52abc81-132c-4695-ae8d-f5e10bb89401","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c1a9001f-0d9e-4b68-b954-66c2b457ad55","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"afd64edc-74bc-460e-b52d-55433b7b208d"},{"name":"List Flow Template Steps","id":"ec8bfd2e-0ef9-4095-91a8-b449c008dc40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template/steps","description":"<p>Retrieves a paginated list of steps for a specific flow template.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","flow-templates",":flow_template","steps"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"bebf6103-0b29-4f21-9907-9407aea51195","description":{"content":"<p>The flow template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_template"}]}},"response":[{"id":"1aaf7cfa-e1ce-45fb-abf6-8391cfa4c8a9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template","steps"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"colour\": \"blue\",\n      \"logo_url\": \"example_logo_url\",\n      \"version\": 1,\n      \"version_name\": \"example_version_name\",\n      \"rate_limit_unit\": \"second\",\n      \"rate_limit_duration\": 1,\n      \"system_type_id\": 1,\n      \"protocol\": \"HTTP\",\n      \"company_id\": 1,\n      \"date_format\": \"example_date_format\",\n      \"help_link\": \"example_help_link\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/flow-templates/{flow_template}/steps\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/flow-templates/{flow_template}/steps?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/flow-templates/{flow_template}/steps?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"e37916ca-9c95-4cc6-a70e-55375d150502","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template","steps"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a99c02d0-8d70-4896-b25b-d3b046f449ec","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/flow-templates/:flow_template/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","flow-templates",":flow_template","steps"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ec8bfd2e-0ef9-4095-91a8-b449c008dc40"},{"name":"Install Flow Template","id":"67f08761-223d-45c0-ab3f-599b0d9be391","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-templates/:flow_template/install","description":"<p>Installs a specific flow template from a marketplace blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-templates",":flow_template","install"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"38246fdf-09af-4b4f-85cc-c6aa19c77023","description":{"content":"<p>The flow template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_template"}]}},"response":[{"id":"197b7d21-2e91-49b9-952a-41a317f54832","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-templates/:flow_template/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-templates",":flow_template","install"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"6f9da01d-a625-4d23-9c67-790bbde79d12","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-templates/:flow_template/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-templates",":flow_template","install"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"27d36462-7b2d-4cd4-9bd4-56fa1338bf89","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-templates/:flow_template/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-templates",":flow_template","install"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a5e8d07b-58ed-4d93-83e0-61aea27ac6b0","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-templates/:flow_template/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-templates",":flow_template","install"],"variable":[{"key":"flow_template","value":"string","description":"The flow template identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"67f08761-223d-45c0-ab3f-599b0d9be391"}],"id":"68267a03-07ae-4b7c-a532-b2c1deb0e6ff","_postman_id":"68267a03-07ae-4b7c-a532-b2c1deb0e6ff","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Version Deployments","item":[{"name":"List Flow Version Deployments","id":"2258e688-5f24-4292-9e05-80496dc360a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-version-deployments","description":"<p>Retrieves a paginated list of all flow version deployments. Can be filtered by <code>package_id</code>, <code>virtual_environment_id</code>, <code>name</code>, and other criteria.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-version-deployments"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by package_id.</p>\n","type":"text/plain"},"key":"filter[package_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by virtual_environment_id.</p>\n","type":"text/plain"},"key":"filter[virtual_environment_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by global.</p>\n","type":"text/plain"},"key":"filter[global]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flowVersion.flow.</p>\n","type":"text/plain"},"key":"filter[flowVersion.flow]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by LIKE.</p>\n","type":"text/plain"},"key":"filter[LIKE]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: enabledBy, flowVersion, virtualEnvironment, package, user</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, enabled_at, flow_name, DESC, ASC, flow_versions, flow_version_deployments.flow_version_id, =, flow_versions.id, flows, flow_versions.flow_id, =, flows.id, flows.name, flow_version_iteration, DESC, ASC, flow_versions.id, (\n                            SELECT COUNT(*) \n                            FROM flow_versions fv2 \n                            WHERE fv2.flow_id = flow_versions.flow_id \n                            AND fv2.id &lt;= flow_versions.id\n                        ) AS iteration, flow_versions, flow_versions.id, flow_versions, flow_version_deployments.flow_version_id, =, flow_versions.id, iteration_calc, flow_versions.id, =, iteration_calc.id, iteration_calc.iteration</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"11b5bba1-f6ad-48ec-ab16-36c4f563a108","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments"],"query":[{"description":"Filter results by package_id.","key":"filter[package_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by global.","key":"filter[global]","value":"string","disabled":true},{"description":"Filter results by flowVersion.flow.","key":"filter[flowVersion.flow]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: enabledBy, flowVersion, virtualEnvironment, package, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, enabled_at, flow_name, DESC, ASC, flow_versions, flow_version_deployments.flow_version_id, =, flow_versions.id, flows, flow_versions.flow_id, =, flows.id, flows.name, flow_version_iteration, DESC, ASC, flow_versions.id, (\n                            SELECT COUNT(*) \n                            FROM flow_versions fv2 \n                            WHERE fv2.flow_id = flow_versions.flow_id \n                            AND fv2.id <= flow_versions.id\n                        ) AS iteration, flow_versions, flow_versions.id, flow_versions, flow_version_deployments.flow_version_id, =, flow_versions.id, iteration_calc, flow_versions.id, =, iteration_calc.id, iteration_calc.iteration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"flow_version_id\": 0,\n      \"flow_version\": {\n        \"id\": 0,\n        \"iteration\": 0,\n        \"deleted_at\": null,\n        \"flow\": {\n          \"id\": 0,\n          \"name\": \"string\",\n          \"deleted_at\": null\n        }\n      },\n      \"virtual_environment_id\": null,\n      \"enabled_by\": 0,\n      \"enabled_at\": \"string\",\n      \"package_id\": null,\n      \"user_id\": 0,\n      \"priority\": null,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 0,\n    \"from\": 0,\n    \"last_page\": 0,\n    \"path\": \"string\",\n    \"per_page\": 0,\n    \"to\": 0,\n    \"total\": 0\n  }\n}"},{"id":"5e3ced34-6eb6-4b26-82a6-2b09f863c618","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments"],"query":[{"description":"Filter results by package_id.","key":"filter[package_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by global.","key":"filter[global]","value":"string","disabled":true},{"description":"Filter results by flowVersion.flow.","key":"filter[flowVersion.flow]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: enabledBy, flowVersion, virtualEnvironment, package, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, enabled_at, flow_name, DESC, ASC, flow_versions, flow_version_deployments.flow_version_id, =, flow_versions.id, flows, flow_versions.flow_id, =, flows.id, flows.name, flow_version_iteration, DESC, ASC, flow_versions.id, (\n                            SELECT COUNT(*) \n                            FROM flow_versions fv2 \n                            WHERE fv2.flow_id = flow_versions.flow_id \n                            AND fv2.id <= flow_versions.id\n                        ) AS iteration, flow_versions, flow_versions.id, flow_versions, flow_version_deployments.flow_version_id, =, flow_versions.id, iteration_calc, flow_versions.id, =, iteration_calc.id, iteration_calc.iteration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f575fec3-19c2-4983-a5f3-16576d6a3efd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments"],"query":[{"description":"Filter results by package_id.","key":"filter[package_id]","value":"string","disabled":true},{"description":"Filter results by virtual_environment_id.","key":"filter[virtual_environment_id]","value":"string","disabled":true},{"description":"Filter results by global.","key":"filter[global]","value":"string","disabled":true},{"description":"Filter results by flowVersion.flow.","key":"filter[flowVersion.flow]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by LIKE.","key":"filter[LIKE]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: enabledBy, flowVersion, virtualEnvironment, package, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, enabled_at, flow_name, DESC, ASC, flow_versions, flow_version_deployments.flow_version_id, =, flow_versions.id, flows, flow_versions.flow_id, =, flows.id, flows.name, flow_version_iteration, DESC, ASC, flow_versions.id, (\n                            SELECT COUNT(*) \n                            FROM flow_versions fv2 \n                            WHERE fv2.flow_id = flow_versions.flow_id \n                            AND fv2.id <= flow_versions.id\n                        ) AS iteration, flow_versions, flow_versions.id, flow_versions, flow_version_deployments.flow_version_id, =, flow_versions.id, iteration_calc, flow_versions.id, =, iteration_calc.id, iteration_calc.iteration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2258e688-5f24-4292-9e05-80496dc360a3"},{"name":"List Flow Version Deployments","id":"21965986-5aa1-4931-99ab-b015786fba54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","description":"<p>Retrieves a paginated list of all deployments for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","deployments"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"2a429958-0bf7-43a9-9d3d-53b195fbe609","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"f4e0aec4-5071-4372-923c-a0d104d51f92","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"flow_version_id\": 0,\n      \"virtual_environment_id\": null,\n      \"priority\": 0,\n      \"deploy_disabled\": false,\n      \"enabled_at\": null,\n      \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n      \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://core.wearepatchworks.com/api/v1/flow-versions/6/deployments\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://core.wearepatchworks.com/api/v1/flow-versions/6/deployments?page=1\",\n    \"last\": \"https://core.wearepatchworks.com/api/v1/flow-versions/6/deployments?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"4f8b40df-eded-4fa3-9d58-b468ae155b89","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"26e7d343-1bd5-430a-8f92-634f58dd1d10","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"21965986-5aa1-4931-99ab-b015786fba54"},{"name":"Create Flow Version Deployment","id":"f471e08a-459e-4690-913a-75ef93ae0c16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","description":"<p>Creates a new deployment for a flow version. Accepts an optional virtual environment and priority level.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","deployments"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"3bd3ba47-d3fd-491e-a600-a103a00f6106","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"48d0a89c-9cd8-49ea-8414-96393e59c36d","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"virtual_environment_id\": null,\n    \"priority\": 0,\n    \"deploy_disabled\": false,\n    \"enabled_at\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"d2ca7ed4-b6c4-4029-82e9-d73f9d8236c0","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9198b98c-ca93-4c84-859e-d7b754c12f77","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"68f53793-eeac-4aa3-899d-4a84e40c64f8","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"flow_version_id\": [\n      \"The flow version id field is required.\"\n    ],\n    \"priority\": [\n      \"The priority must be an integer.\"\n    ]\n  }\n}"}],"_postman_id":"f471e08a-459e-4690-913a-75ef93ae0c16"},{"name":"Get Flow Version Deployment","id":"9861d8d4-e824-4b65-b828-a5df83b67651","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","description":"<p>Retrieves the details of a specific flow version deployment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b53a9dba-e571-4a2d-bc34-b973d2f8d638","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"a40e09e4-ec27-4447-a7aa-6a2a31f913a6","description":{"content":"<p>The deployment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"deployment"}]}},"response":[{"id":"c2be0623-264f-4e1e-a2b7-4afd065278ce","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"virtual_environment_id\": null,\n    \"priority\": 0,\n    \"deploy_disabled\": false,\n    \"enabled_at\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"37163d32-60ea-4b09-8222-864dfb2b3fa4","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"65ba7f37-0a9e-48cb-8023-4e71ea2e349f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9861d8d4-e824-4b65-b828-a5df83b67651"},{"name":"Update Flow Version Deployment","id":"2e28a674-ab4c-4ccd-9fa9-a479e1383adc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false,\n  \"enabled_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","description":"<p>Updates an existing deployment. Accepts a virtual environment, priority, and enabled timestamp.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b5c1a2d8-b385-4c69-a387-93eb35f60989","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"a9b1c810-5ac3-4051-9c55-51870380ca29","description":{"content":"<p>The deployment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"deployment"}]}},"response":[{"id":"e335e260-42bd-461c-b74a-1f9bca9b508f","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false,\n  \"enabled_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"virtual_environment_id\": null,\n    \"priority\": 0,\n    \"deploy_disabled\": false,\n    \"enabled_at\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"5da9aa0a-d724-4258-8254-582b6e34ebc3","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false,\n  \"enabled_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c60f2292-c524-4de7-9a39-0c87037b65b4","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false,\n  \"enabled_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b8509d10-3bda-4d2a-9799-eee388a71795","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"virtual_environment_id\": null,\n  \"priority\": 0,\n  \"deploy_disabled\": false,\n  \"enabled_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"priority\": [\n      \"The priority must be an integer.\"\n    ]\n  }\n}"}],"_postman_id":"2e28a674-ab4c-4ccd-9fa9-a479e1383adc"},{"name":"Delete Flow Version Deployment","id":"1bc29a04-cad6-4674-a5a8-7c39e84f03f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","description":"<p>Permanently deletes a specific flow version deployment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"93240ff8-659b-456b-9d94-818b5f71ab9f","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"742c6b7a-1b8d-4802-a124-2e6706349c5e","description":{"content":"<p>The deployment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"deployment"}]}},"response":[{"id":"dad26fe6-27fa-4633-abab-6ca98bc8e3c2","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"b0d04436-1e01-45b5-8cd4-002bf6446891","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ab1ef936-5d89-411f-bdca-30e7b58dd969","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1bc29a04-cad6-4674-a5a8-7c39e84f03f7"},{"name":"Enable Flow Version Deployment","id":"322bd3df-5b94-49e6-93fc-3b0ecc79b5b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/enable","description":"<p>Enables a specific flow version deployment, allowing it to process runs.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","enable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"19783f30-64ab-4e86-a490-54f311eefdd1","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"3b8c020d-c736-4504-8a96-2bded9cf7690","description":{"content":"<p>The deployment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"deployment"}]}},"response":[{"id":"8682d816-ede1-4904-b581-fe954d89cc0f","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/enable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","enable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"397b697a-663e-46ee-a129-7ee128c6c80f","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/enable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","enable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"61d5854a-d11a-47fc-9c9f-c9c02ebddd11","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/enable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","enable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"295b4cc4-f236-4028-bd00-00655cb2a682","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/enable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","enable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"322bd3df-5b94-49e6-93fc-3b0ecc79b5b1"},{"name":"Disable Flow Version Deployment","id":"6ead0225-1e8b-4f50-8605-9c396fe9b69f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/disable","description":"<p>Disables a specific flow version deployment, preventing it from processing runs.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","disable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"68891126-8352-4422-925e-980d5a72dbeb","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"f8e19b35-6f46-4b91-8e22-bf08b804b221","description":{"content":"<p>The deployment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"deployment"}]}},"response":[{"id":"519133fb-656b-4e09-9412-2ee837fd3a3f","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/disable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","disable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"5783d2e4-9d84-46c9-a22b-770982e317f5","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/disable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","disable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f544fb27-db8d-4985-bff7-f4a801ad7044","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/disable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","disable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"718cc69e-93cb-4cfa-8c44-c08a4bb1fd0d","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/deployments/:deployment/disable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","deployments",":deployment","disable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"deployment","value":"string","description":"The deployment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"6ead0225-1e8b-4f50-8605-9c396fe9b69f"}],"id":"f02b30ab-670e-49ea-82c6-b6ab823b95b6","_postman_id":"f02b30ab-670e-49ea-82c6-b6ab823b95b6","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Packages","item":[{"name":"Get Flow Version Deployment Package","id":"b40c7105-728a-424d-b84a-fb92a08c45a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-version-deployments/packages","description":"<p>Retrieves a paginated list of packages that have been deployed to at least one virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-version-deployments","packages"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"b9050a5e-6651-462a-937e-93f28c6de012","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments/packages","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments","packages"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c1db825e-8dca-4858-aa26-85c836c933b2","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments/packages","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments","packages"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"df92b0a8-09a9-401d-a626-8145adbab409","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments/packages","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments","packages"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b40c7105-728a-424d-b84a-fb92a08c45a1"},{"name":"List Packages","id":"1250b207-afd6-4018-a63c-ed0af7799883","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/packages","description":"<p>Retrieves a paginated list of packages.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"0fada8b3-7e51-480b-8bd9-0ef0c1d1bfe9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"My Example\",\n      \"notes\": \"example_notes\",\n      \"created_by\": \"example_created_by\",\n      \"priority\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"created_by_user\": [],\n      \"flow_versions\": [],\n      \"virtual_environments\": [],\n      \"deployments\": [],\n      \"flow_versions_count\": 5,\n      \"deployments_count\": 5,\n      \"flow_version_deployments_count\": 5\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/packages\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/packages?page=1\",\n    \"last\": \"https://api.example.com/api/v1/packages?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"7ee5b1a2-209a-41c7-b2b3-4958cff120e8","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"79f65a62-5d50-45a8-b39e-92213d7cfc43","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1250b207-afd6-4018-a63c-ed0af7799883"},{"name":"Create Package","id":"b2edf5cd-72c5-4366-ae35-83519ce1d888","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/packages","description":"<p>Creates a new package.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"158ef8db-4f52-4f1c-9834-e50309521c6f","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/packages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"notes\": \"example_notes\",\n    \"created_by\": \"example_created_by\",\n    \"priority\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_by_user\": [],\n    \"flow_versions\": [],\n    \"virtual_environments\": [],\n    \"deployments\": [],\n    \"flow_versions_count\": 5,\n    \"deployments_count\": 5,\n    \"flow_version_deployments_count\": 5\n  }\n}"},{"id":"3fd0be29-0466-40f8-b075-37ff35a3ac35","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/packages"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ec125c9b-38cc-4ce9-b369-ea60a1766e34","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/packages"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f00ff1f3-0472-44ed-bcb5-6f51b6fe28da","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/packages"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"notes\": [\n      \"The notes must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"b2edf5cd-72c5-4366-ae35-83519ce1d888"},{"name":"Get Package","id":"d3828e23-caa6-4896-a905-1ff28fb3dfd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/packages/:package","description":"<p>Retrieves the details of a specific package.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages",":package"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"21c29c61-30a6-4999-8b5c-d006a0b63503","description":{"content":"<p>The package identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"package"}]}},"response":[{"id":"fa8ad8ca-5559-4cce-83ad-438b70220ad9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"notes\": \"example_notes\",\n    \"created_by\": \"example_created_by\",\n    \"priority\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_by_user\": [],\n    \"flow_versions\": [],\n    \"virtual_environments\": [],\n    \"deployments\": [],\n    \"flow_versions_count\": 5,\n    \"deployments_count\": 5,\n    \"flow_version_deployments_count\": 5\n  }\n}"},{"id":"a0ce3d7d-aadd-4d05-aba5-72ea39bab5c3","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"abb345d3-360c-4520-84f4-5831bb6e09f7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: createdBy, flowVersions.deployments, virtualEnvironments, deployments.virtualEnvironment.deployedVersion, deployments.user, package, flowVersionDeployments, flowVersionDeployments, flowVersionDeployments","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d3828e23-caa6-4896-a905-1ff28fb3dfd9"},{"name":"Update Package","id":"a93ae0bb-4241-436f-b2c1-156d46d0fd05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/packages/:package","description":"<p>Updates an existing package.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages",":package"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"857a8418-f3c7-4c51-99bd-86941cf0259b","description":{"content":"<p>The package identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"package"}]}},"response":[{"id":"4773c45d-c944-43e7-92c6-69e7652d8783","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"notes\": \"example_notes\",\n    \"created_by\": \"example_created_by\",\n    \"priority\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_by_user\": [],\n    \"flow_versions\": [],\n    \"virtual_environments\": [],\n    \"deployments\": [],\n    \"flow_versions_count\": 5,\n    \"deployments_count\": 5,\n    \"flow_version_deployments_count\": 5\n  }\n}"},{"id":"d61b002a-be0d-4849-a90f-515164fe08c0","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d1f1870a-b288-4f5c-a324-6a62ead2bfe3","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8f499490-e429-490e-b8b8-2f844d477227","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"notes\": [\n      \"The notes must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"a93ae0bb-4241-436f-b2c1-156d46d0fd05"},{"name":"Delete Package","id":"b5d39181-470d-4343-bfc6-75a8c1b52a4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/packages/:package","description":"<p>Permanently deletes a specific package.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages",":package"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"efcb918f-0920-4888-8fcc-29131acc31de","description":{"content":"<p>The package identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"package"}]}},"response":[{"id":"d3fe4967-9a63-4cb3-a02f-f3a98d8b625d","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"c9130c53-bd1a-4ba8-9b84-e7df67c7da06","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cb055da0-12a3-4d46-acdc-a1da4af44b40","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package"],"variable":[{"key":"package","value":"string","description":"The package identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b5d39181-470d-4343-bfc6-75a8c1b52a4f"},{"name":"Compare Package","id":"340248e3-9214-4ac4-ba75-259226127fc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/packages/:package/compare/:virtual_environment","description":"<p>Compares a specific package against the current state of a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages",":package","compare",":virtual_environment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"abbe8111-0504-401d-a6af-10e0a19b2ba0","description":{"content":"<p>The package identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"package"},{"id":"b294de85-5f0c-44e0-9364-f89dedd54571","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"233c7d3b-f154-4917-948f-a6f3493c80bc","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/compare/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","compare",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"1dd6b225-62c9-4709-8b95-c67c27f2e53b","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/compare/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","compare",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"29665d2e-7255-48b3-ae71-69b6f0bcf1e7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/compare/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","compare",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"340248e3-9214-4ac4-ba75-259226127fc1"},{"name":"Deploy Package","id":"6fb99601-4728-408b-9e39-21e3532c81ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/packages/:package/deploy/:virtual_environment","description":"<p>Deploys a specific package to a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages",":package","deploy",":virtual_environment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"378871cc-574c-41f0-a853-25afff84a1c9","description":{"content":"<p>The package identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"package"},{"id":"9e2892a7-2fc4-41a4-8d2e-e40d6ee3523d","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"fe0a9334-b6ea-40e7-894a-453494e6234a","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/deploy/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","deploy",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"b5a37049-1066-4e73-87f4-d14b72a9eb1e","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/deploy/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","deploy",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"03e38584-b36f-4d3c-84ab-2644e2232499","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/deploy/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","deploy",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7a0d7ed5-ba73-402e-ae0f-ce886a657e1f","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/deploy/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","deploy",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"6fb99601-4728-408b-9e39-21e3532c81ec"},{"name":"Create Package","id":"00b6f6a3-dcb0-4d21-91b4-daab294fc85e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"priority\": 77\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","description":"<p>Adds a specific flow version to a specific package.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages",":package","flow-versions",":flow_version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b228e976-7ab6-46a9-ba77-6cb862326ac3","description":{"content":"<p>The package identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"package"},{"id":"69f6baa6-4dd4-4549-8140-00991440ed28","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"ab5ddc98-68b8-4960-b1d6-6f78dac9d489","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"priority\": 77\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","flow-versions",":flow_version"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"virtual_environment_id\": 1,\n    \"flow_version_id\": 1,\n    \"priority\": 1,\n    \"cron_string\": \"example_cron_string\",\n    \"microservice\": \"example_microservice\",\n    \"config\": \"example_config\",\n    \"flow_step_route_id\": 1,\n    \"variables\": \"example_variables\",\n    \"parent_id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"date_format\": \"example_date_format\",\n    \"secret\": \"example_secret\",\n    \"enabled_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"flow_id\": 1,\n    \"flow_name\": \"example_flow_name\",\n    \"flow_priority\": \"example_flow_priority\",\n    \"iteration\": \"example_iteration\",\n    \"status\": \"Draft\",\n    \"is_deployed\": true,\n    \"is_editable\": true,\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployed_by\": {},\n    \"deployed_by_user\": {},\n    \"deployments\": [],\n    \"has_callback_step\": [],\n    \"steps\": [],\n    \"runs\": \"example_runs\",\n    \"latest_run\": \"example_latest_run\",\n    \"schedules\": \"example_schedules\",\n    \"filters\": [],\n    \"steps_count\": 5,\n    \"pivot\": \"example_pivot\"\n  }\n}"},{"id":"b4085e1e-7889-4906-96b0-c3caee89a3b9","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"priority\": 77\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","flow-versions",":flow_version"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2e823125-3346-4822-abd5-f2523984c84c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"priority\": 77\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","flow-versions",":flow_version"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"840440e0-88a9-43e0-9e56-54a268c61fa2","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"priority\": 77\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","flow-versions",":flow_version"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"priority\": [\n      \"The priority must be an integer.\"\n    ]\n  }\n}"}],"_postman_id":"00b6f6a3-dcb0-4d21-91b4-daab294fc85e"},{"name":"Delete Package","id":"ac63f52b-8fd8-4ba6-9424-09b092e16b9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","description":"<p>Removes a specific flow version from a specific package.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages",":package","flow-versions",":flow_version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8c9f7d79-7967-4380-9012-d601bb4803ec","description":{"content":"<p>The package identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"package"},{"id":"18c942d1-264c-47c2-a069-c78eb469bffc","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"15586ea7-c94c-4b40-bec8-fda6afc75476","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","flow-versions",":flow_version"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"1bcbd013-f77e-4966-87bd-af3a07321dae","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","flow-versions",":flow_version"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"32563e84-a900-4ad6-ae35-aaf4dc52f9be","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/flow-versions/:flow_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","flow-versions",":flow_version"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ac63f52b-8fd8-4ba6-9424-09b092e16b9a"},{"name":"Delete Package Virtual Environment","id":"a4d1c28c-9000-407f-98a0-708971094987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/packages/:package/virtual-environments/:virtual_environment","description":"<p>Removes a specific virtual environment from a specific package.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","packages",":package","virtual-environments",":virtual_environment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"39e197cb-4dd1-466d-b1bf-cbc57a764fe1","description":{"content":"<p>The package identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"package"},{"id":"6a5545e5-8a5c-4ac0-926a-4d954146e838","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"6e1a89b2-ad0f-4df1-b0dd-76e13f0067de","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","virtual-environments",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"7b7852d8-2236-47b9-8233-b936a59a30bc","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","virtual-environments",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"735e067c-34a4-41bf-b478-9f971442185f","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/packages/:package/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","packages",":package","virtual-environments",":virtual_environment"],"variable":[{"key":"package","value":"string","description":"The package identifier."},{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a4d1c28c-9000-407f-98a0-708971094987"}],"id":"fc09d185-1374-4fd4-9010-900f1e942af9","_postman_id":"fc09d185-1374-4fd4-9010-900f1e942af9","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Virtual Environments","item":[{"name":"Get Virtual Environments","id":"478015eb-b6a3-4dc9-8d43-875f3dcc71f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-version-deployments/virtual-environments","description":"<p>Retrieves a list of virtual environments that have at least one flow version deployment. Can be filtered by <code>name</code>, <code>type</code>, <code>status</code>, <code>hasDeployedVersion</code>, and <code>labelled</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-version-deployments","virtual-environments"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by status.</p>\n","type":"text/plain"},"key":"filter[status]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hasDeployedVersion.</p>\n","type":"text/plain"},"key":"filter[hasDeployedVersion]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"d808e36a-e30d-43c8-914d-579a4e5cd9bc","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments/virtual-environments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments","virtual-environments"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"deleted_at\": null\n    }\n  ]\n}"},{"id":"f374739a-d075-4093-85f1-2bf7ef1d60b9","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments/virtual-environments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments","virtual-environments"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b1913226-7d12-4349-b627-52a1508cb69e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-version-deployments/virtual-environments","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-version-deployments","virtual-environments"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"478015eb-b6a3-4dc9-8d43-875f3dcc71f7"},{"name":"List Virtual Environments","id":"cd888ca8-eb49-4bcd-b6fe-66e4e4d691cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments","description":"<p>Retrieves a paginated list of virtual environments.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by status.</p>\n","type":"text/plain"},"key":"filter[status]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hasDeployedVersion.</p>\n","type":"text/plain"},"key":"filter[hasDeployedVersion]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"879581ac-f45d-462c-8663-3bfcbfe7fa2b","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"type\": \"string\",\n      \"flows\": [],\n      \"is_deployed\": true,\n      \"created_at\": \"string\"\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 0,\n    \"from\": 0,\n    \"last_page\": 0,\n    \"links\": [],\n    \"path\": \"string\",\n    \"per_page\": 0,\n    \"to\": 0,\n    \"total\": 0\n  }\n}"},{"id":"642cfc3d-2e06-421c-a850-8ac7bb9fc77b","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"005ecb39-4d5f-4461-9912-74f1a529cc42","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cd888ca8-eb49-4bcd-b6fe-66e4e4d691cc"},{"name":"Create Virtual Environment","id":"fea09491-1ff2-4f81-ba43-2b828d8ea6ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environments","description":"<p>Creates a new virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"9da85a2d-83c6-4bd9-9ba4-06408ff48dc7","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"notes\": \"example_notes\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"type\": \"example_type\",\n    \"deployments\": [],\n    \"versions\": [],\n    \"versions_count\": 5,\n    \"first_version\": \"example_first_version\",\n    \"deployed_version\": \"example_deployed_version\",\n    \"flows\": \"example_flows\",\n    \"is_deployed\": true,\n    \"deployments_count\": 5,\n    \"pivot\": [],\n    \"package_deployments\": [],\n    \"labels\": []\n  }\n}"},{"id":"a3d0383f-8ca2-463c-bd2f-09fbfbdb7dcd","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environments"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9041b044-5516-4401-8df4-820bedfce88f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environments"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3fe03e4f-a692-4c2d-803d-8cb8e480a5cd","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environments"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"description\": [\n      \"The description must be a string.\"\n    ],\n    \"labels.*.id\": [\n      \"The labels * id field is required.\"\n    ]\n  }\n}"}],"_postman_id":"fea09491-1ff2-4f81-ba43-2b828d8ea6ea"},{"name":"Get Virtual Environment","id":"dc990455-c704-4306-8303-b3249e2fbc7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","description":"<p>Retrieves the details of a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by status.</p>\n","type":"text/plain"},"key":"filter[status]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hasDeployedVersion.</p>\n","type":"text/plain"},"key":"filter[hasDeployedVersion]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"5397c235-8f55-4a3c-a542-5b7824547a77","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"67aa9f71-02ca-46e2-ad0b-3341d66c2784","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"type\": \"string\",\n    \"flows\": [],\n    \"is_deployed\": false,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"de7308a5-4945-4756-8237-f6cfb4a3d06c","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bafd0f9d-8d4e-4620-8729-7221a377d0f5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by hasDeployedVersion.","key":"filter[hasDeployedVersion]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, firstVersion, firstVersion.user, deployments, deployedVersion.variables, deployments.flowVersion, deployments.flowVersion.flow, deployments.enabledBy, deployments.user, deployments.package, packageDeployments.user, packageDeployments.package, labels","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"dc990455-c704-4306-8303-b3249e2fbc7b"},{"name":"Update Virtual Environment","id":"5965a0be-e5c7-47cf-8650-7f34af26e7a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","description":"<p>Updates an existing virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"2e3343b7-7a14-4026-8d46-213947a029b0","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"e4c27c34-f6c4-4b56-8a6b-415cbf52c07d","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"notes\": \"example_notes\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"type\": \"example_type\",\n    \"deployments\": [],\n    \"versions\": [],\n    \"versions_count\": 5,\n    \"first_version\": \"example_first_version\",\n    \"deployed_version\": \"example_deployed_version\",\n    \"flows\": \"example_flows\",\n    \"is_deployed\": true,\n    \"deployments_count\": 5,\n    \"pivot\": [],\n    \"package_deployments\": [],\n    \"labels\": []\n  }\n}"},{"id":"f810b806-6c72-42e5-b013-30271cfcbc51","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2060f471-a881-4324-b653-c16738088069","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"18cdbbe2-b6ab-414a-bd4c-243418d41320","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"description\": [\n      \"The description must be a string.\"\n    ],\n    \"labels.*.id\": [\n      \"The labels * id field is required.\"\n    ]\n  }\n}"}],"_postman_id":"5965a0be-e5c7-47cf-8650-7f34af26e7a5"},{"name":"Delete Virtual Environment","id":"fb2dece4-8d4d-4b86-816c-3c111e7eb19f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","description":"<p>Permanently deletes a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"0087d0b6-6b9a-4877-aadf-f9529a1c334e","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"ded3d8f3-3f25-4054-8854-8dfaeb489e7f","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"8b9865dd-57e6-411e-8c1e-1af2799f6e39","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"611be16e-ad95-488a-afb4-c5c14439c302","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fb2dece4-8d4d-4b86-816c-3c111e7eb19f"},{"name":"Copy Virtual Environment","id":"4794e8ef-703f-48fa-8059-577711f6a859","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/copy","description":"<p>Creates a copy of a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment","copy"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"631e03f0-73dd-47c5-a251-902535d7a0ff","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"45a728b5-f0e5-4724-a697-6452f72bcc49","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","copy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"96588e51-11f8-4623-8a45-d3398ee5f15f","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","copy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e916952a-5c9d-406f-ae61-003361b50d1d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","copy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"dea525ae-e7d5-4d30-a062-84fbfa80f0f9","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","copy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"4794e8ef-703f-48fa-8059-577711f6a859"},{"name":"List Virtual Environment Versions","id":"f148672f-1f55-41f4-8062-ae13a1b34ffb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","description":"<p>Retrieves a paginated list of versions for a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment","versions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"62b1e89f-e9c8-4e5f-8f91-deda4d7412f0","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"2a18d44a-7318-4dec-937b-07dd0c961658","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"version\": 0,\n      \"virtual_environment_id\": 0,\n      \"status\": \"string\",\n      \"deployed_at\": null,\n      \"notes\": null,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"user_id\": 0\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  }\n}"},{"id":"3440776a-e2c1-4544-8f2c-252af0b3ab87","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"25d9e4e2-150b-4b84-a41a-240570c8afde","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f148672f-1f55-41f4-8062-ae13a1b34ffb"},{"name":"Create Virtual Environment Version","id":"de50af00-2044-4a14-9bc3-f2a9f6c754b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","description":"<p>Creates a new version for a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment","versions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1544fc35-f357-4c68-a9d5-14b908bd9c7a","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"}]}},"response":[{"id":"e1dff2a4-ec7a-4a2c-b961-7529bbb8942c","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"notes\": \"example_notes\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"type\": \"example_type\",\n    \"deployments\": [],\n    \"versions\": [],\n    \"versions_count\": 5,\n    \"first_version\": \"example_first_version\",\n    \"deployed_version\": \"example_deployed_version\",\n    \"flows\": \"example_flows\",\n    \"is_deployed\": true,\n    \"deployments_count\": 5,\n    \"pivot\": [],\n    \"package_deployments\": [],\n    \"labels\": []\n  }\n}"},{"id":"83364aa5-0e6f-4fd8-826d-371317de2288","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3884d97e-7603-4aa0-a32f-7a0734c85757","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b47dcfca-bc79-4212-98b7-6e92967e87a0","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"de50af00-2044-4a14-9bc3-f2a9f6c754b2"},{"name":"Get Virtual Environment Version","id":"a51edf89-1ab8-4e47-9e5f-e75e9b598f2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","description":"<p>Retrieves the details of a specific version for a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f31d2bf1-82a8-476d-9659-fe23570eec28","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"},{"id":"088a734c-da19-476e-8613-c52ec47a7974","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"7ad54539-0c40-4deb-b7d0-219416312fb4","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"version\": 0,\n    \"virtual_environment_id\": 0,\n    \"status\": \"string\",\n    \"deployed_at\": null,\n    \"notes\": null,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"user_id\": 0\n  }\n}"},{"id":"69ccade8-834e-4705-b209-18d7386f181f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4e5ba308-e9b3-43c0-ac26-60a8e0f3e776","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a51edf89-1ab8-4e47-9e5f-e75e9b598f2c"},{"name":"Update Virtual Environment Version","id":"b252d23b-a0bf-4e80-bc87-d084ada5abf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","description":"<p>Updates an existing version for a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b819b726-bbc3-437b-9345-e5e764bf7963","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"},{"id":"372009cf-f85d-4ff2-ab41-1d4e68801fac","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"5702e2af-e914-4ba9-97b0-0ad4f385637a","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"notes\": \"example_notes\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\",\n    \"description\": \"A description of the resource\",\n    \"type\": \"example_type\",\n    \"deployments\": [],\n    \"versions\": [],\n    \"versions_count\": 5,\n    \"first_version\": \"example_first_version\",\n    \"deployed_version\": \"example_deployed_version\",\n    \"flows\": \"example_flows\",\n    \"is_deployed\": true,\n    \"deployments_count\": 5,\n    \"pivot\": [],\n    \"package_deployments\": [],\n    \"labels\": []\n  }\n}"},{"id":"584b34bf-3e6d-4ae6-b7b2-67fd341440ce","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9ae64e79-ff55-48d6-be47-af228445c4f2","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5194fc91-9ead-43e9-ba96-cfe82c16f87d","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"b252d23b-a0bf-4e80-bc87-d084ada5abf6"},{"name":"Delete Virtual Environment Version","id":"eb2997d6-61cd-4646-b0ad-3b2e8bef639b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","description":"<p>Permanently deletes a specific version for a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a96a6ce6-942e-450c-9793-629ed15be03a","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"},{"id":"524f78a3-6872-4f80-a74f-5ff022821079","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"24a8c2d1-a99a-4632-9e97-b09a986590ea","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"04b72d38-d097-481d-b008-04875d33eb70","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5010c280-2021-40f1-a8e1-90f5f22fc23e","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eb2997d6-61cd-4646-b0ad-3b2e8bef639b"},{"name":"Copy Virtual Environment Version","id":"2482d826-2a69-4e08-85b7-33f6d250d796","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/copy","description":"<p>Creates a copy of a specific version for a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","copy"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a057b520-167e-4519-9165-78df3fc3df39","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"},{"id":"4928df1c-a47f-478b-bf4b-70fb4ed33f5c","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"8f759d60-83e2-47bb-91de-4bbda964a490","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","copy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"20c170fa-6fdf-4745-a4cd-6cc9162ff139","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","copy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"424e1d7d-9eb5-47a2-99be-5d91f652836a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","copy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d53c2db7-7a00-47cc-80e7-a7eddf334482","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","copy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"2482d826-2a69-4e08-85b7-33f6d250d796"},{"name":"Deploy Virtual Environment Version","id":"f003c6b8-347c-4645-b57c-a32605422d1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/deploy","description":"<p>Deploys a specific version of a specific virtual environment.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","deploy"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"fd71c741-dac7-4996-95aa-8e4aad7c1a7b","description":{"content":"<p>The virtual environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment"},{"id":"42da606c-85df-4507-9737-bfa3d4777f19","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"f9116f65-0f4d-4772-859f-13b420e2ad40","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","deploy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"b3cbf612-1978-4448-94c6-db22bca07959","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","deploy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"17d4047b-1503-4526-8dd8-61ef8674246a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","deploy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"939a4344-bfaf-43ee-9ecb-98da4dabdab4","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environments/:virtual_environment/versions/:version/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environments",":virtual_environment","versions",":version","deploy"],"variable":[{"key":"virtual_environment","value":"string","description":"The virtual environment identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"f003c6b8-347c-4645-b57c-a32605422d1f"}],"id":"28d04ffa-6890-4345-8bd9-6a18a716ca42","_postman_id":"28d04ffa-6890-4345-8bd9-6a18a716ca42","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Versions","item":[{"name":"List Flow Versions","id":"767ab99a-90c1-4f56-a466-e981e2013846","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","description":"<p>Retrieves a paginated list of all versions for a specific flow.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","versions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"3fd04fde-3888-418a-b04b-24c16b0f254b","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"b3c5b6f0-de68-4efb-9ad9-6fa62bc0058f","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"flow_id\": 0,\n      \"flow_name\": \"string\",\n      \"flow_priority\": 0,\n      \"iteration\": 0,\n      \"status\": \"Draft\",\n      \"is_deployed\": false,\n      \"is_editable\": true,\n      \"deployed_at\": null,\n      \"deployed_by\": null,\n      \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n      \"updated_at\": \"2024-01-01T00:00:00.000000Z\",\n      \"has_callback_step\": false,\n      \"latest_run\": null,\n      \"steps\": [],\n      \"schedules\": []\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://core.wearepatchworks.com/api/v1/flows/4/versions\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://core.wearepatchworks.com/api/v1/flows/4/versions?page=1\",\n    \"last\": \"https://core.wearepatchworks.com/api/v1/flows/4/versions?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"43b0dff1-26e3-42b7-879f-c1dc4df25deb","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ce1bf583-d797-4b37-aa8b-039d7463c6a6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"767ab99a-90c1-4f56-a466-e981e2013846"},{"name":"Create Flow Version","id":"30148bd2-8a09-41c5-af96-87e987bab9b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","description":"<p>Creates a new draft version of a flow. Intended for use when a flow has no existing versions.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","versions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d1a53a91-37ad-4455-807e-6e2808611b65","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"8a3efc14-8ded-46c8-96f1-e1400e005cf1","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_id\": 0,\n    \"flow_name\": \"string\",\n    \"flow_priority\": 0,\n    \"iteration\": 0,\n    \"status\": \"Draft\",\n    \"is_deployed\": false,\n    \"is_editable\": true,\n    \"deployed_at\": null,\n    \"deployed_by\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"has_callback_step\": false,\n    \"latest_run\": null,\n    \"steps\": [],\n    \"schedules\": []\n  }\n}"},{"id":"2c2a9fb6-9c58-4254-926c-206547727c56","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6d4bb793-29b1-444d-acbf-ceae0a5028a1","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5dd61960-8c62-4234-82d3-ae231ab69d23","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"30148bd2-8a09-41c5-af96-87e987bab9b4"},{"name":"Get Flow Version","id":"fe4a4977-7d43-410b-a913-97b960573ffd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","description":"<p>Retrieves the details of a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","versions",":version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"ffc79563-b179-4383-be69-ad358a4f9471","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"},{"id":"748dc0d5-24ad-4d33-8b78-74985f6df191","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"72221092-8272-4d93-b965-cab67d0a6557","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_id\": 0,\n    \"flow_name\": \"string\",\n    \"flow_priority\": 0,\n    \"iteration\": 0,\n    \"status\": \"Draft\",\n    \"is_deployed\": false,\n    \"is_editable\": true,\n    \"deployed_at\": null,\n    \"deployed_by\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"has_callback_step\": false,\n    \"latest_run\": null,\n    \"steps\": [],\n    \"schedules\": []\n  }\n}"},{"id":"9295fc16-7288-4307-b98b-919ae5dc8fdd","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7a204a94-70fd-4aeb-9579-64089420a85f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fe4a4977-7d43-410b-a913-97b960573ffd"},{"name":"Update Flow Version","id":"1bf23143-64be-4860-a2a3-ce10ebfb1538","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","description":"<p>Updates an existing flow version. Accepts a <code>deployed_at</code> timestamp.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","versions",":version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"29c5dc3b-c10a-452e-b4b3-8bf32868e144","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"},{"id":"7f867b29-36e8-4cb1-91a7-00627ec80d9d","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"aee270b4-f4e7-48cc-a89f-2a04260eeae0","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_id\": 0,\n    \"flow_name\": \"string\",\n    \"flow_priority\": 0,\n    \"iteration\": 0,\n    \"status\": \"Draft\",\n    \"is_deployed\": false,\n    \"is_editable\": true,\n    \"deployed_at\": null,\n    \"deployed_by\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"has_callback_step\": false,\n    \"latest_run\": null,\n    \"steps\": [],\n    \"schedules\": []\n  }\n}"},{"id":"1bc4f9c0-326f-47ce-b1b0-72f97c56f9de","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a9acf548-5d4c-46ff-a8b8-621314e4d509","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3792d438-4214-49b1-8fa8-e8c35f4d1a30","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"1bf23143-64be-4860-a2a3-ce10ebfb1538"},{"name":"Delete Flow Version","id":"2bad1c11-910b-4f48-86d4-dec0d41bc344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","description":"<p>Permanently deletes a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","versions",":version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f169a5dc-981f-4e06-80ee-5d95630685d4","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"},{"id":"2a3e2b80-0eff-477a-88a9-0ffd085986be","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"f783ed20-63b3-4e4c-9659-5a6810d9130e","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2ce3494a-1642-4f01-9ba0-f23d30f45e76","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ac0c6ef4-2206-433a-88d9-4e377f2085fc","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2bad1c11-910b-4f48-86d4-dec0d41bc344"},{"name":"Copy Flow Version","id":"e9c10671-0fa1-4014-b409-2185f774981a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version/copy","description":"<p>Copies an existing deployed flow version into a new draft version. Any existing draft for that flow is overwritten.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","versions",":version","copy"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1fc4db28-c3d2-4303-b502-a6881c2c9033","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"},{"id":"ec1cfc83-68b7-451c-9948-d9983a75fe2a","description":{"content":"<p>The version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version"}]}},"response":[{"id":"7e2d5ba0-520a-4b48-8d31-9b518035bcd4","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version","copy"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_id\": 0,\n    \"flow_name\": \"string\",\n    \"flow_priority\": 0,\n    \"iteration\": 0,\n    \"status\": \"Draft\",\n    \"is_deployed\": false,\n    \"is_editable\": true,\n    \"deployed_at\": null,\n    \"deployed_by\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"has_callback_step\": false,\n    \"latest_run\": null,\n    \"steps\": [],\n    \"schedules\": []\n  }\n}"},{"id":"38fd1c2f-88d8-4fdf-950d-f09cc9b4d270","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version","copy"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cd39e919-3487-4ef5-b32a-d42f2e1bef79","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version","copy"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8c460bf4-a930-4889-829d-8eb3b5765e63","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/versions/:version/copy","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","versions",":version","copy"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"version","value":"string","description":"The version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"e9c10671-0fa1-4014-b409-2185f774981a"},{"name":"Upload Flow Version","id":"f57121eb-b341-4c6c-a806-3b9ba5052c1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/upload","description":"<p>Uploads a given flow version to your <code>private</code> marketplace.</p>\n<p>This operation requires <code>administrator</code> permissions. If you are authorising requests with an API key, this request won't work (company-level API keys are associated with manager-level permissions). If you are an <code>administrator</code>, you can use OAuth 2 credentials to complete this operation. For more information please see our <a href=\"https://doc.wearepatchworks.com/product-documentation/api-reference/getting-started/authentication#oauth-2-client-credentials\">Authentication</a> section.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","upload"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a68f5965-23d8-442a-831d-da822cf20a69","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"50930f45-f585-4458-ada6-90b92649fef6","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","upload"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"36566c4d-cf91-4b30-9597-92f8ca6f5409","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","upload"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b80b8c79-47d4-4e1d-b8ca-d81a7deaf5e0","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","upload"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"28e52937-2204-40df-a911-8e0597d6d0e4","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","upload"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"f57121eb-b341-4c6c-a806-3b9ba5052c1c"},{"name":"List Flow Version Metrics","id":"fff6a26b-23ac-47c0-a4b7-285afb02866f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/version-metrics","description":"<p>Retrieves paginated metrics for a flow's versions. Results can be filtered by time interval, metric type, and key.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","version-metrics"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"df262bd9-4a36-42cf-8eb5-7cdce8932799","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"44d31969-df71-4322-b331-227cfb4b9f3e","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/version-metrics","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","version-metrics"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"flow_version_id\": 0,\n      \"metric\": \"string\",\n      \"key\": \"string\",\n      \"value\": 0,\n      \"recorded_at\": \"2024-01-01T00:00:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://core.wearepatchworks.com/api/v1/flows/4/version-metrics\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://core.wearepatchworks.com/api/v1/flows/4/version-metrics?page=1\",\n    \"last\": \"https://core.wearepatchworks.com/api/v1/flows/4/version-metrics?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"10139ae6-fc64-47e8-9531-96cee1725636","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/version-metrics","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","version-metrics"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fb3cd9fd-2144-4cc7-b32f-53a17e06df88","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/version-metrics","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","version-metrics"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fff6a26b-23ac-47c0-a4b7-285afb02866f"},{"name":"List Flow Version Schedules","id":"80e19048-6023-4d6b-906c-49cfc4114b24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","description":"<p>Retrieves a paginated list of all schedules for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","schedules"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8b2bb80d-af35-4fa1-9135-9a82a9b90bdb","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"71447e50-0584-42ab-9496-54db8b34a42d","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"flow_version_id\": 0,\n      \"cron_string\": \"string\",\n      \"flow_template_schedule_id\": null,\n      \"deleted_at\": null,\n      \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n      \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://core.wearepatchworks.com/api/v1/flow-versions/6/schedules\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://core.wearepatchworks.com/api/v1/flow-versions/6/schedules?page=1\",\n    \"last\": \"https://core.wearepatchworks.com/api/v1/flow-versions/6/schedules?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"ada7fb1c-5ec8-4ce7-a103-dee52acbb391","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0658ad1b-3597-401b-9b64-2a3305a630da","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"80e19048-6023-4d6b-906c-49cfc4114b24"},{"name":"Create Flow Version Schedule","id":"7bd83be1-aecc-496b-a100-70b2cd540911","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","description":"<p>Creates a new schedule for a flow version using a <code>cron_string</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","schedules"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8d329667-4924-4710-b594-28f78035ddfd","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"56cfc70f-3e3a-42d9-a58e-84d3fe357c6f","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"cron_string\": \"string\",\n    \"flow_template_schedule_id\": null,\n    \"deleted_at\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"14656e45-912f-4fa6-a252-793e376d4ce4","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a6972827-b00c-4a1f-b64e-095037b0f4c8","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"363fcf19-6846-47a4-a584-f90692f9c88b","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"7bd83be1-aecc-496b-a100-70b2cd540911"},{"name":"Update Flow Version Schedule","id":"ddbf2128-0b70-48f2-8869-7d935464825e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","description":"<p>Updates the <code>cron_string</code> for an existing flow version schedule.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f2dad22a-9e59-403c-a8ff-0f891f8f2d63","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"f26aaabf-2393-4612-8029-fa71fc6b9553","description":{"content":"<p>The schedule identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"schedule"}]}},"response":[{"id":"e3229eaf-b228-4af2-8de7-4fc392e76acc","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"schedule","value":"string","description":"The schedule identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"cron_string\": \"string\",\n    \"flow_template_schedule_id\": null,\n    \"deleted_at\": null,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"58c32de1-55b3-4d59-9e16-c884bc625b26","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"schedule","value":"string","description":"The schedule identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6370fb83-df60-47ef-91ba-fcaa272ef14a","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"schedule","value":"string","description":"The schedule identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bf9f1972-cb0a-4eb8-8889-32203cb757ae","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"cron_string\": \"string\",\n  \"deployed_at\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"schedule","value":"string","description":"The schedule identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"ddbf2128-0b70-48f2-8869-7d935464825e"},{"name":"Delete Flow Version Schedule","id":"c95eeb36-33a4-4edc-95af-c2f1fcb9b2be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","description":"<p>Permanently deletes a specific flow version schedule.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"78223080-ded5-4acb-87ae-3e70c2e7a460","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"91e6cd4c-7bbe-413c-8c24-4df8c02e8566","description":{"content":"<p>The schedule identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"schedule"}]}},"response":[{"id":"90c00356-a3dd-4020-b2e4-22402c4d271e","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"schedule","value":"string","description":"The schedule identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"3c0695a9-d641-4d02-a377-f9a8a29d8cee","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"schedule","value":"string","description":"The schedule identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"03a20692-1a42-4a85-8e76-c2362891be66","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/schedules/:schedule","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","schedules",":schedule"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"schedule","value":"string","description":"The schedule identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c95eeb36-33a4-4edc-95af-c2f1fcb9b2be"}],"id":"46921629-5422-418e-970a-dee6305777b9","_postman_id":"46921629-5422-418e-970a-dee6305777b9","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Version Steps","item":[{"name":"List Flow Version Steps","id":"2947c3dd-8e7c-4ac1-9034-98337a758d47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","description":"<p>Retrieves a paginated list of all steps for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","steps"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1c5567b4-7b73-4e13-8bc1-99a96f5d7e1c","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"543e9085-0dc4-461e-b5af-091917255e6d","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"flow_version_id\": 0,\n      \"name\": \"string\",\n      \"microservice\": \"string\",\n      \"config\": {},\n      \"parent_id\": null,\n      \"parent_flow_step\": null,\n      \"notification_group\": null,\n      \"order\": 0\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://core.wearepatchworks.com/api/v1/flow-versions/29/steps\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://core.wearepatchworks.com/api/v1/flow-versions/29/steps?page=1\",\n    \"last\": \"https://core.wearepatchworks.com/api/v1/flow-versions/29/steps?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"a61737f7-8ba6-4254-a35f-d985ff569d07","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"840e5943-88da-429d-83d6-353fb26d62cb","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2947c3dd-8e7c-4ac1-9034-98337a758d47"},{"name":"Create Flow Version Step","id":"d00532f2-cb05-4ed8-ac67-f89b6ce7d48f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","description":"<p>Creates a new step for a flow version. Requires a <code>name</code> and <code>microservice</code>, and optionally accepts configuration, a parent step, and variables.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","steps"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1f180a47-944e-4a4d-b7fa-d37115ebae09","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"5a7e41a3-fd5b-432a-89b7-dda07f02d1b7","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"name\": \"string\",\n    \"microservice\": \"string\",\n    \"config\": {},\n    \"parent_id\": null,\n    \"parent_flow_step\": null,\n    \"notification_group\": null,\n    \"order\": 0\n  }\n}"},{"id":"419cc849-141d-4916-bbd1-d53c506214dc","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"223d666c-6fcf-471c-a79b-698fb7d70667","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cd17a222-02a4-4c44-874a-2e31c0601db2","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": 0,\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"d00532f2-cb05-4ed8-ac67-f89b6ce7d48f"},{"name":"Get Flow Version Step","id":"ddce1fd0-522e-4fed-b710-d38ed94e55b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","description":"<p>Retrieves the details of a specific step for a flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","steps",":step"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f6fa04b4-c792-44f2-addb-600f1d861ff6","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"d978520e-7da7-41b1-8327-38b15e766f5f","description":{"content":"<p>The step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"step"}]}},"response":[{"id":"1c610b98-db1f-43e3-b75d-043af8d4a3bc","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"name\": \"string\",\n    \"microservice\": \"string\",\n    \"config\": {},\n    \"parent_id\": null,\n    \"parent_flow_step\": null,\n    \"notification_group\": null,\n    \"order\": 0\n  }\n}"},{"id":"5616b33f-36cd-43b3-9087-ab5dc3d9d23b","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cb606066-a49f-47fe-b359-eb444b6b42a0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ddce1fd0-522e-4fed-b710-d38ed94e55b8"},{"name":"Update Flow Version Step","id":"78a99dce-da82-4b28-a720-cb93b56f84ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","description":"<p>Updates an existing step. Accepts <code>name</code>, <code>microservice</code>, configuration, parent step, and variable changes.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","steps",":step"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"5d77453e-7baf-4571-88b2-2c00879aa81b","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"09e0e224-83e9-45c2-a1da-2b79583606be","description":{"content":"<p>The step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"step"}]}},"response":[{"id":"6815131d-c956-4b25-9ecb-637f0feb9efb","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"name\": \"string\",\n    \"microservice\": \"string\",\n    \"config\": {},\n    \"parent_id\": null,\n    \"parent_flow_step\": null,\n    \"notification_group\": null,\n    \"order\": 0\n  }\n}"},{"id":"400dc0e2-a088-4006-a1d9-9f9091406915","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fca9272c-f943-4b5a-9a93-1f69bdc00f10","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b1d4a53f-2f74-44b0-b8cd-56b321160ac8","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"parent_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"78a99dce-da82-4b28-a720-cb93b56f84ea"},{"name":"Delete Flow Version Step","id":"19644506-958c-48df-a588-6488ca12fd80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","description":"<p>Permanently deletes a specific step from a flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","steps",":step"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"64c4cdd4-7a8f-47eb-acb0-7c9b68cb8b52","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"db724e8c-c49c-49e7-8b7f-ea63e9e31dd3","description":{"content":"<p>The step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"step"}]}},"response":[{"id":"7fe0d781-6b87-467a-a871-b1bfd72f0bf9","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"14f5912d-1ad9-4870-ae5a-e782f3eeb640","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"28ec837a-deb5-4a56-ba05-0f9f2dbafe9c","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"19644506-958c-48df-a588-6488ca12fd80"},{"name":"Create Flow Version Step Children","id":"966de1e0-671b-4a85-aa78-ae184305d368","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"flow_step_route_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/children","description":"<p>Creates a new child step beneath a specified step, connected via a flow step route.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","steps",":step","children"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"dba8bfad-f655-45e7-ba47-2f90b58af160","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"ea449c22-5717-4f95-a0dd-99a9237e9a95","description":{"content":"<p>The step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"step"}]}},"response":[{"id":"93a281c5-4d1f-429d-b164-36eccb942e82","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"flow_step_route_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/children","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step","children"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"name\": \"string\",\n    \"microservice\": \"string\",\n    \"config\": {},\n    \"parent_id\": null,\n    \"parent_flow_step\": null,\n    \"notification_group\": null,\n    \"order\": 0\n  }\n}"},{"id":"dc1b9c49-564c-4337-b750-e44d9ebce462","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"flow_step_route_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/children","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step","children"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f224fe4d-9aaa-40f0-9c19-649c57f60f57","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"flow_step_route_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/children","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step","children"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"eba03b01-1556-4843-ad76-74725bc5b1d0","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {},\n  \"flow_step_route_id\": null,\n  \"variables\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/children","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step","children"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"966de1e0-671b-4a85-aa78-ae184305d368"},{"name":"Create Flow Version Step Parent","id":"4f1aa390-797b-4f99-9bb8-c04f106d08a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/parents","description":"<p>Creates a new parent step above a specified step.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","steps",":step","parents"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"4454e039-5bec-4372-89ab-a67ef89ca160","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"707a19c8-c2aa-4513-9907-c92df56e6809","description":{"content":"<p>The step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"step"}]}},"response":[{"id":"9abe4e62-20c8-42e5-9744-a632e42a063a","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/parents","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step","parents"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"name\": \"string\",\n    \"microservice\": \"string\",\n    \"config\": {},\n    \"parent_id\": null,\n    \"parent_flow_step\": null,\n    \"notification_group\": null,\n    \"order\": 0\n  }\n}"},{"id":"9382800e-e8e9-4d21-a4c8-a3cbdc67901a","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/parents","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step","parents"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"80d8c2a4-1312-44dc-934c-ed1089deb6ef","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/parents","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step","parents"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3f0984ad-7500-48ac-9e36-16c973778650","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"microservice\": \"string\",\n  \"config\": {}\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/steps/:step/parents","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","steps",":step","parents"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"4f1aa390-797b-4f99-9bb8-c04f106d08a5"}],"id":"09dfe82d-46b0-43b2-85fa-ab8c54101807","_postman_id":"09dfe82d-46b0-43b2-85fa-ab8c54101807","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Version Variables","item":[{"name":"Create Flow Version Variable","id":"f712b8e0-6608-4d90-ba9b-c97a71681827","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables","description":"<p>Creates a new variable for a flow version. Requires a <code>type</code> and <code>key</code>, and optionally accepts a <code>value</code>, <code>date_format</code>, and <code>secret</code> flag.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","variables"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"936f3f81-0385-4013-bfff-79e1dbeec022","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"e6699a2b-21db-449c-8da1-4fcabe52a44b","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"type\": \"string\",\n    \"key\": \"string\",\n    \"value\": \"string\",\n    \"date_format\": null,\n    \"secret\": false,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"3eae1c4a-da34-4450-b435-38e9bb41dab2","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e05afa61-fbf2-4682-88bf-49b5ee53ac70","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b88f416a-ef0b-447d-a5d9-0e00adf2ca92","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"type\": [\n      \"The type field is required.\"\n    ],\n    \"key\": [\n      \"The key field is required.\"\n    ],\n    \"date_format\": [\n      \"The date format must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"f712b8e0-6608-4d90-ba9b-c97a71681827"},{"name":"Update Flow Version Variable","id":"b7b656cc-a5fa-4e8f-a34c-f02641759500","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","description":"<p>Updates an existing flow version variable. Accepts <code>type</code>, <code>key</code>, <code>value</code>, <code>date_format</code>, and <code>secret</code> flag.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"abd547a3-f7c5-4e34-9e1d-1cbe996a69b5","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"af8b1427-3309-4e0f-9752-5dbd8170c519","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"1f001e13-e7d9-490e-8ed3-2f68e46b5201","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"flow_version_id\": 0,\n    \"type\": \"string\",\n    \"key\": \"string\",\n    \"value\": \"string\",\n    \"date_format\": null,\n    \"secret\": false,\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"631533a3-a1ac-43bf-912d-cf5a544a7fd8","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c91839ad-736e-426c-a929-2ccb7261951b","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b890fec0-5c01-4779-9d8b-f38bcdc696e6","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"date_format\": null,\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"type\": [\n      \"The type field is required.\"\n    ],\n    \"key\": [\n      \"The key field is required.\"\n    ],\n    \"date_format\": [\n      \"The date format must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"b7b656cc-a5fa-4e8f-a34c-f02641759500"},{"name":"Delete Flow Version Variable","id":"a5cce470-ae5f-42d6-87bb-31c8c3cb5ecf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","description":"<p>Permanently deletes a specific flow version variable.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"2f238210-9443-40f7-9911-322e0403ad58","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"7f14733d-fdd7-4f56-8b10-652b48e5e6b4","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"9958e783-61ac-4993-91ad-a4dec793bd0b","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"7d8891c7-67d0-4752-8909-f306039b6626","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"203681d5-ad21-4532-a0d5-4763791c5d51","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","variables",":variable"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a5cce470-ae5f-42d6-87bb-31c8c3cb5ecf"}],"id":"fdd81f79-ba30-4b5c-ad4a-3cd9c1b80861","_postman_id":"fdd81f79-ba30-4b5c-ad4a-3cd9c1b80861","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Canvas Steps","item":[{"name":"Get Graph","id":"9fac44b5-e4b3-486a-bf81-12f2a629f0f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph","description":"<p>Retrieves the graph for a given flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"6d699214-8859-474a-8fb2-8b470d155a15","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"cafad15b-cbcc-43bf-b409-4c7a6e337934","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bfc05fae-70cb-4879-a3d2-a87c4c26de43","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"db4529f7-8ac5-468c-9dfa-dd0cc74d236d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9fac44b5-e4b3-486a-bf81-12f2a629f0f2"},{"name":"Create Flow Version Graph Step","id":"64eac76c-61b3-41ee-8c8e-9f750cf8a6e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","description":"<p>Creates a new step on the canvas for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph","steps"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"10559e43-aaa0-48a3-911a-d5327066c7ee","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"c7bd56c6-5246-4063-9a0a-a9e2ffad90bd","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cc6ea0ad-65a7-4cb6-b953-bf3d0dc52811","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6a7f167a-40c8-4425-94ae-1eb5544561e8","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ecc90541-9560-426c-aacd-959a6da8f2d5","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"64eac76c-61b3-41ee-8c8e-9f750cf8a6e3"},{"name":"Delete Flow Version Graph Steps","id":"f6e87c91-6415-4cb4-a4dc-d68cc5395c51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","description":"<p>Permanently deletes all steps from the canvas for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph","steps"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9fd01f31-aa83-4ff5-915d-7ca0657c0f80","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"e08fe851-9dd1-498a-8c75-8fd9e384eef9","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"74b67e59-5003-488d-a6f5-10ea1533af81","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"38b95aa2-2899-491e-b99d-2c2c8ea5c780","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f6e87c91-6415-4cb4-a4dc-d68cc5395c51"},{"name":"Get Flow Version Graph Step","id":"f6c95a3c-4cbb-49b2-87a7-b76f53f9efb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step","description":"<p>Retrieves the details of a specific canvas step for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph","steps",":step"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"38d092b9-9d73-42bb-acb6-0e8d4a125bad","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"f2c915a2-4a4c-40b4-9c8f-7ce32bee8148","description":{"content":"<p>The step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"step"}]}},"response":[{"id":"c1c41817-4da9-4256-9429-22f8f42a8465","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"52f2c9d1-7d45-4d60-835c-768438ca7719","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9ebca862-05bd-4fba-abf9-b83eeed5c5d7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f6c95a3c-4cbb-49b2-87a7-b76f53f9efb3"},{"name":"Delete Flow Version Graph Step","id":"742258dc-7edd-40de-afb2-c56e94c15656","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step","description":"<p>Permanently deletes a specific canvas step for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph","steps",":step"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"5ff84642-6bb2-4d2b-b66c-ebc304f3b828","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"6cf087fa-015f-4312-b808-dfce8f396c33","description":{"content":"<p>The step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"step"}]}},"response":[{"id":"93b922fe-2f8e-4316-9d88-43049d8b910f","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"60ee39ca-8afe-44b8-8e8e-c2e49c40c82f","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"abdc51a1-ad28-4b73-b6cf-333b037d2a4e","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"742258dc-7edd-40de-afb2-c56e94c15656"},{"name":"Paste Steps","id":"f4dcd63b-4277-43a1-8365-bce4d4968b8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/paste-steps","description":"<p>Pastes copied steps onto the canvas for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph","paste-steps"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d64be898-f5e1-4218-94fd-e361279b64a3","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"c12c1d67-1a3f-4a38-a7ad-288aa090b672","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/paste-steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","paste-steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2991eb36-5abd-49dc-a94e-130b7d9ea3ba","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/paste-steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","paste-steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"75c9732f-2617-41ef-bfaf-e81e7e9f93ff","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/paste-steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","paste-steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"259e6c38-793f-41f8-bf00-e558466edeb0","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/paste-steps","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","paste-steps"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"f4dcd63b-4277-43a1-8365-bce4d4968b8c"}],"id":"ebe6e2da-b617-4a06-b6e6-15c092d4e6f4","_postman_id":"ebe6e2da-b617-4a06-b6e6-15c092d4e6f4","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Canvas Step Connections","item":[{"name":"Create Connections","id":"8bca2e89-0233-4b52-bdc9-a86c68269f4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/connections","description":"<p>Creates connections between steps on the canvas for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph","connections"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d1127df6-6d67-44d0-950c-5ff50f4e1bb6","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"54b8ac25-5c45-4e03-9cc2-8cb286c2def2","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/connections","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","connections"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"46485d9c-0b9e-4ffd-877a-7eb23f843d6a","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/connections","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","connections"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"10bf0c33-4f30-42cd-9635-a9301267bd0d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/connections","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","connections"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"17eaaed0-83f7-4e8c-96a0-2ada29041505","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/connections","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","connections"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"8bca2e89-0233-4b52-bdc9-a86c68269f4c"},{"name":"Delete Flow Version Graph Step Connection","id":"a72c02fc-fc52-4b5e-82b6-d946df955f9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step/connection","description":"<p>Permanently deletes the connection for a specific canvas step.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph","steps",":step","connection"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d8827f08-680e-492c-a350-381c89cc1860","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"a9566fba-4913-4cd4-847b-c680d9def843","description":{"content":"<p>The step identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"step"}]}},"response":[{"id":"6cccc70f-0cf3-4255-9b3c-21ec18b9867f","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step/connection","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step","connection"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e883c28c-2622-4fac-bd16-21f0fc43504f","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step/connection","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step","connection"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3727e163-c571-4095-a21e-195c6df77935","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/steps/:step/connection","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","steps",":step","connection"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"step","value":"string","description":"The step identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a72c02fc-fc52-4b5e-82b6-d946df955f9a"}],"id":"c7db46b8-e571-4a27-a07e-c80c37bfeb48","_postman_id":"c7db46b8-e571-4a27-a07e-c80c37bfeb48","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Canvas Positions","item":[{"name":"Update Positions","id":"f7ab106a-5ad8-44f8-941a-85153918d65c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/positions","description":"<p>Updates the canvas positions of steps for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","graph","positions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"15cc478e-7c96-4c10-b42a-333850d0fdb0","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"2431759b-5903-4a59-a5ae-c28dd3e0924f","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/positions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","positions"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"decb3021-334e-4d53-ade8-9a6ae208b1d9","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/positions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","positions"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0d37f265-3e47-4e61-934c-6558f923cecb","name":"Unauthorized","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/positions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","positions"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8565f55d-fd98-4462-a1b3-ca2bb164e739","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/graph/positions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","graph","positions"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"f7ab106a-5ad8-44f8-941a-85153918d65c"},{"name":"Update Positions","id":"9f6bcf5a-d299-474c-b6f7-4acdb9f05e57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/positions","description":"<p>Updates the canvas positions of notes for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","notes","positions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"cf966f4a-84d5-4523-b1ca-e3ad31ee0ef5","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"deef3be7-e46c-4d42-8b16-8ba194735f02","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/positions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes","positions"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8ad68f50-7d6a-441e-b371-55a349839854","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/positions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes","positions"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c4e40b65-1d3e-4cf2-947e-1f94bb160fd1","name":"Unauthorized","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/positions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes","positions"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2e888120-a118-4b7b-9b0d-3eb33f58a2e4","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/positions","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes","positions"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"9f6bcf5a-d299-474c-b6f7-4acdb9f05e57"}],"id":"ec6f39c7-bf6b-4df5-a626-fc104156cb35","_postman_id":"ec6f39c7-bf6b-4df5-a626-fc104156cb35","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Canvas Notes","item":[{"name":"List Flow Version Notes","id":"4b427395-1636-4cf3-8ee7-d1cc09cf65b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","description":"<p>Retrieves a list of notes on the canvas for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","notes"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"13934017-2220-4fe3-aedf-290b4fdcddda","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"3670021b-f6d0-4107-ac81-dba3fc3db710","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"24e65c59-50e5-4be8-9089-84bc16ea1199","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"70c6bd7f-71c1-4fb5-aa07-88029f0ba5a4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4b427395-1636-4cf3-8ee7-d1cc09cf65b6"},{"name":"Create Flow Version Note","id":"a64eefa8-3e9c-472d-a374-594c45f36658","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","description":"<p>Creates a new note on the canvas for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","notes"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d4bfb244-4b00-410d-90a7-9e9a3eecd4da","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"}]}},"response":[{"id":"0c3d28ad-03c8-4743-8109-c77eddef7ab4","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"99ac0a2f-1bae-490f-8e96-2a6ad1b1ca8a","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fafa9e2e-1d9d-4ea0-98b6-f208a0e477a9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b469e3f5-1454-4a60-bb0f-b0d84273c163","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"a64eefa8-3e9c-472d-a374-594c45f36658"},{"name":"Get Flow Version Note","id":"984a785b-e729-453a-9ac6-5d49ae31257b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","description":"<p>Retrieves the details of a specific canvas note for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","notes",":note"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a2429132-d7c9-4af3-8ec5-54d32036ec63","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"49de9ed4-b215-4fe7-b03c-65928a320d10","description":{"content":"<p>The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"note"}]}},"response":[{"id":"5f3610ad-76b1-4333-9e80-7ac95f2f2cfb","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ab760584-0e48-4837-a155-a5279fd68e40","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a580fe12-d9cb-4ed6-89f2-7e032b4845e3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"984a785b-e729-453a-9ac6-5d49ae31257b"},{"name":"Update Flow Version Note","id":"c300cb74-3957-446d-9934-8d2d6146ed80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","description":"<p>Updates an existing canvas note for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","notes",":note"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"071ccdde-cf08-4de4-bec5-4cef198baea9","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"8836f414-f86d-410b-9f28-bbebda01b446","description":{"content":"<p>The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"note"}]}},"response":[{"id":"b13a4bc9-3297-460f-b466-0cb9e82fbc6e","name":"Successful response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"63221e85-a422-4be0-8cfc-a3913095af40","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"536ca3fc-2a94-45f6-bad9-98c2495c1185","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1937a20c-3faa-4a09-b972-276c2b297afc","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"c300cb74-3957-446d-9934-8d2d6146ed80"},{"name":"Delete Flow Version Note","id":"e3117242-77bb-48b5-b06a-b066ea7f0cb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","description":"<p>Permanently deletes a specific canvas note for a specific flow version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flow-versions",":flow_version","notes",":note"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b418cdba-b9ed-48ec-816a-49818a57175a","description":{"content":"<p>The flow version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_version"},{"id":"b36c85a5-9015-4ce4-8030-7cdf0ad36562","description":{"content":"<p>The note identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"note"}]}},"response":[{"id":"5b592784-34ec-4c90-83af-d9db4b622596","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"328b23b0-a63d-484e-983f-f765a3cb29fd","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"add28f1d-b084-489c-8057-5e2d99dd931a","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flow-versions/:flow_version/notes/:note","host":["https://core.wearepatchworks.com"],"path":["api","v1","flow-versions",":flow_version","notes",":note"],"variable":[{"key":"flow_version","value":"string","description":"The flow version identifier."},{"key":"note","value":"string","description":"The note identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e3117242-77bb-48b5-b06a-b066ea7f0cb0"}],"id":"fdca561f-3bfb-4faa-a901-371583defe14","_postman_id":"fdca561f-3bfb-4faa-a901-371583defe14","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flows","item":[{"name":"List Flows","id":"b96bfc88-2ddf-4281-9993-eae55dc73323","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows","description":"<p>List all process flows associated with your company profile.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Pagination is available for this request. Please see the section on using pagination for more details.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>latestVersion</li>\n<li>latestVersion_count</li>\n<li>latestVersionExists</li>\n<li>latestVersion.variables</li>\n<li>deployedVersion</li>\n<li>deployedVersion_count</li>\n<li>deployedVersionExists</li>\n<li>deployedVersion.variables</li>\n<li>currentVersion</li>\n<li>currentVersion_count</li>\n<li>currentVersionExists</li>\n<li>currentVersion.latestRun</li>\n<li>currentVersion.steps</li>\n<li>currentVersion.steps.connector</li>\n<li>currentVersion.steps.connector.authenticationImplementation</li>\n<li>currentVersion.steps.connector.authenticationImplementation.system</li>\n<li>currentVersion.steps.variables</li>\n<li>currentVersion.steps.cache</li>\n<li>currentVersion.steps.dataPool</li>\n<li>currentVersion.steps.scriptVersion</li>\n<li>currentVersion.steps.scriptVersion.script</li>\n<li>currentVersion.schedules</li>\n<li>currentVersion.variables</li>\n<li>versions</li>\n<li>versions_count</li>\n<li>versionsExists</li>\n<li>versions.schedules</li>\n<li>versions.variables</li>\n<li>versions.deployedByUser</li>\n<li>labels</li>\n<li>labels_count</li>\n<li>labelsExists</li>\n<li>webhooks</li>\n<li>webhooks_count</li>\n<li>webhooksExists</li>\n<li>callbacks</li>\n<li>callbacks_count</li>\n<li>callbacksExists</li>\n<li>notificationGroups</li>\n<li>notificationGroups_count</li>\n<li>notificationGroupsExists</li>\n<li>messageBrokers</li>\n<li>messageBrokers_count</li>\n<li>messageBrokersExists</li>\n<li>messageBrokerQueues</li>\n<li>messageBrokerQueues_count</li>\n<li>messageBrokerQueuesExists</li>\n<li>deployments</li>\n<li>deployments_count</li>\n<li>deploymentsExists</li>\n<li>deployments.virtualEnvironment</li>\n<li>deployments.flowVersion</li>\n<li>deployments.package</li>\n<li>deployments.enabledBy</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>marketplace_app_id</li>\n<li>labelled</li>\n<li>enabled</li>\n<li>deployed</li>\n</ul>\n<h2 id=\"available-fields\">Available Fields</h2>\n<p>These are the fields that can be requested to limit the data returned. Please see the section on using fields for more details.</p>\n<ul>\n<li>flows.id</li>\n<li>flows.name</li>\n<li>flows.enabled_at</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n<li>enabled_at</li>\n<li>created_at</li>\n<li>id</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by marketplace_app_id.</p>\n","type":"text/plain"},"key":"filter[marketplace_app_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by blueprint_id.</p>\n","type":"text/plain"},"key":"filter[blueprint_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by blueprint_version_number.</p>\n","type":"text/plain"},"key":"filter[blueprint_version_number]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by enabled.</p>\n","type":"text/plain"},"key":"filter[enabled]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by deployed.</p>\n","type":"text/plain"},"key":"filter[deployed]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by versions.id.</p>\n","type":"text/plain"},"key":"filter[versions.id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by versions.</p>\n","type":"text/plain"},"key":"filter[versions]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: latestVersion, latestVersion.variables, deployedVersion, deployedVersion.variables, latestDeployedVersion, latestDeployedVersion.variables, latestDeployedVersion.steps.connector.authenticationImplementation.system, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion.script, latestDeployedVersion.steps.scriptVersion.script, latestDeployedVersion.steps.cache, latestDeployedVersion.steps.dataPool, deployedVersion.steps.connector.authenticationImplementation.system, deployedVersion.steps.connector.authenticationImplementation.system.endpoints, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, enabled_at, created_at, id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"6473c95d-106c-4a24-968f-95f8a57e8a3c","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by marketplace_app_id.","key":"filter[marketplace_app_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by enabled.","key":"filter[enabled]","value":"string","disabled":true},{"description":"Filter results by deployed.","key":"filter[deployed]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by versions.","key":"filter[versions]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: latestVersion, latestVersion.variables, deployedVersion, deployedVersion.variables, latestDeployedVersion, latestDeployedVersion.variables, latestDeployedVersion.steps.connector.authenticationImplementation.system, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion.script, latestDeployedVersion.steps.scriptVersion.script, latestDeployedVersion.steps.cache, latestDeployedVersion.steps.dataPool, deployedVersion.steps.connector.authenticationImplementation.system, deployedVersion.steps.connector.authenticationImplementation.system.endpoints, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, enabled_at, created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"is_enabled\": false,\n      \"enabled_at\": null,\n      \"layout_direction\": \"TB\",\n      \"use_queued_time\": false,\n      \"remove_failed_payloads\": false,\n      \"priority\": 0,\n      \"prod_flag\": false,\n      \"labels\": [],\n      \"notification_group_ids\": [],\n      \"webhooks\": [],\n      \"callbacks\": [],\n      \"message_brokers\": [],\n      \"message_broker_queues\": [],\n      \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n      \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://core.wearepatchworks.com/api/v1/flows\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://core.wearepatchworks.com/api/v1/flows?page=1\",\n    \"last\": \"https://core.wearepatchworks.com/api/v1/flows?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"6e4b7d63-ab1d-4937-a87f-fe9859b4af67","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by marketplace_app_id.","key":"filter[marketplace_app_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by enabled.","key":"filter[enabled]","value":"string","disabled":true},{"description":"Filter results by deployed.","key":"filter[deployed]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by versions.","key":"filter[versions]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: latestVersion, latestVersion.variables, deployedVersion, deployedVersion.variables, latestDeployedVersion, latestDeployedVersion.variables, latestDeployedVersion.steps.connector.authenticationImplementation.system, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion.script, latestDeployedVersion.steps.scriptVersion.script, latestDeployedVersion.steps.cache, latestDeployedVersion.steps.dataPool, deployedVersion.steps.connector.authenticationImplementation.system, deployedVersion.steps.connector.authenticationImplementation.system.endpoints, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, enabled_at, created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"786afaca-dce8-4680-b7c8-d46355cdaeef","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by marketplace_app_id.","key":"filter[marketplace_app_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by enabled.","key":"filter[enabled]","value":"string","disabled":true},{"description":"Filter results by deployed.","key":"filter[deployed]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by versions.","key":"filter[versions]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: latestVersion, latestVersion.variables, deployedVersion, deployedVersion.variables, latestDeployedVersion, latestDeployedVersion.variables, latestDeployedVersion.steps.connector.authenticationImplementation.system, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion.script, latestDeployedVersion.steps.scriptVersion.script, latestDeployedVersion.steps.cache, latestDeployedVersion.steps.dataPool, deployedVersion.steps.connector.authenticationImplementation.system, deployedVersion.steps.connector.authenticationImplementation.system.endpoints, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, enabled_at, created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b96bfc88-2ddf-4281-9993-eae55dc73323"},{"name":"Create Flow","id":"effe4e96-9825-44dd-92c2-2c9cff896b75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"prod_flag\": false\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows","description":"<p>Create a new process flow.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>flow.name</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>flow.description</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>flow.prod_flag</td>\n<td></td>\n<td>☑</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"709e018e-efcb-418c-9212-47062d1bdc04","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"prod_flag\": false\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"is_enabled\": false,\n    \"enabled_at\": null,\n    \"layout_direction\": \"TB\",\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false,\n    \"labels\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": [],\n    \"callbacks\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"410d9a14-543b-4d30-a595-aad6c359b3fe","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"prod_flag\": false\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"86ae6925-abb1-45f5-a984-94d09fadaa38","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"prod_flag\": false\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cedd6c91-f255-4f73-99a0-d3b919de460d","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"prod_flag\": false\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"flow.name\": [\n      \"The flow name field is required.\"\n    ],\n    \"flow.description\": [\n      \"The flow description must be a string.\"\n    ],\n    \"flow.prod_flag\": [\n      \"The flow prod flag field is required.\"\n    ]\n  }\n}"}],"_postman_id":"effe4e96-9825-44dd-92c2-2c9cff896b75"},{"name":"Get Flow","id":"fc66a24f-780c-4cb2-b6c7-f9a5fb08da7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow","description":"<p>Retrieves details for a single process flow by the flow <code>id</code>.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>latestVersion</li>\n<li>latestVersion_count</li>\n<li>latestVersionExists</li>\n<li>latestVersion.variables</li>\n<li>deployedVersion</li>\n<li>deployedVersion_count</li>\n<li>deployedVersionExists</li>\n<li>deployedVersion.variables</li>\n<li>currentVersion</li>\n<li>currentVersion_count</li>\n<li>currentVersionExists</li>\n<li>currentVersion.latestRun</li>\n<li>currentVersion.steps</li>\n<li>currentVersion.steps.connector</li>\n<li>currentVersion.steps.connector.authenticationImplementation</li>\n<li>currentVersion.steps.connector.authenticationImplementation.system</li>\n<li>currentVersion.steps.variables</li>\n<li>currentVersion.steps.cache</li>\n<li>currentVersion.steps.dataPool</li>\n<li>currentVersion.steps.scriptVersion</li>\n<li>currentVersion.steps.scriptVersion.script</li>\n<li>currentVersion.schedules</li>\n<li>currentVersion.variables</li>\n<li>versions</li>\n<li>versions_count</li>\n<li>versionsExists</li>\n<li>versions.schedules</li>\n<li>versions.variables</li>\n<li>versions.deployedByUser</li>\n<li>labels</li>\n<li>labels_count</li>\n<li>labelsExists</li>\n<li>webhooks</li>\n<li>webhooks_count</li>\n<li>webhooksExists</li>\n<li>callbacks</li>\n<li>callbacks_count</li>\n<li>callbacksExists</li>\n<li>notificationGroups</li>\n<li>notificationGroups_count</li>\n<li>notificationGroupsExists</li>\n<li>messageBrokers</li>\n<li>messageBrokers_count</li>\n<li>messageBrokersExists</li>\n<li>messageBrokerQueues</li>\n<li>messageBrokerQueues_count</li>\n<li>messageBrokerQueuesExists</li>\n<li>deployments</li>\n<li>deployments_count</li>\n<li>deploymentsExists</li>\n<li>deployments.virtualEnvironment</li>\n<li>deployments.flowVersion</li>\n<li>deployments.package</li>\n<li>deployments.enabledBy</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>marketplace_app_id</li>\n<li>labelled</li>\n<li>enabled</li>\n<li>deployed</li>\n</ul>\n<h2 id=\"available-fields\">Available Fields</h2>\n<p>These are the fields that can be requested to limit the data returned. Please see the section on using fields for more details.</p>\n<ul>\n<li>flows.id</li>\n<li>flows.name</li>\n<li>flows.enabled_at</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n<li>enabled_at</li>\n<li>created_at</li>\n<li>id</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by marketplace_app_id.</p>\n","type":"text/plain"},"key":"filter[marketplace_app_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by blueprint_id.</p>\n","type":"text/plain"},"key":"filter[blueprint_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by blueprint_version_number.</p>\n","type":"text/plain"},"key":"filter[blueprint_version_number]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by enabled.</p>\n","type":"text/plain"},"key":"filter[enabled]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by deployed.</p>\n","type":"text/plain"},"key":"filter[deployed]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by versions.id.</p>\n","type":"text/plain"},"key":"filter[versions.id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by versions.</p>\n","type":"text/plain"},"key":"filter[versions]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: latestVersion, latestVersion.variables, deployedVersion, deployedVersion.variables, latestDeployedVersion, latestDeployedVersion.variables, latestDeployedVersion.steps.connector.authenticationImplementation.system, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion.script, latestDeployedVersion.steps.scriptVersion.script, latestDeployedVersion.steps.cache, latestDeployedVersion.steps.dataPool, deployedVersion.steps.connector.authenticationImplementation.system, deployedVersion.steps.connector.authenticationImplementation.system.endpoints, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, enabled_at, created_at, id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"4a63ff80-f1f2-4985-9236-94cdfbcf8461","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"3bafb406-a6a8-4693-ab93-a3ea02369bac","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by marketplace_app_id.","key":"filter[marketplace_app_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by enabled.","key":"filter[enabled]","value":"string","disabled":true},{"description":"Filter results by deployed.","key":"filter[deployed]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by versions.","key":"filter[versions]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: latestVersion, latestVersion.variables, deployedVersion, deployedVersion.variables, latestDeployedVersion, latestDeployedVersion.variables, latestDeployedVersion.steps.connector.authenticationImplementation.system, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion.script, latestDeployedVersion.steps.scriptVersion.script, latestDeployedVersion.steps.cache, latestDeployedVersion.steps.dataPool, deployedVersion.steps.connector.authenticationImplementation.system, deployedVersion.steps.connector.authenticationImplementation.system.endpoints, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, enabled_at, created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"is_enabled\": false,\n    \"enabled_at\": null,\n    \"layout_direction\": \"TB\",\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false,\n    \"labels\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": [],\n    \"callbacks\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"8df99b56-5045-4e6b-9659-1a86bf76c4d5","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by marketplace_app_id.","key":"filter[marketplace_app_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by enabled.","key":"filter[enabled]","value":"string","disabled":true},{"description":"Filter results by deployed.","key":"filter[deployed]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by versions.","key":"filter[versions]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: latestVersion, latestVersion.variables, deployedVersion, deployedVersion.variables, latestDeployedVersion, latestDeployedVersion.variables, latestDeployedVersion.steps.connector.authenticationImplementation.system, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion.script, latestDeployedVersion.steps.scriptVersion.script, latestDeployedVersion.steps.cache, latestDeployedVersion.steps.dataPool, deployedVersion.steps.connector.authenticationImplementation.system, deployedVersion.steps.connector.authenticationImplementation.system.endpoints, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, enabled_at, created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9d16019e-6d0f-4dac-a738-b28663fad778","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by marketplace_app_id.","key":"filter[marketplace_app_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_id.","key":"filter[blueprint_id]","value":"string","disabled":true},{"description":"Filter results by blueprint_version_number.","key":"filter[blueprint_version_number]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Filter results by enabled.","key":"filter[enabled]","value":"string","disabled":true},{"description":"Filter results by deployed.","key":"filter[deployed]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Filter results by versions.","key":"filter[versions]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: latestVersion, latestVersion.variables, deployedVersion, deployedVersion.variables, latestDeployedVersion, latestDeployedVersion.variables, latestDeployedVersion.steps.connector.authenticationImplementation.system, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script, latestDeployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion.script, latestDeployedVersion.steps.scriptVersion.script, latestDeployedVersion.steps.cache, latestDeployedVersion.steps.dataPool, deployedVersion.steps.connector.authenticationImplementation.system, deployedVersion.steps.connector.authenticationImplementation.system.endpoints, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.postScriptVersion, deployedVersion.steps.connector.authenticationImplementation.system.endpoints.preScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, enabled_at, created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fc66a24f-780c-4cb2-b6c7-f9a5fb08da7a"},{"name":"Update Flow","id":"6d4e2e5c-0893-4183-b1e1-438d2515844a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"enabled_at\": null,\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false\n  },\n  \"labels\": [],\n  \"notification_groups\": []\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/:flow","description":"<p>Updates an existing process flow.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>flow.name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>flow.description</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>flow.enabled_at</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>labels</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>labels.*.id</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>notification_groups</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>flow.use_queued_time</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>flow.remove_failed_payloads</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>flow.priority</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>flow.prod_flag</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"60c9d731-568c-4092-b8cf-5a9a88edef67","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"0ae31294-0f32-4443-9998-8eec92c398f4","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"enabled_at\": null,\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false\n  },\n  \"labels\": [],\n  \"notification_groups\": []\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"is_enabled\": false,\n    \"enabled_at\": null,\n    \"layout_direction\": \"TB\",\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false,\n    \"labels\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": [],\n    \"callbacks\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"a5b15484-9dde-4ee2-bdb7-d1ae311e1f3d","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"enabled_at\": null,\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false\n  },\n  \"labels\": [],\n  \"notification_groups\": []\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"74daae2f-7b8f-417b-a333-7e6eb867b70a","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"enabled_at\": null,\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false\n  },\n  \"labels\": [],\n  \"notification_groups\": []\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bda926e8-33d0-4708-b9da-85912ea50d6b","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"enabled_at\": null,\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false\n  },\n  \"labels\": [],\n  \"notification_groups\": []\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"flow.name\": [\n      \"The flow name must be a string.\"\n    ],\n    \"flow.description\": [\n      \"The flow description must be a string.\"\n    ],\n    \"labels.*.id\": [\n      \"The labels * id field is required.\"\n    ]\n  }\n}"}],"_postman_id":"6d4e2e5c-0893-4183-b1e1-438d2515844a"},{"name":"Delete Flow","id":"0d6637f6-9813-48b3-b2c5-72f3757d22ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow","description":"<p>Deletes a given process flow.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d6a7addd-c7eb-4abb-b8a8-fc4a3d922231","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"7243d0e3-1377-4a0f-8aa6-c695677d3789","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"114bae6d-7b8d-49c1-a727-9559960b537d","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"aa41268b-029e-4f8b-a7d5-7d379bea19b2","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0d6637f6-9813-48b3-b2c5-72f3757d22ee"},{"name":"Export Flow","id":"91ba3fa4-cdc2-4a5c-a78c-3f295cc9ae62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/export","description":"<p>Export process flow as a JSON file.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>flow_id</td>\n<td>integer</td>\n<td>☑</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows","export"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"9a995ff5-354c-4d49-8431-b98b82179bb7","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"metadata\": {\n    \"company_name\": \"string\",\n    \"flow_name\": \"string\",\n    \"exported_at\": \"2024-01-01T00:00:00+00:00\",\n    \"exported_by\": \"string\",\n    \"flow_id\": 0,\n    \"flow_version\": 0,\n    \"import_summary\": {\n      \"setup_required\": {\n        \"connectors_needing_config\": 0,\n        \"auth_implementations_needing_credentials\": 0,\n        \"variables_needing_values\": 0\n      },\n      \"dependencies\": [],\n      \"imported_resources\": [],\n      \"next_steps\": []\n    }\n  },\n  \"flow\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"is_enabled\": false,\n    \"enabled_at\": null,\n    \"layout_direction\": \"string\",\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false,\n    \"labels\": [],\n    \"webhooks\": [],\n    \"callbacks\": [],\n    \"versions\": []\n  },\n  \"systems\": [],\n  \"scripts\": [],\n  \"dependencies\": []\n}"},{"id":"2a1ed4db-17eb-4f02-b4e4-2cab7b4d714c","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/export"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ad669abe-2bc0-40c1-ae40-d040079e0b53","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/export"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a06d6a84-1eeb-40ee-ac13-e19f86da7f31","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/export"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"91ba3fa4-cdc2-4a5c-a78c-3f295cc9ae62"},{"name":"Import Flow","id":"4191b235-7832-48f7-a57e-11d690d0b246","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/import","description":"<p>Import a previously exported process flow (from a JSON file).</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>flow</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>as_marketplace</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows","import"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"bafa6105-6c2b-4de7-a9b1-f976421643f2","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/import"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"metadata\": {\n    \"company_name\": \"string\",\n    \"flow_name\": \"string\",\n    \"exported_at\": \"2024-01-01T00:00:00+00:00\",\n    \"exported_by\": \"string\",\n    \"flow_id\": 0,\n    \"flow_version\": 0,\n    \"import_summary\": {\n      \"setup_required\": {\n        \"connectors_needing_config\": 0,\n        \"auth_implementations_needing_credentials\": 0,\n        \"variables_needing_values\": 0\n      },\n      \"dependencies\": [],\n      \"imported_resources\": [],\n      \"next_steps\": []\n    }\n  },\n  \"flow\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"is_enabled\": false,\n    \"enabled_at\": null,\n    \"layout_direction\": \"string\",\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false,\n    \"labels\": [],\n    \"webhooks\": [],\n    \"callbacks\": [],\n    \"versions\": []\n  },\n  \"systems\": [],\n  \"scripts\": [],\n  \"dependencies\": []\n}"},{"id":"8e88931c-5803-4ca2-a74b-5b73c2848e9e","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/import"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2019a930-9224-4516-b5cd-a5836f225c9b","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/import"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"816159e2-d8ad-4d06-a4fb-eb17165c0d69","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/import"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"4191b235-7832-48f7-a57e-11d690d0b246"},{"name":"Initialise Flow Manually","id":"344859c9-d5a8-4859-93b8-4f10a1d1edcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/manual/:version_id","description":"<p>Initialise a process flow manually - the equivalent of using the <code>initialise flow</code> button on the canvas. The flow starts immediately (it is not added to a queue).\nYou can make up to 10 requests to this endpoint per minute. If you are implementing an automated, programmtic integration with Patchworks with greater request volumes, consider using the <a href=\"https://doc.wearepatchworks.com/product-documentation/api-reference/process-flows/flows#post-api-v1-flows-flow_id-start-version_id\">Start Flow</a> endpoint instead.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>flow_id</td>\n<td>integer</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>version_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>payload</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>flow_variables</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>virtual_environment_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","flows",":flow_id","manual",":version_id"],"host":["start","wearepatchworks","com"],"query":[],"variable":[{"id":"21850d19-aedf-49f5-8a6a-9a5150af71fd","description":{"content":"<p>The unique identifier of the flow.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_id"},{"id":"f6036b44-18b4-4498-b247-3d40d5d1dd43","description":{"content":"<p>The unique identifier of the version.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version_id"}]}},"response":[{"id":"d52a3539-e558-478a-b8b8-ec6f00fc88c2","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/manual/:version_id","protocol":"https","host":["start","wearepatchworks","com"],"path":["api","v1","flows",":flow_id","manual",":version_id"],"variable":[{"key":"flow_id","value":"string","description":"The unique identifier of the flow."},{"key":"version_id","value":"string","description":"The unique identifier of the version."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"data\": {\n    \"flow_run_id\": \"string\"\n  }\n}"},{"id":"e406862e-8a27-4f3d-a80f-b6ef0912b862","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/manual/:version_id","protocol":"https","host":["start","wearepatchworks","com"],"path":["api","v1","flows",":flow_id","manual",":version_id"],"variable":[{"key":"flow_id","value":"string","description":"The unique identifier of the flow."},{"key":"version_id","value":"string","description":"The unique identifier of the version."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"518bb00a-4fc6-44a6-8077-09c7b7d3459e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/manual/:version_id","protocol":"https","host":["start","wearepatchworks","com"],"path":["api","v1","flows",":flow_id","manual",":version_id"],"variable":[{"key":"flow_id","value":"string","description":"The unique identifier of the flow."},{"key":"version_id","value":"string","description":"The unique identifier of the version."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0ce34838-0e4c-479f-848e-5567d6acd8d6","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/manual/:version_id","protocol":"https","host":["start","wearepatchworks","com"],"path":["api","v1","flows",":flow_id","manual",":version_id"],"variable":[{"key":"flow_id","value":"string","description":"The unique identifier of the flow."},{"key":"version_id","value":"string","description":"The unique identifier of the version."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"344859c9-d5a8-4859-93b8-4f10a1d1edcd"},{"name":"Start Flow","id":"36a88cd5-9ff5-472c-9b3f-7a7d7ef3b9e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/start/:version_id","description":"<p>Intended for programmatic, system-to-system integrations, where flows are scheduled via the API. In this case, flow runs are added to a queue and picked up when concurrency is available.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>flow_id</td>\n<td>integer</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>version_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>payload</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>flow_variables</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>virtual_environment_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","flows",":flow_id","start",":version_id"],"host":["start","wearepatchworks","com"],"query":[],"variable":[{"id":"82fcc356-260a-419d-969d-c51e5397a649","description":{"content":"<p>The unique identifier of the flow.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_id"},{"id":"b101ba1c-a3a1-4133-a293-f6544298744c","description":{"content":"<p>The unique identifier of the version.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"version_id"}]}},"response":[{"id":"58a4773c-f736-4ccd-bf15-5c0ccad85def","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/start/:version_id","protocol":"https","host":["start","wearepatchworks","com"],"path":["api","v1","flows",":flow_id","start",":version_id"],"variable":[{"key":"flow_id","value":"string","description":"The unique identifier of the flow."},{"key":"version_id","value":"string","description":"The unique identifier of the version."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"data\": {\n    \"scheduled_flow_id\": \"string\"\n  }\n}"},{"id":"2af50611-9b92-4c7a-94a3-a702eba0960e","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/start/:version_id","protocol":"https","host":["start","wearepatchworks","com"],"path":["api","v1","flows",":flow_id","start",":version_id"],"variable":[{"key":"flow_id","value":"string","description":"The unique identifier of the flow."},{"key":"version_id","value":"string","description":"The unique identifier of the version."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5d320a8d-be27-4611-b1dc-e493fb5e60c0","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/start/:version_id","protocol":"https","host":["start","wearepatchworks","com"],"path":["api","v1","flows",":flow_id","start",":version_id"],"variable":[{"key":"flow_id","value":"string","description":"The unique identifier of the flow."},{"key":"version_id","value":"string","description":"The unique identifier of the version."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4bcdf342-932c-4f13-bfc6-58dd91797c0b","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 0,\n  \"version_id\": 0,\n  \"payload\": \"string\",\n  \"flow_variables\": null,\n  \"virtual_environment_id\": null\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://start.wearepatchworks.com/api/v1/flows/:flow_id/start/:version_id","protocol":"https","host":["start","wearepatchworks","com"],"path":["api","v1","flows",":flow_id","start",":version_id"],"variable":[{"key":"flow_id","value":"string","description":"The unique identifier of the flow."},{"key":"version_id","value":"string","description":"The unique identifier of the version."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"36a88cd5-9ff5-472c-9b3f-7a7d7ef3b9e3"},{"name":"Duplicate Flow","id":"0101449c-1d27-4315-aec7-7c192a852d0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"0\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/duplicate","description":"<p>Duplicates - i.e. clones - an existing process flow.\nThis is the API equivalent of what happens when you use the <a href=\"https://doc.wearepatchworks.com/product-documentation/process-flows/managing-process-flows/duplicating-a-process-flow\">duplicate option in the dashboard</a>.\nThe result is a new process flow in the same company, with the same name appended with an incremental number.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>flow_version_id</td>\n<td></td>\n<td>☑</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","duplicate"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"5071a02a-76c3-4177-a6d7-32fd5bc99f82","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"6569c0b9-e7bf-4903-ab7a-adae34660861","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"0\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/duplicate","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","duplicate"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"is_enabled\": false,\n    \"enabled_at\": null,\n    \"layout_direction\": \"TB\",\n    \"use_queued_time\": false,\n    \"remove_failed_payloads\": false,\n    \"priority\": 0,\n    \"prod_flag\": false,\n    \"labels\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": [],\n    \"callbacks\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"created_at\": \"2024-01-01T00:00:00.000000Z\",\n    \"updated_at\": \"2024-01-01T00:00:00.000000Z\"\n  }\n}"},{"id":"75b7b952-9f89-4040-a1bc-c83912a1f5ed","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"0\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/duplicate","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","duplicate"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"35d47cb6-efd4-4063-afaa-62618f500f39","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"0\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/duplicate","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","duplicate"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c3110683-02db-4bd4-ad93-70bed70b6c70","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"0\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/duplicate","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","duplicate"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"0101449c-1d27-4315-aec7-7c192a852d0b"},{"name":"Update Flow Layout Direction","id":"b620213e-f420-4b08-b2b9-59dbe61ca22b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/layout-direction","description":"<p>Toggles the canvas layout direction for a specific flow. If the flow is currently set to vertical then it switches to horizontal, and vice versa.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","layout-direction"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"33312611-dae6-48e2-a7e7-9f796cae4bb8","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"2d253e60-7d8c-4d4a-8bac-645df3147606","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/layout-direction","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","layout-direction"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"98304633-ee6d-4763-8ab1-a6568e241e21","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/layout-direction","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","layout-direction"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f8e1861c-e524-4f02-b2c8-c43df0bd6946","name":"Unauthorized","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/layout-direction","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","layout-direction"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"362d6f8c-45aa-4207-8b04-d1ad076f782b","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/layout-direction","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","layout-direction"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"b620213e-f420-4b08-b2b9-59dbe61ca22b"}],"id":"77fbee7b-b7fb-499a-8fad-4e6d13c8d53c","_postman_id":"77fbee7b-b7fb-499a-8fad-4e6d13c8d53c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Callbacks","item":[{"name":"List Flow Callbacks","id":"5eaded7a-f0b2-4fa5-a5c0-145eb76a6cb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","description":"<p>Retrieves a paginated list of callbacks for a specific flow.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","callbacks"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"24528183-b2ee-40d8-9bb4-eed6fccb10ec","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"cf006709-7039-4da3-afa4-9dcdfb8848c2","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"My Example\",\n      \"enabled_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"status\": \"Draft\",\n      \"format\": \"csv\",\n      \"body\": \"example_body\",\n      \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"labels\": \"example_labels\",\n      \"notification_groups\": \"example_notification_groups\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"description\": \"A description of the resource\",\n      \"layout_direction\": \"example_layout_direction\",\n      \"is_enabled\": {},\n      \"latest_version\": {},\n      \"current_version\": {},\n      \"deployed_version\": {},\n      \"latest_deployed_version\": [],\n      \"versions\": [],\n      \"version_type_counts\": [],\n      \"message_brokers\": [],\n      \"message_broker_queues\": [],\n      \"notification_group_ids\": [],\n      \"webhooks\": \"example_webhooks\",\n      \"callbacks\": \"example_callbacks\",\n      \"current_version_step_count\": 5,\n      \"current_version_connector_count\": 5,\n      \"current_version_script_count\": 5,\n      \"current_version_cache_count\": 5,\n      \"current_version_data_pool_count\": 5,\n      \"current_version_cross_ref_count\": 5,\n      \"use_queued_time\": \"example_use_queued_time\",\n      \"remove_failed_payloads\": [],\n      \"priority\": 1,\n      \"prod_flag\": [],\n      \"deployments\": [],\n      \"webhooks_count\": 5,\n      \"callbacks_count\": 5,\n      \"marketplace_app_id\": 1,\n      \"blueprint_id\": 1,\n      \"blueprint_version_number\": \"example_blueprint_version_number\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/flows/{flow}/callbacks\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/flows/{flow}/callbacks?page=1\",\n    \"last\": \"https://api.example.com/api/v1/flows/{flow}/callbacks?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"f022b1bc-53bd-49d9-bfb5-718d00a84e30","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a4125186-1a30-4883-aa63-398e6f92e3e1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5eaded7a-f0b2-4fa5-a5c0-145eb76a6cb1"},{"name":"Create Flow Callback","id":"86ff7e2c-eacb-401d-ab13-4e77e0eb8694","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","description":"<p>Creates a new callback trigger for a specific flow.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>format</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","callbacks"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8779a33e-1d4e-4593-8b28-b2a677479c19","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"28be228b-5b20-4a31-971c-86fef436d12b","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"enabled_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"status\": \"Draft\",\n    \"format\": \"csv\",\n    \"body\": \"example_body\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"labels\": \"example_labels\",\n    \"notification_groups\": \"example_notification_groups\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"description\": \"A description of the resource\",\n    \"layout_direction\": \"example_layout_direction\",\n    \"is_enabled\": {},\n    \"latest_version\": {},\n    \"current_version\": {},\n    \"deployed_version\": {},\n    \"latest_deployed_version\": [],\n    \"versions\": [],\n    \"version_type_counts\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": \"example_webhooks\",\n    \"callbacks\": \"example_callbacks\",\n    \"current_version_step_count\": 5,\n    \"current_version_connector_count\": 5,\n    \"current_version_script_count\": 5,\n    \"current_version_cache_count\": 5,\n    \"current_version_data_pool_count\": 5,\n    \"current_version_cross_ref_count\": 5,\n    \"use_queued_time\": \"example_use_queued_time\",\n    \"remove_failed_payloads\": [],\n    \"priority\": 1,\n    \"prod_flag\": [],\n    \"deployments\": [],\n    \"webhooks_count\": 5,\n    \"callbacks_count\": 5,\n    \"marketplace_app_id\": 1,\n    \"blueprint_id\": 1,\n    \"blueprint_version_number\": \"example_blueprint_version_number\"\n  }\n}"},{"id":"53ff2184-dd5a-4d68-9630-0f9837f58d94","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d1d83832-359a-4552-a605-8ece7a54d16e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"00760012-45e3-4283-a23c-271a1502900f","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"86ff7e2c-eacb-401d-ab13-4e77e0eb8694"},{"name":"Update Flow Callback","id":"ff994879-6b7d-4e47-86cf-bd570e862c66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","description":"<p>Updates an existing callback for a specific flow.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>format</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","callbacks",":callback"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"507656e1-6689-4734-af75-19ae39225d7c","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"},{"id":"eb33b2fd-5d92-4172-8215-c7e2a395f679","description":{"content":"<p>The callback identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"callback"}]}},"response":[{"id":"3197ed5c-5de5-4228-b49a-8131bc8c0aa8","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks",":callback"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"callback","value":"string","description":"The callback identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"enabled_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"status\": \"Draft\",\n    \"format\": \"csv\",\n    \"body\": \"example_body\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"labels\": \"example_labels\",\n    \"notification_groups\": \"example_notification_groups\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"description\": \"A description of the resource\",\n    \"layout_direction\": \"example_layout_direction\",\n    \"is_enabled\": {},\n    \"latest_version\": {},\n    \"current_version\": {},\n    \"deployed_version\": {},\n    \"latest_deployed_version\": [],\n    \"versions\": [],\n    \"version_type_counts\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": \"example_webhooks\",\n    \"callbacks\": \"example_callbacks\",\n    \"current_version_step_count\": 5,\n    \"current_version_connector_count\": 5,\n    \"current_version_script_count\": 5,\n    \"current_version_cache_count\": 5,\n    \"current_version_data_pool_count\": 5,\n    \"current_version_cross_ref_count\": 5,\n    \"use_queued_time\": \"example_use_queued_time\",\n    \"remove_failed_payloads\": [],\n    \"priority\": 1,\n    \"prod_flag\": [],\n    \"deployments\": [],\n    \"webhooks_count\": 5,\n    \"callbacks_count\": 5,\n    \"marketplace_app_id\": 1,\n    \"blueprint_id\": 1,\n    \"blueprint_version_number\": \"example_blueprint_version_number\"\n  }\n}"},{"id":"45af4481-dd83-466c-ae1d-7af5a16398c0","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks",":callback"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"callback","value":"string","description":"The callback identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9593ce72-687e-452c-9198-dacf7fdabd5b","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks",":callback"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"callback","value":"string","description":"The callback identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"60711077-13d6-4a44-a811-2e395228cf67","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"format\": \"csv\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks",":callback"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"callback","value":"string","description":"The callback identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"ff994879-6b7d-4e47-86cf-bd570e862c66"},{"name":"Delete Flow Callback","id":"ca38f813-d5f8-49e2-867a-b77841a8f62d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","description":"<p>Permanently deletes a specific callback for a specific flow.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","callbacks",":callback"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"bd6d36bd-276c-4e0c-8bae-836727cc8dbf","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"},{"id":"da07de13-d91e-49f9-8eac-814d95be8aab","description":{"content":"<p>The callback identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"callback"}]}},"response":[{"id":"5524b714-774b-47d8-8c1f-96cd9c670b87","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks",":callback"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"callback","value":"string","description":"The callback identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"5c671007-3bb8-48da-a340-00c40f2a7562","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks",":callback"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"callback","value":"string","description":"The callback identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f065ee1f-ea81-4bd9-af18-56c2bb776b1c","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/callbacks/:callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","callbacks",":callback"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"callback","value":"string","description":"The callback identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ca38f813-d5f8-49e2-867a-b77841a8f62d"}],"id":"722f0da7-c435-41db-96a9-b1584d927614","_postman_id":"722f0da7-c435-41db-96a9-b1584d927614","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Flow Webhooks","item":[{"name":"List Flow Webhooks","id":"4d3ec5f1-bd8a-42b0-a241-90c0e19f5c12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","description":"<p>Retrieves a paginated list of webhooks for a specific flow.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","webhooks"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f8b76cb4-f7bb-446e-bd9d-2e57b2294a7b","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"9f39b9a2-f327-4677-865e-0026434ef5e4","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"My Example\",\n      \"enabled_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"status\": \"Draft\",\n      \"format\": \"csv\",\n      \"body\": \"example_body\",\n      \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"labels\": \"example_labels\",\n      \"notification_groups\": \"example_notification_groups\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"description\": \"A description of the resource\",\n      \"layout_direction\": \"example_layout_direction\",\n      \"is_enabled\": {},\n      \"latest_version\": {},\n      \"current_version\": {},\n      \"deployed_version\": {},\n      \"latest_deployed_version\": [],\n      \"versions\": [],\n      \"version_type_counts\": [],\n      \"message_brokers\": [],\n      \"message_broker_queues\": [],\n      \"notification_group_ids\": [],\n      \"webhooks\": \"example_webhooks\",\n      \"callbacks\": \"example_callbacks\",\n      \"current_version_step_count\": 5,\n      \"current_version_connector_count\": 5,\n      \"current_version_script_count\": 5,\n      \"current_version_cache_count\": 5,\n      \"current_version_data_pool_count\": 5,\n      \"current_version_cross_ref_count\": 5,\n      \"use_queued_time\": \"example_use_queued_time\",\n      \"remove_failed_payloads\": [],\n      \"priority\": 1,\n      \"prod_flag\": [],\n      \"deployments\": [],\n      \"webhooks_count\": 5,\n      \"callbacks_count\": 5,\n      \"marketplace_app_id\": 1,\n      \"blueprint_id\": 1,\n      \"blueprint_version_number\": \"example_blueprint_version_number\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/flows/{flow}/webhooks\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/flows/{flow}/webhooks?page=1\",\n    \"last\": \"https://api.example.com/api/v1/flows/{flow}/webhooks?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"e132a211-8b82-4155-ad13-ef1a29f231d3","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3f16bbc9-faf2-4f6f-b9fb-945923ed0a1d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4d3ec5f1-bd8a-42b0-a241-90c0e19f5c12"},{"name":"Create Flow Webhook","id":"c44ce99a-1b89-4291-8d5b-c9b898d5154a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"body\": \"string\",\n  \"format\": \"json\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","description":"<p>Creates a new webhook trigger for a specific flow.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>body</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>format</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","webhooks"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8e9dc54d-f22d-4dfc-a459-ded9bd9adcc8","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"478f8605-0b21-411a-9b97-6a5c093fd372","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"body\": \"string\",\n  \"format\": \"json\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"enabled_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"status\": \"Draft\",\n    \"format\": \"csv\",\n    \"body\": \"example_body\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"labels\": \"example_labels\",\n    \"notification_groups\": \"example_notification_groups\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"description\": \"A description of the resource\",\n    \"layout_direction\": \"example_layout_direction\",\n    \"is_enabled\": {},\n    \"latest_version\": {},\n    \"current_version\": {},\n    \"deployed_version\": {},\n    \"latest_deployed_version\": [],\n    \"versions\": [],\n    \"version_type_counts\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": \"example_webhooks\",\n    \"callbacks\": \"example_callbacks\",\n    \"current_version_step_count\": 5,\n    \"current_version_connector_count\": 5,\n    \"current_version_script_count\": 5,\n    \"current_version_cache_count\": 5,\n    \"current_version_data_pool_count\": 5,\n    \"current_version_cross_ref_count\": 5,\n    \"use_queued_time\": \"example_use_queued_time\",\n    \"remove_failed_payloads\": [],\n    \"priority\": 1,\n    \"prod_flag\": [],\n    \"deployments\": [],\n    \"webhooks_count\": 5,\n    \"callbacks_count\": 5,\n    \"marketplace_app_id\": 1,\n    \"blueprint_id\": 1,\n    \"blueprint_version_number\": \"example_blueprint_version_number\"\n  }\n}"},{"id":"bff70004-5de2-4dc9-bb71-c3b3a2395dc0","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"body\": \"string\",\n  \"format\": \"json\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0432f1eb-226c-41ad-a328-73e2bcef9d0e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"body\": \"string\",\n  \"format\": \"json\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"13638e68-75ec-410e-a316-30d76be44505","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Inactive\",\n  \"body\": \"string\",\n  \"format\": \"json\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"body\": [\n      \"The body must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"c44ce99a-1b89-4291-8d5b-c9b898d5154a"},{"name":"Update Flow Webhook","id":"f1f55a6e-79e8-4cab-a1d7-41cc21e91600","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Draft\",\n  \"body\": \"string\",\n  \"format\": \"json\",\n  \"hmac_algorithm\": \"string\",\n  \"hmac_secret_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","description":"<p>Updates an existing webhook for a specific flow.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>body</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>format</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","webhooks",":webhook"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"ebc5282d-b422-4f4c-952b-66ab6ca910de","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"},{"id":"a7041551-3b71-450b-bf79-9893d1b2d84c","description":{"content":"<p>The webhook identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"webhook"}]}},"response":[{"id":"1e22e0af-df29-493f-9c8e-f8d6599d2bd0","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Draft\",\n  \"body\": \"string\",\n  \"format\": \"json\",\n  \"hmac_algorithm\": \"string\",\n  \"hmac_secret_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks",":webhook"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"enabled_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"status\": \"Draft\",\n    \"format\": \"csv\",\n    \"body\": \"example_body\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"labels\": \"example_labels\",\n    \"notification_groups\": \"example_notification_groups\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"description\": \"A description of the resource\",\n    \"layout_direction\": \"example_layout_direction\",\n    \"is_enabled\": {},\n    \"latest_version\": {},\n    \"current_version\": {},\n    \"deployed_version\": {},\n    \"latest_deployed_version\": [],\n    \"versions\": [],\n    \"version_type_counts\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": \"example_webhooks\",\n    \"callbacks\": \"example_callbacks\",\n    \"current_version_step_count\": 5,\n    \"current_version_connector_count\": 5,\n    \"current_version_script_count\": 5,\n    \"current_version_cache_count\": 5,\n    \"current_version_data_pool_count\": 5,\n    \"current_version_cross_ref_count\": 5,\n    \"use_queued_time\": \"example_use_queued_time\",\n    \"remove_failed_payloads\": [],\n    \"priority\": 1,\n    \"prod_flag\": [],\n    \"deployments\": [],\n    \"webhooks_count\": 5,\n    \"callbacks_count\": 5,\n    \"marketplace_app_id\": 1,\n    \"blueprint_id\": 1,\n    \"blueprint_version_number\": \"example_blueprint_version_number\"\n  }\n}"},{"id":"d54e9244-c6f4-4dbd-beca-4a5c21145cd5","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Draft\",\n  \"body\": \"string\",\n  \"format\": \"json\",\n  \"hmac_algorithm\": \"string\",\n  \"hmac_secret_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks",":webhook"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bbd81c74-ce9a-47f5-b267-b9c85dc825df","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Draft\",\n  \"body\": \"string\",\n  \"format\": \"json\",\n  \"hmac_algorithm\": \"string\",\n  \"hmac_secret_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks",":webhook"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"dd4bcecc-4357-448e-b33d-5a41962821a8","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"status\": \"Draft\",\n  \"body\": \"string\",\n  \"format\": \"json\",\n  \"hmac_algorithm\": \"string\",\n  \"hmac_secret_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks",":webhook"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"body\": [\n      \"The body must be a string.\"\n    ],\n    \"hmac_secret_key\": [\n      \"The hmac secret key must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"f1f55a6e-79e8-4cab-a1d7-41cc21e91600"},{"name":"Delete Flow Webhook","id":"409a5e2e-63a3-492e-bfe4-61d3b1bf7fce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","description":"<p>Permanently deletes a specific webhook for a specific flow.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","flows",":flow","webhooks",":webhook"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"16d9a9ac-3787-45c0-b8b6-45f46d38a696","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"},{"id":"dffb7313-f1af-4cea-b416-11bbbdaa7ca1","description":{"content":"<p>The webhook identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"webhook"}]}},"response":[{"id":"569d0bae-bac5-4fde-a233-81263bb7e064","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks",":webhook"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"5f8858c5-64be-4f58-a7a1-7fad419e775c","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks",":webhook"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c10d2978-bb88-4403-a257-1cc5ebc79fae","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/flows/:flow/webhooks/:webhook","host":["https://core.wearepatchworks.com"],"path":["api","v1","flows",":flow","webhooks",":webhook"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"409a5e2e-63a3-492e-bfe4-61d3b1bf7fce"}],"id":"95cfddc3-fe3d-41aa-9539-eee7704920ab","_postman_id":"95cfddc3-fe3d-41aa-9539-eee7704920ab","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Labels","item":[{"name":"List Labels","id":"d0136ee4-041c-4984-aa66-79e57c2a739a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/labels","description":"<p>Retrieves a paginated list of labels. Can be filtered by <code>name</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","labels"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: name, colour</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"2bb54d48-1081-4662-a90a-7b15a437c700","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, colour","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"colour\": \"blue\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"name\": \"My Example\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/labels\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/labels?page=1\",\n    \"last\": \"https://api.example.com/api/v1/labels?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"f837d530-d89c-4771-9fa2-c1770d7f9afb","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, colour","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"84de2f40-3c04-4503-9785-568de8f93658","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, colour","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d0136ee4-041c-4984-aa66-79e57c2a739a"},{"name":"Create Label","id":"50e4b0d8-96e0-4e18-b9cc-9a5164e8cc0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/labels","description":"<p>Creates a new label.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","labels"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"f7ba6d13-e037-49ae-bbc8-e7068bef2970","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/labels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"colour\": \"blue\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\"\n  }\n}"},{"id":"c5988874-ea12-43c6-8a3b-df8aae2f7d15","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/labels"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"25a522b2-a5fc-4c31-9d91-61d42e83334d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/labels"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7c1f37f5-bf5b-4102-a250-0f8b1586eb5d","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/labels"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"colour\": [\n      \"The colour field is required.\"\n    ]\n  }\n}"}],"_postman_id":"50e4b0d8-96e0-4e18-b9cc-9a5164e8cc0b"},{"name":"Get Label","id":"d3efabb7-5dca-4b30-9f86-fc4db886606b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/labels/:label","description":"<p>Retrieves the details of a specific label.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","labels",":label"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: name, colour</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"9167e1a7-3233-4a8a-95fb-1929f568b540","description":{"content":"<p>The label identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"label"}]}},"response":[{"id":"d025106d-ff81-4947-9bcb-521c8797d806","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, colour","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"colour\": \"blue\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\"\n  }\n}"},{"id":"ea6a32a2-417e-48c8-b000-df390b0c1322","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, colour","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c2783cb6-50bd-459e-bf72-8d4c629d3755","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: name, colour","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d3efabb7-5dca-4b30-9f86-fc4db886606b"},{"name":"Update Label","id":"c6637866-d52a-4970-99d2-b501ff2524ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"yellow\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/labels/:label","description":"<p>Updates an existing label.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","labels",":label"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"55e2138d-d41e-4ea4-8895-3286add65bd2","description":{"content":"<p>The label identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"label"}]}},"response":[{"id":"e860e87c-62a6-4e6c-a1ab-f2858de86d5a","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"yellow\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"colour\": \"blue\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"name\": \"My Example\"\n  }\n}"},{"id":"f6050160-a503-4187-b442-3d2ea97052ed","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"yellow\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b9446de6-29ea-4f0c-ada4-72352867be72","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"yellow\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a66a0ed3-7dfc-4806-849e-9b9116f86de3","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"yellow\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"c6637866-d52a-4970-99d2-b501ff2524ca"},{"name":"Delete Label","id":"e49af7f6-934d-4558-9200-28e7b3eaf418","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/labels/:label","description":"<p>Permanently deletes a specific label.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","labels",":label"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"c184802f-0380-422d-b385-e0accf87e8c6","description":{"content":"<p>The label identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"label"}]}},"response":[{"id":"42bb6179-a29b-49d7-86f3-8572476d1560","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"a4ac549d-00ba-4101-b39f-f5016eb04dac","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e483b41e-81be-4acc-bb07-d2923e352c2a","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/labels/:label","host":["https://core.wearepatchworks.com"],"path":["api","v1","labels",":label"],"variable":[{"key":"label","value":"string","description":"The label identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e49af7f6-934d-4558-9200-28e7b3eaf418"}],"id":"34bf288a-ed9c-4134-9ee3-5e890f45cdf0","_postman_id":"34bf288a-ed9c-4134-9ee3-5e890f45cdf0","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Mapping","item":[{"name":"Create Mapping","id":"c1bf7cfa-fa70-4db1-83d9-efbc9f801622","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"flow_step_id\": \"string\",\n  \"mapping\": \"string\",\n  \"mapping_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/mapping","description":"<p>Creates a new mapping for a specific flow step.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mapping"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"d2a6c790-35c9-4edb-9408-02e6af3ef02b","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"flow_step_id\": \"string\",\n  \"mapping\": \"string\",\n  \"mapping_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/mapping"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_version_id\": 1,\n    \"flow_step_id\": 1,\n    \"mapping\": \"example_mapping\",\n    \"mapping_file\": \"example_mapping_file\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"3cc07ce9-1b83-47a6-809a-f3aab2bc55cd","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"flow_step_id\": \"string\",\n  \"mapping\": \"string\",\n  \"mapping_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/mapping"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b07f90d0-9d8f-48da-b106-f28b3120ac6f","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"flow_step_id\": \"string\",\n  \"mapping\": \"string\",\n  \"mapping_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/mapping"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"34ea78d4-b04c-426b-bc29-67a5945a5470","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"flow_step_id\": \"string\",\n  \"mapping\": \"string\",\n  \"mapping_file\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/mapping"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"c1bf7cfa-fa70-4db1-83d9-efbc9f801622"},{"name":"Generate Mapping","id":"9e2b0432-052c-424a-97ee-32656e865b0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mapping/generate/:sourceEndpoint/:destinationEndpoint","description":"<p>Auto-generates a mapping between a specific source endpoint and a specific destination endpoint using field tag matching.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mapping","generate",":sourceEndpoint",":destinationEndpoint"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"da69b34c-94b3-4b48-bf21-ecfbf6c85cd8","description":{"content":"<p>The sourceEndpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"sourceEndpoint"},{"id":"88d4697d-871f-46be-91f6-d1f9e979dfb0","description":{"content":"<p>The destinationEndpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"destinationEndpoint"}]}},"response":[{"id":"a8465242-fd15-4943-bf5e-271fe16f538c","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/generate/:sourceEndpoint/:destinationEndpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping","generate",":sourceEndpoint",":destinationEndpoint"],"variable":[{"key":"sourceEndpoint","value":"string","description":"The sourceEndpoint identifier."},{"key":"destinationEndpoint","value":"string","description":"The destinationEndpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"58a8c20d-7a5c-43d6-94a3-2366a422200c","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/generate/:sourceEndpoint/:destinationEndpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping","generate",":sourceEndpoint",":destinationEndpoint"],"variable":[{"key":"sourceEndpoint","value":"string","description":"The sourceEndpoint identifier."},{"key":"destinationEndpoint","value":"string","description":"The destinationEndpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b05e211a-453c-4420-a13e-3dd8371bddb1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/generate/:sourceEndpoint/:destinationEndpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping","generate",":sourceEndpoint",":destinationEndpoint"],"variable":[{"key":"sourceEndpoint","value":"string","description":"The sourceEndpoint identifier."},{"key":"destinationEndpoint","value":"string","description":"The destinationEndpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9e2b0432-052c-424a-97ee-32656e865b0b"},{"name":"Get Mapping","id":"da51539f-4f00-427f-9d54-1e7d56de075a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mapping/:mapping","description":"<p>Retrieves the details of a specific mapping.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mapping",":mapping"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"6ff74252-b621-4398-ba62-2a71c616c9b6","description":{"content":"<p>The mapping identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mapping"}]}},"response":[{"id":"f7077899-ec47-4927-8b93-2e6638f73316","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/:mapping","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping",":mapping"],"variable":[{"key":"mapping","value":"string","description":"The mapping identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_version_id\": 1,\n    \"flow_step_id\": 1,\n    \"mapping\": \"example_mapping\",\n    \"mapping_file\": \"example_mapping_file\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"5d4e45bf-935b-4c05-9949-3f98cf3e231c","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/:mapping","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping",":mapping"],"variable":[{"key":"mapping","value":"string","description":"The mapping identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e97e3443-fd01-42c0-be4a-77b5699a3e45","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/:mapping","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping",":mapping"],"variable":[{"key":"mapping","value":"string","description":"The mapping identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"da51539f-4f00-427f-9d54-1e7d56de075a"},{"name":"Export Mapping","id":"95f7c97e-caab-46cc-b989-1c4ee56e2a9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mapping/:mapping/export","description":"<p>Exports the configuration of a specific mapping as a JSON file.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mapping",":mapping","export"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"beec5d3f-2044-46d2-bcf6-79cc699f06a8","description":{"content":"<p>The mapping identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mapping"}]}},"response":[{"id":"fc261d4a-cd1e-4dd2-b401-884492995758","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/:mapping/export","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping",":mapping","export"],"variable":[{"key":"mapping","value":"string","description":"The mapping identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"0c6753d0-7d43-4b9b-b33b-d42b899e2642","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/:mapping/export","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping",":mapping","export"],"variable":[{"key":"mapping","value":"string","description":"The mapping identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"eabe1d16-a300-4656-a875-879f735101b8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mapping/:mapping/export","host":["https://core.wearepatchworks.com"],"path":["api","v1","mapping",":mapping","export"],"variable":[{"key":"mapping","value":"string","description":"The mapping identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"95f7c97e-caab-46cc-b989-1c4ee56e2a9b"}],"id":"6437e1a3-daa7-4a0a-94f7-063bde812c74","_postman_id":"6437e1a3-daa7-4a0a-94f7-063bde812c74","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Marketplace Apps","item":[{"name":"List Marketplace Apps","id":"917b15f1-08a1-4982-921f-493746986f5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps","description":"<p>Retrieves a paginated list of marketplace app versions.\nNote: A marketplace app is a version of a blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","marketplace-apps"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by allowed.</p>\n","type":"text/plain"},"key":"filter[allowed]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private.</p>\n","type":"text/plain"},"key":"filter[private]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visibility.</p>\n","type":"text/plain"},"key":"filter[visibility]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private_or_allowed.</p>\n","type":"text/plain"},"key":"filter[private_or_allowed]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowTemplates, crossReferenceLookupTemplates, crossReferenceLookupTemplates.crossReferenceLookupValueTemplates, systemTemplates, systemTemplates.logo, scriptTemplates, cacheTemplates, dataPoolTemplates, company, marketplaceCompany, publicCompany, installs</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, id, created_at, installs_avg_install_duration</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"ca758c17-3966-4607-b8c1-f2befdc3de7d","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by allowed.","key":"filter[allowed]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by private_or_allowed.","key":"filter[private_or_allowed]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowTemplates, crossReferenceLookupTemplates, crossReferenceLookupTemplates.crossReferenceLookupValueTemplates, systemTemplates, systemTemplates.logo, scriptTemplates, cacheTemplates, dataPoolTemplates, company, marketplaceCompany, publicCompany, installs","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, id, created_at, installs_avg_install_duration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"help_guide\": \"example_help_guide\",\n      \"flow_version_ids\": \"example_flow_version_ids\",\n      \"cross_reference_lookup_ids\": \"example_cross_reference_lookup_ids\",\n      \"system_ids\": \"example_system_ids\",\n      \"script_version_ids\": \"example_script_version_ids\",\n      \"cache_ids\": \"example_cache_ids\",\n      \"data_pool_ids\": \"example_data_pool_ids\",\n      \"private\": \"example_private\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/marketplace-apps\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/marketplace-apps?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/marketplace-apps?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"2c313d50-41d5-4a33-bc7c-d53d8c5b40a4","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by allowed.","key":"filter[allowed]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by private_or_allowed.","key":"filter[private_or_allowed]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowTemplates, crossReferenceLookupTemplates, crossReferenceLookupTemplates.crossReferenceLookupValueTemplates, systemTemplates, systemTemplates.logo, scriptTemplates, cacheTemplates, dataPoolTemplates, company, marketplaceCompany, publicCompany, installs","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, id, created_at, installs_avg_install_duration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cdd84cb4-fb0a-4451-9c67-67ee2488675a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by allowed.","key":"filter[allowed]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by private_or_allowed.","key":"filter[private_or_allowed]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowTemplates, crossReferenceLookupTemplates, crossReferenceLookupTemplates.crossReferenceLookupValueTemplates, systemTemplates, systemTemplates.logo, scriptTemplates, cacheTemplates, dataPoolTemplates, company, marketplaceCompany, publicCompany, installs","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, id, created_at, installs_avg_install_duration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"917b15f1-08a1-4982-921f-493746986f5f"},{"name":"Create Marketplace App","id":"6aeb278b-214c-46d6-b9f3-72305595dfc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"help_guide\": \"http://yuZbaE.svoFJYBSYaewRYdKuDVXONbvMn9VzN,bd7GZODOShGoteGjGi6yPz-naf9rXqh\",\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/marketplace-apps","description":"<p>Creates a new marketplace app version.\nNote: A marketplace app is a version of a blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","marketplace-apps"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"1c1f6baf-d22e-4a8f-bd8c-5f7dd4740dd8","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"help_guide\": \"http://yuZbaE.svoFJYBSYaewRYdKuDVXONbvMn9VzN,bd7GZODOShGoteGjGi6yPz-naf9rXqh\",\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/marketplace-apps"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"help_guide\": \"example_help_guide\",\n    \"flow_version_ids\": \"example_flow_version_ids\",\n    \"cross_reference_lookup_ids\": \"example_cross_reference_lookup_ids\",\n    \"system_ids\": \"example_system_ids\",\n    \"script_version_ids\": \"example_script_version_ids\",\n    \"cache_ids\": \"example_cache_ids\",\n    \"data_pool_ids\": \"example_data_pool_ids\",\n    \"private\": \"example_private\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"482c6c62-f8b8-4f62-8902-73f8e92c631d","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"help_guide\": \"http://yuZbaE.svoFJYBSYaewRYdKuDVXONbvMn9VzN,bd7GZODOShGoteGjGi6yPz-naf9rXqh\",\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/marketplace-apps"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f20ce43c-18db-42c5-8659-14ac053f8bea","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"help_guide\": \"http://yuZbaE.svoFJYBSYaewRYdKuDVXONbvMn9VzN,bd7GZODOShGoteGjGi6yPz-naf9rXqh\",\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/marketplace-apps"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f2a8f018-0296-4a2f-b9c4-4a60bf1b0e7f","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"labels\": [],\n  \"name\": \"string\",\n  \"help_guide\": \"http://yuZbaE.svoFJYBSYaewRYdKuDVXONbvMn9VzN,bd7GZODOShGoteGjGi6yPz-naf9rXqh\",\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/marketplace-apps"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"labels.*.id\": [\n      \"The labels * id field is required.\"\n    ]\n  }\n}"}],"_postman_id":"6aeb278b-214c-46d6-b9f3-72305595dfc2"},{"name":"Get Marketplace App","id":"910d8a09-f6ee-46b7-9ea9-0862b379130b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplace_app","description":"<p>Retrieves the details of a specific marketplace app version.\nNote: A marketplace app is a version of a blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","marketplace-apps",":marketplace_app"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by allowed.</p>\n","type":"text/plain"},"key":"filter[allowed]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private.</p>\n","type":"text/plain"},"key":"filter[private]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visibility.</p>\n","type":"text/plain"},"key":"filter[visibility]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private_or_allowed.</p>\n","type":"text/plain"},"key":"filter[private_or_allowed]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by label <code>id</code>.</p>\n","type":"text/plain"},"key":"filter[labelled]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowTemplates, crossReferenceLookupTemplates, crossReferenceLookupTemplates.crossReferenceLookupValueTemplates, systemTemplates, systemTemplates.logo, scriptTemplates, cacheTemplates, dataPoolTemplates, company, marketplaceCompany, publicCompany, installs</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, id, created_at, installs_avg_install_duration</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"548f104d-caa5-488f-9698-944b5850c097","description":{"content":"<p>The marketplace app identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"marketplace_app"}]}},"response":[{"id":"87ce3a16-1903-41c2-ae23-3d7d69965499","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplace_app"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by allowed.","key":"filter[allowed]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by private_or_allowed.","key":"filter[private_or_allowed]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowTemplates, crossReferenceLookupTemplates, crossReferenceLookupTemplates.crossReferenceLookupValueTemplates, systemTemplates, systemTemplates.logo, scriptTemplates, cacheTemplates, dataPoolTemplates, company, marketplaceCompany, publicCompany, installs","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, id, created_at, installs_avg_install_duration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"help_guide\": \"example_help_guide\",\n    \"flow_version_ids\": \"example_flow_version_ids\",\n    \"cross_reference_lookup_ids\": \"example_cross_reference_lookup_ids\",\n    \"system_ids\": \"example_system_ids\",\n    \"script_version_ids\": \"example_script_version_ids\",\n    \"cache_ids\": \"example_cache_ids\",\n    \"data_pool_ids\": \"example_data_pool_ids\",\n    \"private\": \"example_private\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"4fae7757-1890-4a8c-ba98-54f540aea231","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplace_app"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by allowed.","key":"filter[allowed]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by private_or_allowed.","key":"filter[private_or_allowed]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowTemplates, crossReferenceLookupTemplates, crossReferenceLookupTemplates.crossReferenceLookupValueTemplates, systemTemplates, systemTemplates.logo, scriptTemplates, cacheTemplates, dataPoolTemplates, company, marketplaceCompany, publicCompany, installs","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, id, created_at, installs_avg_install_duration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c9244d0e-9986-45fe-aa57-4019bc0877b2","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplace_app"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by allowed.","key":"filter[allowed]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by private_or_allowed.","key":"filter[private_or_allowed]","value":"string","disabled":true},{"description":"Filter results by label `id`.","key":"filter[labelled]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowTemplates, crossReferenceLookupTemplates, crossReferenceLookupTemplates.crossReferenceLookupValueTemplates, systemTemplates, systemTemplates.logo, scriptTemplates, cacheTemplates, dataPoolTemplates, company, marketplaceCompany, publicCompany, installs","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, id, created_at, installs_avg_install_duration","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"910d8a09-f6ee-46b7-9ea9-0862b379130b"},{"name":"Delete Marketplace App","id":"2b5a2256-c93a-478d-83db-26973b429f0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplace_app","description":"<p>Permanently deletes a specific marketplace app version.\nNote: A marketplace app is a version of a blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","marketplace-apps",":marketplace_app"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"e1fb2bba-988d-4a39-bea3-0d384db6f8a2","description":{"content":"<p>The marketplace app identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"marketplace_app"}]}},"response":[{"id":"2354090c-3ba1-41e4-9921-dc26779a817e","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplace_app"],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"ed981567-25a8-4b47-8faa-d042b4812101","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplace_app"],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b594ad3e-242b-4c72-bb38-67b457872afa","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplace_app"],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2b5a2256-c93a-478d-83db-26973b429f0f"},{"name":"Update Marketplace App","id":"5edb6c3a-7cdf-4550-bf34-ee494c23b4c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplace_app","description":"<p>Updates an existing marketplace app version.\nNote: A marketplace app is a version of a blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","marketplace-apps",":marketplace_app"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"428fb98a-185c-4fe3-937d-3b545073107b","description":{"content":"<p>The marketplace app identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"marketplace_app"}]}},"response":[{"id":"4f79e222-d097-40c1-95cc-68f7a840f138","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","marketplace-apps",":marketplace_app"],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"help_guide\": \"example_help_guide\",\n    \"flow_version_ids\": \"example_flow_version_ids\",\n    \"cross_reference_lookup_ids\": \"example_cross_reference_lookup_ids\",\n    \"system_ids\": \"example_system_ids\",\n    \"script_version_ids\": \"example_script_version_ids\",\n    \"cache_ids\": \"example_cache_ids\",\n    \"data_pool_ids\": \"example_data_pool_ids\",\n    \"private\": \"example_private\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"bde3c6bb-8a3f-4850-a726-0ff3e5ea711e","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","marketplace-apps",":marketplace_app"],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"51502f75-8e06-468a-b4ac-503d8ec9a712","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","marketplace-apps",":marketplace_app"],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"41aadd82-74b9-4058-84ed-fbbf9b0bbc62","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_ids\": \"string\",\n  \"cross_reference_lookup_ids\": \"string\",\n  \"system_ids\": \"string\",\n  \"script_version_ids\": \"string\",\n  \"cache_ids\": \"string\",\n  \"data_pool_ids\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplace_app","host":["https://core.wearepatchworks.com"],"path":["api","v1","marketplace-apps",":marketplace_app"],"variable":[{"key":"marketplace_app","value":"string","description":"The marketplace app identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"5edb6c3a-7cdf-4550-bf34-ee494c23b4c0"},{"name":"Install Marketplace App","id":"dd831457-5c44-4c6b-8803-0842fc9a4605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplaceApp/install","description":"<p>Installs a specific marketplace app version.\nNote: A marketplace app is a version of a blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","marketplace-apps",":marketplaceApp","install"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"773643fe-38ac-4940-8eb7-e47191355359","description":{"content":"<p>The marketplaceApp identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"marketplaceApp"}]}},"response":[{"id":"7a0db1e9-8e47-4e95-9e0b-216ed5dc5083","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplaceApp/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","marketplace-apps",":marketplaceApp","install"],"variable":[{"key":"marketplaceApp","value":"string","description":"The marketplaceApp identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"63fac77b-b6b6-4798-9996-034b6f951b3b","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplaceApp/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","marketplace-apps",":marketplaceApp","install"],"variable":[{"key":"marketplaceApp","value":"string","description":"The marketplaceApp identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0ee64f74-08cf-441c-98a9-0c8be9dd3898","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplaceApp/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","marketplace-apps",":marketplaceApp","install"],"variable":[{"key":"marketplaceApp","value":"string","description":"The marketplaceApp identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4f447244-d012-4824-8fe9-0c58a4c873f5","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_template_ids\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/marketplace-apps/:marketplaceApp/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","marketplace-apps",":marketplaceApp","install"],"variable":[{"key":"marketplaceApp","value":"string","description":"The marketplaceApp identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"dd831457-5c44-4c6b-8803-0842fc9a4605"},{"name":"Get Convertible","id":"d161626f-91d2-4ddf-ab65-abe8c0321c5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/convertible","description":"<p>To be confirmed.\nNote: A marketplace app is a version of a blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","marketplace-apps","convertible"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"76ed9a28-22fe-4369-93a1-14bfdca1495a","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/convertible"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8759a3e5-3258-4277-bcee-ecfd5e9d62d0","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/convertible"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"232e6fe5-0e2b-489e-8f8c-9289683b9e81","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/convertible"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d161626f-91d2-4ddf-ab65-abe8c0321c5a"},{"name":"Convert Marketplace App","id":"2573fb96-ec5d-469d-8c3f-f4d3e715d69b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplaceApp/convert","description":"<p>To be confirmed.\nNote: A marketplace app is a version of a blueprint.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","marketplace-apps",":marketplaceApp","convert"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"55ec8166-befa-46f0-8a6b-9183139a954a","description":{"content":"<p>The marketplaceApp identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"marketplaceApp"}]}},"response":[{"id":"43d1a5ac-5aac-4f8e-8a73-d6149090a8c7","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplaceApp/convert","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplaceApp","convert"],"variable":[{"key":"marketplaceApp","value":"string","description":"The marketplaceApp identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b4ac2a35-29f5-4051-8574-701d2f89c74f","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplaceApp/convert","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplaceApp","convert"],"variable":[{"key":"marketplaceApp","value":"string","description":"The marketplaceApp identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c97b1174-189e-4bbc-943d-82f00dd08464","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplaceApp/convert","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplaceApp","convert"],"variable":[{"key":"marketplaceApp","value":"string","description":"The marketplaceApp identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"249975dd-cf44-47ec-8fc5-bb72fdde0a39","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/marketplace-apps/:marketplaceApp/convert","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","marketplace-apps",":marketplaceApp","convert"],"variable":[{"key":"marketplaceApp","value":"string","description":"The marketplaceApp identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"2573fb96-ec5d-469d-8c3f-f4d3e715d69b"}],"id":"6ffcf523-fbca-44ec-9fef-0bbad20d675e","_postman_id":"6ffcf523-fbca-44ec-9fef-0bbad20d675e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"MCP Servers","item":[{"name":"List MCP Servers","id":"2136de98-1ca7-47ba-9078-014f15092280","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers","description":"<p>Retrieves a paginated list of MCP servers.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"ccadf28f-8fd5-4cb5-b09f-540b76763c35","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"45aaed5e-4422-40cc-bc3a-9fda061776eb","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0d662638-ecae-4701-a7d2-d337d199344c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2136de98-1ca7-47ba-9078-014f15092280"},{"name":"Create MCP Server","id":"8d51f65f-25f8-4bef-9fdc-7eb566c0e727","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers","description":"<p>Creates a new MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"2cbf1151-b4bc-478c-a2f9-7803931c7e74","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3f181aa3-1a29-4e80-9630-979579face77","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"66982f22-c437-4aaf-aa42-a916fbb22a23","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a1787189-6a82-481d-a44d-8d90b1cdddb3","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"8d51f65f-25f8-4bef-9fdc-7eb566c0e727"},{"name":"Get MCP Server","id":"ac6dff35-2cbb-41c9-acd0-23bdc4a35937","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","description":"<p>Retrieves the details of a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"772caa07-1097-4ff8-8e63-9931c2de525c","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"76989cf1-5365-48c6-b723-1fde533ad0a7","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3c04fa83-2879-47a7-9e07-27548a9d28b3","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ad583ffa-8463-4e69-95a4-7f422fa5dc28","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ac6dff35-2cbb-41c9-acd0-23bdc4a35937"},{"name":"Update MCP Server","id":"6ed1ec9d-0487-4217-93fa-98c42b2e38c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","description":"<p>Updates an existing MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"57e4643c-179b-48b3-9849-716891276f4b","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"e7fcca55-c0a7-4a3e-a3a3-a4a70f47723d","name":"Successful response","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9470adbe-1c58-4f60-9a02-fdcfc6c906a5","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fe268747-019f-472a-bed6-20b65a0dcd7f","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3e350b42-b6f8-4c1b-8af1-1cc56c92a943","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"6ed1ec9d-0487-4217-93fa-98c42b2e38c0"},{"name":"Delete MCP Server","id":"239a5134-c6b1-4f34-8b69-aa6452118925","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","description":"<p>Permanently deletes a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"6e29b566-a84e-42ea-8372-db89b594af7f","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"94d4883d-2680-4ed1-b454-c039897cbf68","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ae86238e-d3c0-4dfe-933c-fcb9e8e6c1f9","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c8eefe48-3627-4e0e-8a44-03d41f8c07ba","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"239a5134-c6b1-4f34-8b69-aa6452118925"},{"name":"Delete MCP Server","id":"cf5db030-60d2-4e92-971f-f854895ca0d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/delete","description":"<p>Permanently deletes a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server","delete"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9dc70436-d97d-4d47-8633-fb70ab949e9d","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"34f18c39-4bc0-4e57-8591-6d6381481265","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/delete","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","delete"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ee7e0c41-5a91-4c7a-88da-3afb359ec991","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/delete","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","delete"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"13266df3-af48-4318-9ec1-4efbe4850b82","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/delete","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","delete"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cf5db030-60d2-4e92-971f-f854895ca0d7"},{"name":"Deploy MCP Server","id":"08bf72cb-5f1e-4cb7-bc8c-65929912e07d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/deploy","description":"<p>Deploys a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server","deploy"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"dc23cd46-aadd-40d1-80bb-6d6c749e0628","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"b278a672-4091-4355-9cb8-503e779d59f5","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","deploy"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e38dea6c-8d17-49e8-95ca-08a36c0ae547","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","deploy"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"aa4d62bf-0814-413d-b5cf-051a75f9ea83","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","deploy"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"49d1e8a2-2fae-48e6-9c2e-71336b3e26f7","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","deploy"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"08bf72cb-5f1e-4cb7-bc8c-65929912e07d"},{"name":"Undeploy MCP Server","id":"e344e043-54da-4681-b31b-425e8cfac20d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/undeploy","description":"<p>Undeploys a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server","undeploy"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"2da878ea-f0eb-45f1-98bc-a8f9729765f3","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"810311c0-33cd-4e6c-8774-f399f660ddf5","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/undeploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","undeploy"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"918ac8f0-28a9-4a1e-9fd5-903c96a463fb","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/undeploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","undeploy"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"30bfd897-6e78-45ae-b7b5-6ff01b2d5ee8","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/undeploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","undeploy"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"617f71d9-2628-4bef-b181-dfa01893af1f","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/undeploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","undeploy"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"e344e043-54da-4681-b31b-425e8cfac20d"},{"name":"Duplicate MCP Server","id":"6f1dce0c-c1d6-4bf9-8f4c-eb387e33f3b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/duplicate","description":"<p>Creates a duplicate of a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server","duplicate"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"0c0dd203-9703-407a-ade4-b3f41e567e38","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"03360a25-edca-4202-aba3-9359e7fd4c8a","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/duplicate","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","duplicate"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6726c5d6-460b-4a66-b333-8c332775ae54","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/duplicate","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","duplicate"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9fcd233b-2be7-45ae-8b12-d2ee723b4da6","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/duplicate","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","duplicate"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e5a24ce2-1420-4268-b9bf-17549cbad0f8","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/duplicate","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","duplicate"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"6f1dce0c-c1d6-4bf9-8f4c-eb387e33f3b2"},{"name":"Execute MCP Server Tool","id":"779d2ee4-4f90-44d0-85ad-b76d3bf5c64d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/execute-tool","description":"<p>Executes a tool on a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server","execute-tool"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"1c1624c6-1044-4e49-9543-75a9ec00aa70","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"0425bb3d-4d3d-406b-b124-2ade293baecf","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/execute-tool","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","execute-tool"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"71a22f7b-807a-48b5-9b6f-32878e8dc047","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/execute-tool","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","execute-tool"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b11d2d62-e2f2-4a65-948e-0ffacfc736a7","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/execute-tool","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","execute-tool"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"790db140-4293-4f8d-81ad-3ab0e6ffb754","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/execute-tool","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","execute-tool"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"779d2ee4-4f90-44d0-85ad-b76d3bf5c64d"},{"name":"Get Rate Limit Status","id":"eb8d8dd5-cd22-4011-92f0-ed8b8f6863fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/rate-limit-status","description":"<p>Retrieves the current rate limit status for MCP servers.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers","rate-limit-status"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"685082e4-bf0b-4bc3-b7a9-ffe152b5bd7f","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/rate-limit-status"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"91a3a8b0-d480-4dbc-b017-0c2025325907","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/rate-limit-status"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"af5940a0-560d-4abb-a2fe-6aa4d7296be4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/rate-limit-status"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eb8d8dd5-cd22-4011-92f0-ed8b8f6863fe"},{"name":"Get Logs","id":"b0f1b6a4-89a1-4786-ab1f-994c1c890daf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/logs","description":"<p>Retrieves logs for a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server","logs"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"52ae2195-b817-4322-bde8-f16a6665f329","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"42d4dac9-7c07-4bd0-91cb-eb9a7299ef7c","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","logs"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"22b11978-36f4-4d50-a89d-5f7f14c19d1a","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","logs"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8c31ae76-80d2-4473-a18a-def23db64571","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","logs"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b0f1b6a4-89a1-4786-ab1f-994c1c890daf"},{"name":"Get Tools","id":"7a9ef9e4-d7fb-4bba-b874-8cb1afdbac7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/tools","description":"<p>Retrieves the available tools for a specific MCP server.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","mcp-servers",":mcp_server","tools"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d9db8ce7-99f4-45d7-98e2-c515a0cad9e4","description":{"content":"<p>The mcp server identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"mcp_server"}]}},"response":[{"id":"4006deaf-8edd-424b-a585-9e40eeb8f7cd","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/tools","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","tools"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a87c31a6-07fc-42cf-a889-82afbfdcf674","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/tools","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","tools"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6786900c-9bf9-4200-a37d-8f2c7f7a8e7a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/mcp-servers/:mcp_server/tools","host":["https://core.wearepatchworks.com"],"path":["api","v1","mcp-servers",":mcp_server","tools"],"variable":[{"key":"mcp_server","value":"string","description":"The mcp server identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7a9ef9e4-d7fb-4bba-b874-8cb1afdbac7a"}],"id":"279db82a-5680-49ce-a148-73e0beeafde7","_postman_id":"279db82a-5680-49ce-a148-73e0beeafde7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Media Files","item":[{"name":"List Media Files","id":"e91806a1-9258-404c-a9f5-5f2be0f4bab5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/media-files","description":"<p>Retrieves a paginated list of media files.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","media-files"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by mime_type.</p>\n","type":"text/plain"},"key":"filter[mime_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by is_downloadable_file.</p>\n","type":"text/plain"},"key":"filter[is_downloadable_file]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by not_expired.</p>\n","type":"text/plain"},"key":"filter[not_expired]","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"83fd0a22-da6a-414d-bac0-768506ff71c9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/media-files","host":["https://core.wearepatchworks.com"],"path":["api","v1","media-files"],"query":[{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by mime_type.","key":"filter[mime_type]","value":"string","disabled":true},{"description":"Filter results by is_downloadable_file.","key":"filter[is_downloadable_file]","value":"string","disabled":true},{"description":"Filter results by not_expired.","key":"filter[not_expired]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"model_type\": \"example_model_type\",\n      \"model_id\": 1,\n      \"file_name\": \"example_file_name\",\n      \"mime_type\": \"example_mime_type\",\n      \"expires_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"is_expired\": true\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/media-files\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/media-files?page=1\",\n    \"last\": \"https://api.example.com/api/v1/media-files?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"7f26af16-c816-49a1-97c3-cb1e364611ee","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/media-files","host":["https://core.wearepatchworks.com"],"path":["api","v1","media-files"],"query":[{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by mime_type.","key":"filter[mime_type]","value":"string","disabled":true},{"description":"Filter results by is_downloadable_file.","key":"filter[is_downloadable_file]","value":"string","disabled":true},{"description":"Filter results by not_expired.","key":"filter[not_expired]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"940f0792-0900-4db5-a047-6bb1b0c2cd0a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/media-files","host":["https://core.wearepatchworks.com"],"path":["api","v1","media-files"],"query":[{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by mime_type.","key":"filter[mime_type]","value":"string","disabled":true},{"description":"Filter results by is_downloadable_file.","key":"filter[is_downloadable_file]","value":"string","disabled":true},{"description":"Filter results by not_expired.","key":"filter[not_expired]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e91806a1-9258-404c-a9f5-5f2be0f4bab5"},{"name":"Download Media File","id":"8973ac16-5edb-4d60-bd66-b71d854e0ff6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/media-files/:media_file/download","description":"<p>Downloads a specific media file.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","media-files",":media_file","download"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"fb3c9f0b-f62f-4d90-81d7-7f20d4360a2a","description":{"content":"<p>The media file identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"media_file"}]}},"response":[{"id":"f7907944-9e22-4e88-b9bd-1b8d0016e841","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/media-files/:media_file/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","media-files",":media_file","download"],"variable":[{"key":"media_file","value":"string","description":"The media file identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"bfea7c36-0fd8-4936-9878-d06068960b70","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/media-files/:media_file/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","media-files",":media_file","download"],"variable":[{"key":"media_file","value":"string","description":"The media file identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a5fb8268-7b24-415a-bd4c-cbb1aa79b738","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/media-files/:media_file/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","media-files",":media_file","download"],"variable":[{"key":"media_file","value":"string","description":"The media file identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8973ac16-5edb-4d60-bd66-b71d854e0ff6"}],"id":"e7b35ba5-a53c-45aa-9054-2ab89b6a4853","_postman_id":"e7b35ba5-a53c-45aa-9054-2ab89b6a4853","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Message Broker Queues","item":[{"name":"Create Message Broker Queue Flow","id":"12175e41-ca9b-45c8-8dbb-8013427c1c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 8661\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows","description":"<p>Assigns a flow to a specific message broker queue.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-broker-queues",":message_broker_queue","flows"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"5261fc14-aa25-480e-aaab-c981faed098b","description":{"content":"<p>The message broker queue identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker_queue"}]}},"response":[{"id":"fed05cc3-d97b-461b-a11b-7c861422b5f0","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 8661\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-broker-queues",":message_broker_queue","flows"],"variable":[{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"My Example\",\n    \"enabled_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"status\": \"Draft\",\n    \"format\": \"csv\",\n    \"body\": \"example_body\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"labels\": \"example_labels\",\n    \"notification_groups\": \"example_notification_groups\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"description\": \"A description of the resource\",\n    \"layout_direction\": \"example_layout_direction\",\n    \"is_enabled\": {},\n    \"latest_version\": {},\n    \"current_version\": {},\n    \"deployed_version\": {},\n    \"latest_deployed_version\": [],\n    \"versions\": [],\n    \"version_type_counts\": [],\n    \"message_brokers\": [],\n    \"message_broker_queues\": [],\n    \"notification_group_ids\": [],\n    \"webhooks\": \"example_webhooks\",\n    \"callbacks\": \"example_callbacks\",\n    \"current_version_step_count\": 5,\n    \"current_version_connector_count\": 5,\n    \"current_version_script_count\": 5,\n    \"current_version_cache_count\": 5,\n    \"current_version_data_pool_count\": 5,\n    \"current_version_cross_ref_count\": 5,\n    \"use_queued_time\": \"example_use_queued_time\",\n    \"remove_failed_payloads\": [],\n    \"priority\": 1,\n    \"prod_flag\": [],\n    \"deployments\": [],\n    \"webhooks_count\": 5,\n    \"callbacks_count\": 5,\n    \"marketplace_app_id\": 1,\n    \"blueprint_id\": 1,\n    \"blueprint_version_number\": \"example_blueprint_version_number\"\n  }\n}"},{"id":"3c717afe-bf16-4e5d-a87e-7074581795ca","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 8661\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-broker-queues",":message_broker_queue","flows"],"variable":[{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7b16440e-a9ae-4d94-b528-231432df01df","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 8661\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-broker-queues",":message_broker_queue","flows"],"variable":[{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e1f96882-1309-4556-b598-c7822816e821","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": 8661\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-broker-queues",":message_broker_queue","flows"],"variable":[{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"flow_id\": [\n      \"The flow id field is required.\"\n    ]\n  }\n}"}],"_postman_id":"12175e41-ca9b-45c8-8dbb-8013427c1c56"},{"name":"Delete Message Broker Queue Flow","id":"3140c381-bf0e-4ab9-8132-a0a34f1b6db8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows/:flow","description":"<p>Removes a flow from a specific message broker queue.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-broker-queues",":message_broker_queue","flows",":flow"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"89b0a8af-9fa5-40bc-ae62-4f41c14fb01e","description":{"content":"<p>The message broker queue identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker_queue"},{"id":"b9e8ee0c-9ad0-44f6-9e4e-055e850ee5bf","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"97e9865a-ab15-4aa0-8262-25dc3341d476","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-broker-queues",":message_broker_queue","flows",":flow"],"variable":[{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."},{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"b754d5e9-cb16-4ce6-863f-936ecc04a97d","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-broker-queues",":message_broker_queue","flows",":flow"],"variable":[{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."},{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6dc657f8-62a0-4d81-af01-7f0027096686","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-broker-queues/:message_broker_queue/flows/:flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-broker-queues",":message_broker_queue","flows",":flow"],"variable":[{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."},{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3140c381-bf0e-4ab9-8132-a0a34f1b6db8"},{"name":"List Message Brokers","id":"2cae79f0-5433-479c-b7e9-3ec0db07eb7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","description":"<p>Retrieves a paginated list of queues for a specific message broker.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by message_broker_id.</p>\n","type":"text/plain"},"key":"filter[message_broker_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flows, messageBroker</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, message_broker_id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"ae6abff2-4e9f-4b49-ba91-6a9d8af09bf5","description":{"content":"<p>The message broker identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker"}]}},"response":[{"id":"e38d1b69-5267-41f5-a209-c82813907de6","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by message_broker_id.","key":"filter[message_broker_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBroker","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, message_broker_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"flow_id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/message-brokers/{message_broker}/message-broker-queues\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/message-brokers/{message_broker}/message-broker-queues?page=1\",\n    \"last\": \"https://api.example.com/api/v1/message-brokers/{message_broker}/message-broker-queues?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"95187a3d-1494-42c5-b2b6-3c715bf294cd","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by message_broker_id.","key":"filter[message_broker_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBroker","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, message_broker_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f39fcdf2-346f-4584-b144-3a51afb9c572","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by message_broker_id.","key":"filter[message_broker_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBroker","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, message_broker_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2cae79f0-5433-479c-b7e9-3ec0db07eb7b"},{"name":"Create Message Broker","id":"91fa29d8-0adf-470d-94f7-c423cd2ba2ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","description":"<p>Creates a new queue for a specific message broker.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"5b33d5d2-8e39-41e3-b11f-6928460a2e58","description":{"content":"<p>The message broker identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker"}]}},"response":[{"id":"e36e5350-546f-4386-93d1-f9c4e2d09c71","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"19aa49b1-6b40-440a-af9d-53a9dc3a44a3","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"05966b31-8f52-4154-927d-7e241737bdd6","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"82a6ab38-0d37-4023-8e41-27393de4c5e1","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"91fa29d8-0adf-470d-94f7-c423cd2ba2ea"},{"name":"Get Message Broker","id":"b6bd9f55-81f6-403c-bfc6-7e9b1db1ff48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","description":"<p>Retrieves the details of a specific message broker queue.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by message_broker_id.</p>\n","type":"text/plain"},"key":"filter[message_broker_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flows, messageBroker</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, message_broker_id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"3a6f4dbe-2b26-4623-8e2e-70b32224cd10","description":{"content":"<p>The message broker identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker"},{"id":"7afd3b2e-d138-4287-bacb-5017f9dbf5bf","description":{"content":"<p>The message broker queue identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker_queue"}]}},"response":[{"id":"86ad3cb5-6a07-47ac-af35-37b963818e8c","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by message_broker_id.","key":"filter[message_broker_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBroker","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, message_broker_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"b24ba831-e9a2-4ffb-bce8-f80bd75c6f53","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by message_broker_id.","key":"filter[message_broker_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBroker","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, message_broker_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"37d49598-e0fc-4fe1-b8e2-fb8b9bdbe4be","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by message_broker_id.","key":"filter[message_broker_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBroker","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, message_broker_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b6bd9f55-81f6-403c-bfc6-7e9b1db1ff48"},{"name":"Update Message Broker","id":"233fdd10-3988-4b20-b644-68033607ebcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","description":"<p>Updates an existing message broker queue.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"536912a8-7a88-47ab-85b2-95df5c92eb5f","description":{"content":"<p>The message broker identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker"},{"id":"7b9bf591-c72c-4543-bcc4-40b4039aa071","description":{"content":"<p>The message broker queue identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker_queue"}]}},"response":[{"id":"6f2ed27c-fad9-46d0-b9bd-cb6805c1d4cb","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"9edddae1-c630-4112-bb66-b0eb5bd1c682","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7ec8f743-dc97-47cd-adac-e10ea0cd77e3","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ec16f6c9-120a-4ce6-a43e-bbbc3793a526","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"233fdd10-3988-4b20-b644-68033607ebcf"},{"name":"Delete Message Broker","id":"de888225-8c65-441a-bbdc-51f46e790478","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","description":"<p>Permanently deletes a specific message broker queue.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9eb38753-f45a-43d1-9d62-5cd85b4fba6c","description":{"content":"<p>The message broker identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker"},{"id":"5b7dfa21-7579-472d-b923-b5e4c5f9c560","description":{"content":"<p>The message broker queue identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker_queue"}]}},"response":[{"id":"f884378d-3a97-4b43-b7f4-f95bbc38288c","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"5b746aa4-e668-46eb-8c29-a1170bcf2a6d","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9d17bcb5-7dc2-4b7d-a5a9-eb4612bd5c3e","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker/message-broker-queues/:message_broker_queue","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker","message-broker-queues",":message_broker_queue"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."},{"key":"message_broker_queue","value":"string","description":"The message broker queue identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"de888225-8c65-441a-bbdc-51f46e790478"}],"id":"091ed913-0980-4d18-aa63-21e170014a31","_postman_id":"091ed913-0980-4d18-aa63-21e170014a31","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Message Brokers","item":[{"name":"List Message Brokers","id":"2d9ef923-d21a-455f-a31c-ed94c50481fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-brokers","description":"<p>Retrieves a paginated list of message brokers.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by description.</p>\n","type":"text/plain"},"key":"filter[description]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by host.</p>\n","type":"text/plain"},"key":"filter[host]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by protocol.</p>\n","type":"text/plain"},"key":"filter[protocol]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by auth_type.</p>\n","type":"text/plain"},"key":"filter[auth_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by port.</p>\n","type":"text/plain"},"key":"filter[port]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flows, messageBrokerQueues, variables, flowMessageBrokerQueues</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, description, host, port, protocol, auth_type</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"bfb8768d-e76f-4af1-a8a6-51032e2c4aa7","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by description.","key":"filter[description]","value":"string","disabled":true},{"description":"Filter results by host.","key":"filter[host]","value":"string","disabled":true},{"description":"Filter results by protocol.","key":"filter[protocol]","value":"string","disabled":true},{"description":"Filter results by auth_type.","key":"filter[auth_type]","value":"string","disabled":true},{"description":"Filter results by port.","key":"filter[port]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBrokerQueues, variables, flowMessageBrokerQueues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, description, host, port, protocol, auth_type","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"description\": \"A description of the resource\",\n      \"host\": \"example_host\",\n      \"port\": 1,\n      \"protocol\": \"HTTP\",\n      \"auth_type\": \"example_auth_type\",\n      \"variables\": \"example_variables\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/message-brokers\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/message-brokers?page=1\",\n    \"last\": \"https://api.example.com/api/v1/message-brokers?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"ce60320d-3e86-400e-8572-13358c5bd55b","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by description.","key":"filter[description]","value":"string","disabled":true},{"description":"Filter results by host.","key":"filter[host]","value":"string","disabled":true},{"description":"Filter results by protocol.","key":"filter[protocol]","value":"string","disabled":true},{"description":"Filter results by auth_type.","key":"filter[auth_type]","value":"string","disabled":true},{"description":"Filter results by port.","key":"filter[port]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBrokerQueues, variables, flowMessageBrokerQueues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, description, host, port, protocol, auth_type","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f2a15f61-c9d9-43b7-b088-973672dbeb98","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by description.","key":"filter[description]","value":"string","disabled":true},{"description":"Filter results by host.","key":"filter[host]","value":"string","disabled":true},{"description":"Filter results by protocol.","key":"filter[protocol]","value":"string","disabled":true},{"description":"Filter results by auth_type.","key":"filter[auth_type]","value":"string","disabled":true},{"description":"Filter results by port.","key":"filter[port]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBrokerQueues, variables, flowMessageBrokerQueues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, description, host, port, protocol, auth_type","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2d9ef923-d21a-455f-a31c-ed94c50481fd"},{"name":"Create Message Broker","id":"24fb97da-99ba-4756-a829-46818039f031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"auth_type\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"name\": \"KYGiS\",\n  \"port\": 6273,\n  \"protocol\": \"PGSQL\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/message-brokers","description":"<p>Creates a new message broker.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"313a13f9-2b6c-4573-a96e-802857350385","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"auth_type\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"name\": \"KYGiS\",\n  \"port\": 6273,\n  \"protocol\": \"PGSQL\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/message-brokers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"description\": \"A description of the resource\",\n    \"host\": \"example_host\",\n    \"port\": 1,\n    \"protocol\": \"HTTP\",\n    \"auth_type\": \"example_auth_type\",\n    \"variables\": \"example_variables\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"8c48cc57-29e6-4660-b878-421db96a7ac2","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"auth_type\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"name\": \"KYGiS\",\n  \"port\": 6273,\n  \"protocol\": \"PGSQL\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/message-brokers"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5cc6c569-2388-4afe-93d1-e21bb6b6bae4","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"auth_type\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"name\": \"KYGiS\",\n  \"port\": 6273,\n  \"protocol\": \"PGSQL\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/message-brokers"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3838fd02-c763-43a0-9240-86c41f86ee34","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"auth_type\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"name\": \"KYGiS\",\n  \"port\": 6273,\n  \"protocol\": \"PGSQL\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/message-brokers"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"description\": [\n      \"The description field is required.\"\n    ],\n    \"host\": [\n      \"The host field is required.\"\n    ]\n  }\n}"}],"_postman_id":"24fb97da-99ba-4756-a829-46818039f031"},{"name":"Get Message Broker","id":"58b9a35f-fb51-471b-b37b-d88b8db5f6c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","description":"<p>Retrieves the details of a specific message broker.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers",":message_broker"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by description.</p>\n","type":"text/plain"},"key":"filter[description]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by host.</p>\n","type":"text/plain"},"key":"filter[host]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by protocol.</p>\n","type":"text/plain"},"key":"filter[protocol]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by auth_type.</p>\n","type":"text/plain"},"key":"filter[auth_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by port.</p>\n","type":"text/plain"},"key":"filter[port]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flows, messageBrokerQueues, variables, flowMessageBrokerQueues</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, description, host, port, protocol, auth_type</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"f5cfbc8f-f6eb-49ca-b0b1-f47974e10365","description":{"content":"<p>The message broker identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker"}]}},"response":[{"id":"29e233bd-8de9-4e51-9d93-289c6621c403","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by description.","key":"filter[description]","value":"string","disabled":true},{"description":"Filter results by host.","key":"filter[host]","value":"string","disabled":true},{"description":"Filter results by protocol.","key":"filter[protocol]","value":"string","disabled":true},{"description":"Filter results by auth_type.","key":"filter[auth_type]","value":"string","disabled":true},{"description":"Filter results by port.","key":"filter[port]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBrokerQueues, variables, flowMessageBrokerQueues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, description, host, port, protocol, auth_type","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"description\": \"A description of the resource\",\n    \"host\": \"example_host\",\n    \"port\": 1,\n    \"protocol\": \"HTTP\",\n    \"auth_type\": \"example_auth_type\",\n    \"variables\": \"example_variables\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"5f602507-dba9-4590-a94e-c85d7a08d9cc","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by description.","key":"filter[description]","value":"string","disabled":true},{"description":"Filter results by host.","key":"filter[host]","value":"string","disabled":true},{"description":"Filter results by protocol.","key":"filter[protocol]","value":"string","disabled":true},{"description":"Filter results by auth_type.","key":"filter[auth_type]","value":"string","disabled":true},{"description":"Filter results by port.","key":"filter[port]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBrokerQueues, variables, flowMessageBrokerQueues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, description, host, port, protocol, auth_type","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6f7e51d7-1ae3-4411-a15f-c84e627dad77","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by description.","key":"filter[description]","value":"string","disabled":true},{"description":"Filter results by host.","key":"filter[host]","value":"string","disabled":true},{"description":"Filter results by protocol.","key":"filter[protocol]","value":"string","disabled":true},{"description":"Filter results by auth_type.","key":"filter[auth_type]","value":"string","disabled":true},{"description":"Filter results by port.","key":"filter[port]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flows, messageBrokerQueues, variables, flowMessageBrokerQueues","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, description, host, port, protocol, auth_type","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"58b9a35f-fb51-471b-b37b-d88b8db5f6c1"},{"name":"Update Message Broker","id":"100d7eaa-4d96-444f-9135-bbd9fc262120","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"port\": 371,\n  \"protocol\": \"PGSQL\",\n  \"auth_type\": \"string\",\n  \"name\": \"Ys0u59\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","description":"<p>Updates an existing message broker.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers",":message_broker"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"70d217b0-eb30-4af5-a380-4fa5549fdabc","description":{"content":"<p>The message broker identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker"}]}},"response":[{"id":"90afb8f8-2f60-4963-889d-66233aaec4b8","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"port\": 371,\n  \"protocol\": \"PGSQL\",\n  \"auth_type\": \"string\",\n  \"name\": \"Ys0u59\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"description\": \"A description of the resource\",\n    \"host\": \"example_host\",\n    \"port\": 1,\n    \"protocol\": \"HTTP\",\n    \"auth_type\": \"example_auth_type\",\n    \"variables\": \"example_variables\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"3e418a26-0aa3-4d3a-a95d-655aa807b666","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"port\": 371,\n  \"protocol\": \"PGSQL\",\n  \"auth_type\": \"string\",\n  \"name\": \"Ys0u59\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ab793c12-5a1a-4327-9d4a-08eb3a7813b0","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"port\": 371,\n  \"protocol\": \"PGSQL\",\n  \"auth_type\": \"string\",\n  \"name\": \"Ys0u59\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"42888dec-06a2-43c5-a314-aa8c4624b6ba","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"description\": \"string\",\n  \"host\": \"string\",\n  \"port\": 371,\n  \"protocol\": \"PGSQL\",\n  \"auth_type\": \"string\",\n  \"name\": \"Ys0u59\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"description\": [\n      \"The description must be a string.\"\n    ],\n    \"host\": [\n      \"The host must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"100d7eaa-4d96-444f-9135-bbd9fc262120"},{"name":"Delete Message Broker","id":"7878d9fa-8abf-493a-8de7-972067a60380","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","description":"<p>Permanently deletes a specific message broker.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","message-brokers",":message_broker"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"ebbb9770-9382-4d9e-b389-9d18e30801e4","description":{"content":"<p>The message broker identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"message_broker"}]}},"response":[{"id":"d7b9b31c-3584-46a3-8f1d-dc95d40c6b62","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"2cc46941-6464-4537-aada-8d574cd99138","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3986a7da-d3f2-485b-bb12-6792585c33be","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/message-brokers/:message_broker","host":["https://core.wearepatchworks.com"],"path":["api","v1","message-brokers",":message_broker"],"variable":[{"key":"message_broker","value":"string","description":"The message broker identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7878d9fa-8abf-493a-8de7-972067a60380"}],"id":"6d989b4a-743e-477d-ba1c-4b1075743891","_postman_id":"6d989b4a-743e-477d-ba1c-4b1075743891","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Model Filter Values","item":[{"name":"List Model Filter Values","id":"5f946a45-5385-4424-a19b-a815cc3492a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/model-filter-values","description":"<p>Retrieves a paginated list of filter values associated with a model.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-filter-values"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by filter_id.</p>\n","type":"text/plain"},"key":"filter[filter_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by filter.model_type.</p>\n","type":"text/plain"},"key":"filter[filter.model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by filter.model_id.</p>\n","type":"text/plain"},"key":"filter[filter.model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by does_not_belong_to_deleted_step.</p>\n","type":"text/plain"},"key":"filter[does_not_belong_to_deleted_step]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model.</p>\n","type":"text/plain"},"key":"filter[model]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: filter</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: filter_id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"cb028df2-6fab-4624-8d0e-405fa1bfab57","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values"],"query":[{"description":"Filter results by filter_id.","key":"filter[filter_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by filter.model_type.","key":"filter[filter.model_type]","value":"string","disabled":true},{"description":"Filter results by filter.model_id.","key":"filter[filter.model_id]","value":"string","disabled":true},{"description":"Filter results by does_not_belong_to_deleted_step.","key":"filter[does_not_belong_to_deleted_step]","value":"string","disabled":true},{"description":"Filter results by model.","key":"filter[model]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: filter","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: filter_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"model_type\": \"example_model_type\",\n      \"model_id\": 1,\n      \"filter_id\": 1,\n      \"value\": \"example_value\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"filter\": {}\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/model-filter-values\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/model-filter-values?page=1\",\n    \"last\": \"https://api.example.com/api/v1/model-filter-values?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"587b0438-a7d1-45fb-b997-44bb397701d1","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values"],"query":[{"description":"Filter results by filter_id.","key":"filter[filter_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by filter.model_type.","key":"filter[filter.model_type]","value":"string","disabled":true},{"description":"Filter results by filter.model_id.","key":"filter[filter.model_id]","value":"string","disabled":true},{"description":"Filter results by does_not_belong_to_deleted_step.","key":"filter[does_not_belong_to_deleted_step]","value":"string","disabled":true},{"description":"Filter results by model.","key":"filter[model]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: filter","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: filter_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e8906af9-3e4f-41d3-80b6-91db89e01816","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values"],"query":[{"description":"Filter results by filter_id.","key":"filter[filter_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Filter results by filter.model_type.","key":"filter[filter.model_type]","value":"string","disabled":true},{"description":"Filter results by filter.model_id.","key":"filter[filter.model_id]","value":"string","disabled":true},{"description":"Filter results by does_not_belong_to_deleted_step.","key":"filter[does_not_belong_to_deleted_step]","value":"string","disabled":true},{"description":"Filter results by model.","key":"filter[model]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: filter","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: filter_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5f946a45-5385-4424-a19b-a815cc3492a3"},{"name":"Create Model Filter Value","id":"f33cc2dc-45ce-445b-914f-74dc0a59cf2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6569,\n  \"model_id\": 9571,\n  \"model_type\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-filter-values","description":"<p>Creates a new filter value for a model.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-filter-values"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"daf2b6ac-04f7-4380-8f86-2f9433baa721","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6569,\n  \"model_id\": 9571,\n  \"model_type\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-filter-values"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"filter_id\": 1,\n    \"value\": \"example_value\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"filter\": {}\n  }\n}"},{"id":"9ecc72cf-a817-496c-9d20-26dd0105959c","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6569,\n  \"model_id\": 9571,\n  \"model_type\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-filter-values"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"67634c6a-10d9-4cb5-940f-e174fc55d680","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6569,\n  \"model_id\": 9571,\n  \"model_type\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-filter-values"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"17b10920-fb5d-4d2e-b5df-32e933575557","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6569,\n  \"model_id\": 9571,\n  \"model_type\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-filter-values"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"model_type\": [\n      \"The model type field is required.\"\n    ],\n    \"model_id\": [\n      \"The model id field is required.\"\n    ],\n    \"filter_id\": [\n      \"The filter id field is required.\"\n    ]\n  }\n}"}],"_postman_id":"f33cc2dc-45ce-445b-914f-74dc0a59cf2a"},{"name":"Update Model Filter Value","id":"d8d655b2-de05-47e0-9988-b974bdddaa14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6500,\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","description":"<p>Updates an existing model filter value.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-filter-values",":model_filter_value"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"4dec4f23-2723-4921-a7f7-d56cf25e8ad0","description":{"content":"<p>The model filter value identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"model_filter_value"}]}},"response":[{"id":"09365c11-d790-4d47-b0e6-7ab5cf4938e3","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6500,\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values",":model_filter_value"],"variable":[{"key":"model_filter_value","value":"string","description":"The model filter value identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"filter_id\": 1,\n    \"value\": \"example_value\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"filter\": {}\n  }\n}"},{"id":"107af72c-2e40-45c8-b13d-6e5c5aebd9d2","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6500,\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values",":model_filter_value"],"variable":[{"key":"model_filter_value","value":"string","description":"The model filter value identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6b3273a2-ea76-4f2f-94df-f805206a743c","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6500,\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values",":model_filter_value"],"variable":[{"key":"model_filter_value","value":"string","description":"The model filter value identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cc790e5b-f0d0-4ceb-a38c-d09cce1d6d69","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"filter_id\": 6500,\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values",":model_filter_value"],"variable":[{"key":"model_filter_value","value":"string","description":"The model filter value identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"filter_id\": [\n      \"The filter id must be an integer.\"\n    ],\n    \"value\": [\n      \"The value must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"d8d655b2-de05-47e0-9988-b974bdddaa14"},{"name":"Delete Model Filter Value","id":"5a477b1a-e0cc-4c97-88f3-6d6a8b0f58c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","description":"<p>Permanently deletes a specific model filter value.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-filter-values",":model_filter_value"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f28742b5-3074-415d-a3d8-c36f2439508f","description":{"content":"<p>The model filter value identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"model_filter_value"}]}},"response":[{"id":"cb79ffd0-08d9-468e-8f59-11f530bdc24e","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values",":model_filter_value"],"variable":[{"key":"model_filter_value","value":"string","description":"The model filter value identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"54c218e2-a26e-4a81-b680-44593f0dbe28","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values",":model_filter_value"],"variable":[{"key":"model_filter_value","value":"string","description":"The model filter value identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"38f03463-6377-4427-a133-859136968f4a","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-filter-values/:model_filter_value","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-filter-values",":model_filter_value"],"variable":[{"key":"model_filter_value","value":"string","description":"The model filter value identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5a477b1a-e0cc-4c97-88f3-6d6a8b0f58c1"}],"id":"71a9e43c-ddac-4ce4-8c04-fb5ed6aad23f","_postman_id":"71a9e43c-ddac-4ce4-8c04-fb5ed6aad23f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Model Notes","item":[{"name":"List Model Notes","id":"44fdff13-0288-497a-a1e2-d54964930968","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/model-notes","description":"<p>Retrieves a paginated list of notes associated with a model.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-notes"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by user_id.</p>\n","type":"text/plain"},"key":"filter[user_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by my_notes.</p>\n","type":"text/plain"},"key":"filter[my_notes]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowStep, user</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: id, created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"6372c9d0-55d1-48c7-a4db-627199b530f1","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by my_notes.","key":"filter[my_notes]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowStep, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: id, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"note\": \"example_note\",\n      \"private\": \"example_private\",\n      \"patchworks_only\": \"example_patchworks_only\",\n      \"model_type\": \"example_model_type\",\n      \"model_id\": 1,\n      \"colour\": \"blue\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"user_id\": 1,\n      \"flow_step\": {},\n      \"user\": {}\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/model-notes\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/model-notes?page=1\",\n    \"last\": \"https://api.example.com/api/v1/model-notes?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"29266ac8-136a-4ef6-8a66-a202cecff360","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by my_notes.","key":"filter[my_notes]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowStep, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: id, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"dd368895-8c4c-4d7d-8f22-1f867f80d8d7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by my_notes.","key":"filter[my_notes]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowStep, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: id, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"44fdff13-0288-497a-a1e2-d54964930968"},{"name":"Create Model Note","id":"68fcf279-707d-43be-9cf1-56378d824ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"model_id\": 5132,\n  \"model_type\": \"string\",\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-notes","description":"<p>Creates a new note for a model.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-notes"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"c1134d33-6e6a-4da1-9a83-ae64c89906fc","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"model_id\": 5132,\n  \"model_type\": \"string\",\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"note\": \"example_note\",\n    \"private\": \"example_private\",\n    \"patchworks_only\": \"example_patchworks_only\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"colour\": \"blue\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"user_id\": 1,\n    \"flow_step\": {},\n    \"user\": {}\n  }\n}"},{"id":"036c16ab-353b-4c42-9f85-c1be0e5a4962","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"model_id\": 5132,\n  \"model_type\": \"string\",\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-notes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7bb1b572-77c1-4699-90f1-454b14da35c1","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"model_id\": 5132,\n  \"model_type\": \"string\",\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-notes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c068441e-04a4-46cd-8340-637c6ecc99e1","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"gray_inverted\",\n  \"model_id\": 5132,\n  \"model_type\": \"string\",\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-notes"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"note\": [\n      \"The note field is required.\"\n    ],\n    \"model_type\": [\n      \"The model type field is required.\"\n    ],\n    \"model_id\": [\n      \"The model id field is required.\"\n    ]\n  }\n}"}],"_postman_id":"68fcf279-707d-43be-9cf1-56378d824ae8"},{"name":"Get Model Note","id":"12264587-741a-4231-931d-a02533751ee6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","description":"<p>Retrieves the details of a specific model note.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-notes",":model_note"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by user_id.</p>\n","type":"text/plain"},"key":"filter[user_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by my_notes.</p>\n","type":"text/plain"},"key":"filter[my_notes]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowStep, user</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: id, created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"c7e7ab6b-a00f-4e62-bd41-79228a646cc2","description":{"content":"<p>The model note identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"model_note"}]}},"response":[{"id":"564d1ae1-8871-459b-9d49-3b2a6b2fd8af","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by my_notes.","key":"filter[my_notes]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowStep, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: id, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"note\": \"example_note\",\n    \"private\": \"example_private\",\n    \"patchworks_only\": \"example_patchworks_only\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"colour\": \"blue\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"user_id\": 1,\n    \"flow_step\": {},\n    \"user\": {}\n  }\n}"},{"id":"dfa44151-d1a9-4b6c-a64d-1fc9f2f0e5da","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by my_notes.","key":"filter[my_notes]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowStep, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: id, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4bcdda29-5107-4dfa-b2cb-a9629d4bf923","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"query":[{"description":"Filter results by user_id.","key":"filter[user_id]","value":"string","disabled":true},{"description":"Filter results by my_notes.","key":"filter[my_notes]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowStep, user","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: id, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"12264587-741a-4231-931d-a02533751ee6"},{"name":"Update Model Note","id":"4a38c563-8779-47be-b758-b3f6290700d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\",\n  \"colour\": \"blue\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","description":"<p>Updates an existing model note.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-notes",":model_note"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b365363e-664d-4ebf-a04f-cb941794227e","description":{"content":"<p>The model note identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"model_note"}]}},"response":[{"id":"92818163-df7c-458e-863a-35794608a7c7","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\",\n  \"colour\": \"blue\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"note\": \"example_note\",\n    \"private\": \"example_private\",\n    \"patchworks_only\": \"example_patchworks_only\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"colour\": \"blue\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"user_id\": 1,\n    \"flow_step\": {},\n    \"user\": {}\n  }\n}"},{"id":"7b667f93-09ec-4bb9-8fe8-d8619909cc7b","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\",\n  \"colour\": \"blue\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"12565657-01d5-4c2d-ae6d-55968887b791","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\",\n  \"colour\": \"blue\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"610b24a2-8e55-4439-9020-e07aabbf9427","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"note\": \"string\",\n  \"private\": \"string\",\n  \"patchworks_only\": \"string\",\n  \"colour\": \"blue\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"note\": [\n      \"The note must be a string.\"\n    ],\n    \"colour\": [\n      \"The colour must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"4a38c563-8779-47be-b758-b3f6290700d9"},{"name":"Delete Model Note","id":"bf1b68f8-af50-45e0-a58f-002ab2d10682","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","description":"<p>Permanently deletes a specific model note.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-notes",":model_note"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"86406d02-eac6-423e-b341-5d76a64ab126","description":{"content":"<p>The model note identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"model_note"}]}},"response":[{"id":"bb2bf95f-cdf4-4731-a863-9d760cf094e4","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"7be9d059-31bc-4434-9c3d-2833ce3d30a6","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7e5129f9-0d75-4d50-86ce-8444c2098445","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-notes/:model_note","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-notes",":model_note"],"variable":[{"key":"model_note","value":"string","description":"The model note identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bf1b68f8-af50-45e0-a58f-002ab2d10682"}],"id":"13e12ca1-489c-4f4d-855b-233569b63a89","_postman_id":"13e12ca1-489c-4f4d-855b-233569b63a89","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Model Variables","item":[{"name":"List Model Variables","id":"61becbf5-ced3-4c06-a026-ffa3381f3a61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/model-variables","description":"<p>Retrieves a paginated list of variables associated with a model.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-variables"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by variable_id.</p>\n","type":"text/plain"},"key":"filter[variable_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: model, variable</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: variable_id, model_type, model_id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"461e6711-1a68-4664-99f3-813da52791c1","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables"],"query":[{"description":"Filter results by variable_id.","key":"filter[variable_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model, variable","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: variable_id, model_type, model_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"variable_id\": 1,\n      \"alias\": \"example_alias\",\n      \"configurable\": \"example_configurable\",\n      \"required\": \"example_required\",\n      \"advanced\": \"example_advanced\",\n      \"model_type\": \"example_model_type\",\n      \"model_id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"variable\": {},\n      \"modified\": \"example_modified\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/model-variables\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/model-variables?page=1\",\n    \"last\": \"https://api.example.com/api/v1/model-variables?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"477973d1-ba33-4960-83fc-51c2d4cffd9f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables"],"query":[{"description":"Filter results by variable_id.","key":"filter[variable_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model, variable","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: variable_id, model_type, model_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"eaad45d2-72ed-4fed-a4bb-1268d3e7a3e7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables"],"query":[{"description":"Filter results by variable_id.","key":"filter[variable_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model, variable","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: variable_id, model_type, model_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"61becbf5-ced3-4c06-a026-ffa3381f3a61"},{"name":"Create Model Variable","id":"8a1964ca-2283-4bb7-824a-b586c8f0c4ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"model_id\": \"string\",\n  \"model_type\": \"string\",\n  \"variable_id\": \"string\",\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-variables","description":"<p>Creates a new variable association for a model.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-variables"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"db95a98e-dd98-447d-ad68-c7956bb8aa96","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_id\": \"string\",\n  \"model_type\": \"string\",\n  \"variable_id\": \"string\",\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-variables"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"variable_id\": 1,\n    \"alias\": \"example_alias\",\n    \"configurable\": \"example_configurable\",\n    \"required\": \"example_required\",\n    \"advanced\": \"example_advanced\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"variable\": {},\n    \"modified\": \"example_modified\"\n  }\n}"},{"id":"61305a29-2c6d-4ae2-9e15-dc0f0a0a900b","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_id\": \"string\",\n  \"model_type\": \"string\",\n  \"variable_id\": \"string\",\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-variables"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"dd0736f2-4a76-4809-84e6-995083bf9ee2","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_id\": \"string\",\n  \"model_type\": \"string\",\n  \"variable_id\": \"string\",\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-variables"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8ab61f18-9616-4236-8eac-e6ffb0bd2d04","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_id\": \"string\",\n  \"model_type\": \"string\",\n  \"variable_id\": \"string\",\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-variables"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"variable_id\": [\n      \"The variable id field is required.\"\n    ],\n    \"alias\": [\n      \"The alias must be a string.\"\n    ],\n    \"model_type\": [\n      \"The model type field is required.\"\n    ]\n  }\n}"}],"_postman_id":"8a1964ca-2283-4bb7-824a-b586c8f0c4ec"},{"name":"Get Model Variable","id":"85a0f2f2-ac00-423f-8d5f-19dd55af0011","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","description":"<p>Retrieves the details of a specific model variable.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-variables",":model_variable"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by variable_id.</p>\n","type":"text/plain"},"key":"filter[variable_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_type.</p>\n","type":"text/plain"},"key":"filter[model_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by model_id.</p>\n","type":"text/plain"},"key":"filter[model_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: model, variable</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: variable_id, model_type, model_id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"d24db63d-ff36-41c5-a787-9a37f5b6e5a4","description":{"content":"<p>The model variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"model_variable"}]}},"response":[{"id":"81f3bb2a-daa8-4620-85c4-d8b8fa20faec","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"query":[{"description":"Filter results by variable_id.","key":"filter[variable_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model, variable","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: variable_id, model_type, model_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"variable_id\": 1,\n    \"alias\": \"example_alias\",\n    \"configurable\": \"example_configurable\",\n    \"required\": \"example_required\",\n    \"advanced\": \"example_advanced\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"variable\": {},\n    \"modified\": \"example_modified\"\n  }\n}"},{"id":"a9e71c17-c648-49fe-9388-5941617b995b","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"query":[{"description":"Filter results by variable_id.","key":"filter[variable_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model, variable","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: variable_id, model_type, model_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0462926b-857c-4d13-92e4-10920f2d1780","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"query":[{"description":"Filter results by variable_id.","key":"filter[variable_id]","value":"string","disabled":true},{"description":"Filter results by model_type.","key":"filter[model_type]","value":"string","disabled":true},{"description":"Filter results by model_id.","key":"filter[model_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: model, variable","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: variable_id, model_type, model_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"85a0f2f2-ac00-423f-8d5f-19dd55af0011"},{"name":"Update Model Variable","id":"2330325d-437c-4369-8022-afd53f657cfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","description":"<p>Updates an existing model variable.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-variables",":model_variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b6ceefc7-9692-48a0-a620-77592e553542","description":{"content":"<p>The model variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"model_variable"}]}},"response":[{"id":"62d6f586-458e-40c4-b59c-7821b9d62bd4","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"variable_id\": 1,\n    \"alias\": \"example_alias\",\n    \"configurable\": \"example_configurable\",\n    \"required\": \"example_required\",\n    \"advanced\": \"example_advanced\",\n    \"model_type\": \"example_model_type\",\n    \"model_id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"variable\": {},\n    \"modified\": \"example_modified\"\n  }\n}"},{"id":"6fe36fe8-ed2f-41a6-879e-a56ada592070","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0a54e42a-f7dd-4340-bb97-031aaf883a0a","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7b296faf-8a15-442b-a592-d457f490c9b9","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"alias\": \"string\",\n  \"configurable\": \"string\",\n  \"required\": \"string\",\n  \"advanced\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"alias\": [\n      \"The alias must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"2330325d-437c-4369-8022-afd53f657cfb"},{"name":"Delete Model Variable","id":"12622a56-edc3-4683-937d-081c76eea909","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","description":"<p>Permanently deletes a specific model variable.\nNote: Model variables, filter values, and notes can all be attached to different entity types via <code>model_type</code> and <code>model_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","model-variables",":model_variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"46a83c00-2bba-4761-828e-da429a6c0797","description":{"content":"<p>The model variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"model_variable"}]}},"response":[{"id":"db185338-2cac-4a10-b6b9-7c8cb1e27816","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"32433576-6473-4e67-bb1e-c1efb64d46d6","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ae24650b-74cd-4cc7-8ed1-bb72b6692fc1","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/model-variables/:model_variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","model-variables",":model_variable"],"variable":[{"key":"model_variable","value":"string","description":"The model variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"12622a56-edc3-4683-937d-081c76eea909"}],"id":"31816296-7898-4666-99e4-ec976ef67ac7","_postman_id":"31816296-7898-4666-99e4-ec976ef67ac7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Company","item":[{"name":"Get Company Stats","id":"11be7b6d-452e-497b-b0a4-8b292501d724","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/stats","description":"<p>Retrieves activity statistics for the company associated with the current API key, including active flow count, successful and failed flow run counts, and average flow run time.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","my","company","stats"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"f1e6430f-edbf-4c71-9ccb-43eaf32058a8","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/stats"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"60ba9fe1-542a-4094-b9ab-b92481a9c1ab","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/stats"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a5019d37-9c68-46fd-a5cf-78e59159bd2a","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/stats"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"11be7b6d-452e-497b-b0a4-8b292501d724"},{"name":"List Company Transactions","id":"a2ef7fde-ee82-43aa-914c-da8741d615eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/transactions","description":"<p>Retrieves a paginated list of transactions for the company associated with the current API key. Can be sorted by <code>order_by</code> and <code>direction</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","my","company","transactions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"6d841780-9e76-4e4e-8aee-651752e6cce1","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/transactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/my/company/transactions\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/my/company/transactions?page=1\",\n    \"last\": \"https://api.example.com/api/v1/my/company/transactions?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"9559e50a-d6f6-4422-93df-f747268f3750","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/transactions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"264b4bb9-019f-4168-8e35-cf9a673a10c9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/my/company/transactions"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a2ef7fde-ee82-43aa-914c-da8741d615eb"}],"id":"25d65cb2-e146-4a30-8944-f7627f9c4b23","_postman_id":"25d65cb2-e146-4a30-8944-f7627f9c4b23","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Notifications","item":[{"name":"List Notifications","id":"1ba77f01-f1e8-4458-8f63-e50f10c66a27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/notifications","description":"<p>Retrieves a paginated list of notifications for the current user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","notifications"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"2710dc46-b8dd-43db-9dd8-e9566bca8c7d","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"read\": \"example_read\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"type\": \"example_type\",\n      \"read_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/notifications\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/notifications?page=1\",\n    \"last\": \"https://api.example.com/api/v1/notifications?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"72802e39-9d41-4e13-ae81-45a55869b79f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/notifications"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"345ecce8-ac26-4f16-8bd6-afe06b12ad66","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/notifications"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1ba77f01-f1e8-4458-8f63-e50f10c66a27"},{"name":"Read Notifications","id":"80780a72-cb2e-4f65-b00a-214a397c93d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/notifications","description":"<p>Marks all notifications as read for the current user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","notifications"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"6f965863-2236-4e5b-a280-0ed008679620","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"4de4e1fc-758a-4475-92b4-7b5b79f4f161","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/notifications"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cbd7f634-993a-4d01-917f-3b8dec399f45","name":"Unauthorized","originalRequest":{"method":"PATCH","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/notifications"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3f37e3df-182a-4e72-8c5a-7b336a096deb","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/notifications"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"80780a72-cb2e-4f65-b00a-214a397c93d6"},{"name":"Update Notification","id":"3f985223-5d4c-46fa-b463-946975551fef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"read\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/notifications/:notification","description":"<p>Updates a specific notification, for example to mark it as read.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","notifications",":notification"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"2209fc71-0319-4db0-a8bb-54ca93f7e9df","description":{"content":"<p>The notification identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"notification"}]}},"response":[{"id":"57290f4a-5fb3-46d0-a833-efe2407a0a4d","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"read\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/notifications/:notification","host":["https://core.wearepatchworks.com"],"path":["api","v1","notifications",":notification"],"variable":[{"key":"notification","value":"string","description":"The notification identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"read\": \"example_read\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"type\": \"example_type\",\n    \"read_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"5a062bc1-11eb-47f4-b475-87e1ae5ab636","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"read\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/notifications/:notification","host":["https://core.wearepatchworks.com"],"path":["api","v1","notifications",":notification"],"variable":[{"key":"notification","value":"string","description":"The notification identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ad8df686-c121-470a-b44e-6cd02f21ac02","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"read\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/notifications/:notification","host":["https://core.wearepatchworks.com"],"path":["api","v1","notifications",":notification"],"variable":[{"key":"notification","value":"string","description":"The notification identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"218cd116-e462-446d-9e4b-8de21a85ec20","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"read\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/notifications/:notification","host":["https://core.wearepatchworks.com"],"path":["api","v1","notifications",":notification"],"variable":[{"key":"notification","value":"string","description":"The notification identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"read\": [\n      \"The read field is required.\"\n    ]\n  }\n}"}],"_postman_id":"3f985223-5d4c-46fa-b463-946975551fef"},{"name":"Delete Notification","id":"7c2f2025-2262-4454-9e5c-56d81368644e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/notifications/:notification","description":"<p>Permanently deletes a specific notification.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","notifications",":notification"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"ab69bb7c-c9e6-4840-8ed8-6fa1c01e57ff","description":{"content":"<p>The notification identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"notification"}]}},"response":[{"id":"274dc336-ee6e-43ba-97b3-dab1add57e27","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/notifications/:notification","host":["https://core.wearepatchworks.com"],"path":["api","v1","notifications",":notification"],"variable":[{"key":"notification","value":"string","description":"The notification identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"620feadd-d61b-40f0-8205-60f5d96bdfb5","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/notifications/:notification","host":["https://core.wearepatchworks.com"],"path":["api","v1","notifications",":notification"],"variable":[{"key":"notification","value":"string","description":"The notification identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bf4a1bca-16cf-4bfd-8152-1b310d4c20f3","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/notifications/:notification","host":["https://core.wearepatchworks.com"],"path":["api","v1","notifications",":notification"],"variable":[{"key":"notification","value":"string","description":"The notification identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7c2f2025-2262-4454-9e5c-56d81368644e"}],"id":"b61e4a6c-2fbf-4bd8-8a7b-357a2d11bdb5","_postman_id":"b61e4a6c-2fbf-4bd8-8a7b-357a2d11bdb5","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Oauth","item":[{"name":"Authenticate Oauth","id":"4a3c857c-8dc2-4d0a-9712-a5e58cc936b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/authenticate","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","oauth","authenticate"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"4d49dd9e-7db9-4397-ba02-bf435cd9c4d2","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"2c83eada-199a-4c31-8048-b19f2a7e38e8","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/authenticate"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6985ad1d-6824-4c4b-b4a8-be1a0dd1ef04","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/authenticate"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"900dd38a-3cda-4013-a45a-ddfec1a5734a","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/authenticate"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"4a3c857c-8dc2-4d0a-9712-a5e58cc936b6"},{"name":"Authorise Oauth","id":"1bb6eaef-3575-4a43-894e-a5cf40d1eb3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"minute\",\n  \"rate_limit_duration\": 4804,\n  \"connection_pool_id\": 2816,\n  \"variables\": \"string\",\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/oauth/authorise","description":"<p>Authorises a connector using OAuth, creating a new authenticated instance.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","oauth","authorise"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"e7a11477-9b11-4ec5-af6b-f8777ea161b4","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"minute\",\n  \"rate_limit_duration\": 4804,\n  \"connection_pool_id\": 2816,\n  \"variables\": \"string\",\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/oauth/authorise"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"15273903-b9c2-4a24-b69d-bc876221cbd4","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"minute\",\n  \"rate_limit_duration\": 4804,\n  \"connection_pool_id\": 2816,\n  \"variables\": \"string\",\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/oauth/authorise"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cf35f2fb-0bdc-4e99-8a88-ded34f792f84","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"minute\",\n  \"rate_limit_duration\": 4804,\n  \"connection_pool_id\": 2816,\n  \"variables\": \"string\",\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/oauth/authorise"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b859857c-2121-421d-bd70-280c47a697ad","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"minute\",\n  \"rate_limit_duration\": 4804,\n  \"connection_pool_id\": 2816,\n  \"variables\": \"string\",\n  \"session_id\": \"string\",\n  \"platform_app_key\": \"string\",\n  \"certificate_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/oauth/authorise"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"1bb6eaef-3575-4a43-894e-a5cf40d1eb3f"},{"name":"Authenticate Woo App Auth","id":"8a92e0d1-663c-40c2-b1a5-b4263fce3606","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/woo-app-auth","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","oauth","woo-app-auth"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"aa5cc787-c52f-45b3-9506-ad196d36a713","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/woo-app-auth"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f33f5ba1-72a5-4d06-a27e-72951da3d289","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/woo-app-auth"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"955215ce-ec83-49d6-a910-841e085928b2","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/woo-app-auth"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"67ae14ae-0390-4070-9bf8-f230e0449d9a","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/oauth/woo-app-auth"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"8a92e0d1-663c-40c2-b1a5-b4263fce3606"},{"name":"Reauthorise Oauth","id":"fa6ce5fd-7928-4b60-8204-928734ca2d74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 2507,\n  \"connection_pool_id\": 6352,\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/oauth/:connector/reauthorise","description":"<p>Reauthorises an existing OAuth connector instance.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","oauth",":connector","reauthorise"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"3fc42af5-4b82-41c1-8bc7-fd86d8ad89af","description":{"content":"<p>The connector identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"connector"}]}},"response":[{"id":"81e7e97c-f20f-4c33-b86f-3ee2a2e3dd83","name":"Successful response","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 2507,\n  \"connection_pool_id\": 6352,\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/oauth/:connector/reauthorise","host":["https://core.wearepatchworks.com"],"path":["api","v1","oauth",":connector","reauthorise"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"7505de60-0766-4a1f-8180-16a6af8cf35d","name":"Unauthenticated","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 2507,\n  \"connection_pool_id\": 6352,\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/oauth/:connector/reauthorise","host":["https://core.wearepatchworks.com"],"path":["api","v1","oauth",":connector","reauthorise"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"275b50ce-83a1-4074-9c61-1b4f6eecec39","name":"Unauthorized","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 2507,\n  \"connection_pool_id\": 6352,\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/oauth/:connector/reauthorise","host":["https://core.wearepatchworks.com"],"path":["api","v1","oauth",":connector","reauthorise"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7de2daaf-8f73-4d76-91d3-d7b114438571","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"authentication_implementation_id\": \"string\",\n  \"type\": \"string\",\n  \"timezone\": \"string\",\n  \"date_format\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 2507,\n  \"connection_pool_id\": 6352,\n  \"variables\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/oauth/:connector/reauthorise","host":["https://core.wearepatchworks.com"],"path":["api","v1","oauth",":connector","reauthorise"],"variable":[{"key":"connector","value":"string","description":"The connector identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"fa6ce5fd-7928-4b60-8204-928734ca2d74"}],"id":"c976cf31-df10-4dbf-8a09-79c7cbdbc3a9","_postman_id":"c976cf31-df10-4dbf-8a09-79c7cbdbc3a9","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"OTC","item":[{"name":"Woo App Auth Callback","id":"d37e157a-6b72-4b48-8e25-5376aef9712f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"906f2d46-909f-49e6-a74d-2d22bf4fbff3","description":{"content":"<p>The tenant identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tenant"}]}},"response":[{"id":"ab239c5e-746e-4c9a-a78f-1749d3d849a4","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"caa3e2dc-e1ea-45e1-b443-d8613cf9fd73","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9b569001-3860-4215-8864-a557ef64c1ce","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d37e157a-6b72-4b48-8e25-5376aef9712f"},{"name":"Woo App Auth Callback","id":"5573df30-ebe9-437d-bfe2-9883066b429c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f1b8555f-3b06-445f-a90e-972e282575de","description":{"content":"<p>The tenant identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tenant"}]}},"response":[{"id":"61a0fcee-2247-4c53-8852-472623af2fd5","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ff821a68-ccab-4607-8e92-9fa8c0d574d0","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"78fa6f46-892e-4fb2-aaaf-0a4977181a9e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c9c26fad-7ca9-4590-9835-305841e63fff","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/otc/:tenant/woo-app-auth-callback","host":["https://core.wearepatchworks.com"],"path":["api","v1","otc",":tenant","woo-app-auth-callback"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"5573df30-ebe9-437d-bfe2-9883066b429c"}],"id":"87058da6-8f8d-46ed-97f0-a529f3445d96","_postman_id":"87058da6-8f8d-46ed-97f0-a529f3445d96","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Authentication Types","item":[{"name":"List Authentication Types","id":"51711cfe-bbee-4b4c-8825-79f2a8aa0dbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/authentication-types","description":"<p>Retrieves a paginated list of supported authentication types.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","authentication-types"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by hidden.</p>\n","type":"text/plain"},"key":"filter[hidden]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"2fa2e599-47cd-4115-89f7-d5d531595578","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/authentication-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","authentication-types"],"query":[{"description":"Filter results by hidden.","key":"filter[hidden]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"colour\": \"blue\",\n      \"logo_url\": \"example_logo_url\",\n      \"version\": 1,\n      \"version_name\": \"example_version_name\",\n      \"rate_limit_unit\": \"second\",\n      \"rate_limit_duration\": 1,\n      \"system_type_id\": 1,\n      \"protocol\": \"HTTP\",\n      \"company_id\": 1,\n      \"date_format\": \"example_date_format\",\n      \"help_link\": \"example_help_link\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/authentication-types\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/authentication-types?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/authentication-types?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"b62913ef-4d99-4b63-b04c-3af476af7af1","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/authentication-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","authentication-types"],"query":[{"description":"Filter results by hidden.","key":"filter[hidden]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f58b8edf-c2b8-4009-8b3f-36f53fa2d8f7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/authentication-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","authentication-types"],"query":[{"description":"Filter results by hidden.","key":"filter[hidden]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"51711cfe-bbee-4b4c-8825-79f2a8aa0dbd"},{"name":"Get Authentication Type","id":"5ddc1a77-a4c9-47bc-8883-b2cbae042181","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/authentication-types/:authentication_type","description":"<p>Retrieves the details of a specific authentication type.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","authentication-types",":authentication_type"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by hidden.</p>\n","type":"text/plain"},"key":"filter[hidden]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"af57401a-159b-4149-b86b-2a07f65733d2","description":{"content":"<p>The authentication type identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_type"}]}},"response":[{"id":"6dba054c-7bb7-4832-9110-cb25c8ce9c3d","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/authentication-types/:authentication_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","authentication-types",":authentication_type"],"query":[{"description":"Filter results by hidden.","key":"filter[hidden]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"authentication_type","value":"string","description":"The authentication type identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"colour\": \"blue\",\n    \"logo_url\": \"example_logo_url\",\n    \"version\": 1,\n    \"version_name\": \"example_version_name\",\n    \"rate_limit_unit\": \"second\",\n    \"rate_limit_duration\": 1,\n    \"system_type_id\": 1,\n    \"protocol\": \"HTTP\",\n    \"company_id\": 1,\n    \"date_format\": \"example_date_format\",\n    \"help_link\": \"example_help_link\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"b9d48502-de44-4d12-a321-a438ce7d3340","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/authentication-types/:authentication_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","authentication-types",":authentication_type"],"query":[{"description":"Filter results by hidden.","key":"filter[hidden]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"authentication_type","value":"string","description":"The authentication type identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0cc1b7ee-d4eb-4ad9-8a72-77d4372ac166","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/authentication-types/:authentication_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","authentication-types",":authentication_type"],"query":[{"description":"Filter results by hidden.","key":"filter[hidden]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"authentication_type","value":"string","description":"The authentication type identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5ddc1a77-a4c9-47bc-8883-b2cbae042181"}],"id":"b0e54110-bd96-405c-91b9-624da1b7f46d","_postman_id":"b0e54110-bd96-405c-91b9-624da1b7f46d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Cross Reference Lookup Templates","item":[{"name":"List Cross Reference Lookup Templates","id":"0bf9c7f9-5bbc-4847-9db8-c228936e894f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/cross-reference-lookup-templates","description":"<p>Retrieves a paginated list of cross reference lookup templates. Can be filtered by <code>name</code>, <code>hidden_from_marketplace</code>, <code>visible_for_marketplace</code>, and <code>private</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","cross-reference-lookup-templates"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hidden_from_marketplace.</p>\n","type":"text/plain"},"key":"filter[hidden_from_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visible_for_marketplace.</p>\n","type":"text/plain"},"key":"filter[visible_for_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private.</p>\n","type":"text/plain"},"key":"filter[private]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visibility.</p>\n","type":"text/plain"},"key":"filter[visibility]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: crossReferenceLookupValueTemplates</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"e8d7f2f6-82cf-4aac-8b85-317cb24f23fa","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/cross-reference-lookup-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","cross-reference-lookup-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValueTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"colour\": \"blue\",\n      \"logo_url\": \"example_logo_url\",\n      \"version\": 1,\n      \"version_name\": \"example_version_name\",\n      \"rate_limit_unit\": \"second\",\n      \"rate_limit_duration\": 1,\n      \"system_type_id\": 1,\n      \"protocol\": \"HTTP\",\n      \"company_id\": 1,\n      \"date_format\": \"example_date_format\",\n      \"help_link\": \"example_help_link\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/cross-reference-lookup-templates\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/cross-reference-lookup-templates?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/cross-reference-lookup-templates?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"386aeaa0-a067-412b-8f5b-80b305a0f3d4","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/cross-reference-lookup-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","cross-reference-lookup-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValueTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"93d7c959-9a71-48f8-aace-6845eebca34b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/cross-reference-lookup-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","cross-reference-lookup-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: crossReferenceLookupValueTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0bf9c7f9-5bbc-4847-9db8-c228936e894f"},{"name":"Download Cross Reference Lookup Template","id":"e70b34db-ca5f-4a2d-9e24-4a4f86f4d1ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/cross-reference-lookup-templates/:cross_reference_lookup_template/download","description":"<p>Triggers the download of a specific cross reference lookup template as a CSV file with <code>left_value</code> and <code>right_value</code> columns. The file is added to the File Downloads section in General Settings.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","cross-reference-lookup-templates",":cross_reference_lookup_template","download"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f894c4bf-d1b1-4b22-8546-1f0317a25caa","description":{"content":"<p>The cross reference lookup template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"cross_reference_lookup_template"}]}},"response":[{"id":"6d7995ea-4c9d-46c9-9831-c3169a123ff4","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/cross-reference-lookup-templates/:cross_reference_lookup_template/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","cross-reference-lookup-templates",":cross_reference_lookup_template","download"],"variable":[{"key":"cross_reference_lookup_template","value":"string","description":"The cross reference lookup template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"803aa787-2485-45f0-af19-9f06dded4f6f","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/cross-reference-lookup-templates/:cross_reference_lookup_template/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","cross-reference-lookup-templates",":cross_reference_lookup_template","download"],"variable":[{"key":"cross_reference_lookup_template","value":"string","description":"The cross reference lookup template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"338495a7-45fd-4c2d-af34-5bfa65702936","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/cross-reference-lookup-templates/:cross_reference_lookup_template/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","cross-reference-lookup-templates",":cross_reference_lookup_template","download"],"variable":[{"key":"cross_reference_lookup_template","value":"string","description":"The cross reference lookup template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e70b34db-ca5f-4a2d-9e24-4a4f86f4d1ec"}],"id":"9b641bc5-799e-4023-8bab-535457b37eb4","_postman_id":"9b641bc5-799e-4023-8bab-535457b37eb4","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Multi-Company Profiles","item":[{"name":"Duplicate Flow","id":"7a53a6f9-5ef1-4ead-9026-90e647ea3326","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"from_company_id\": \"string\",\n  \"to_company_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/duplicate-flow","description":"<p>Duplicates a flow version from one company to another.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","duplicate-flow"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"815bf8a0-edc9-44fa-aa89-1aa386b21337","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"from_company_id\": \"string\",\n  \"to_company_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/duplicate-flow"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"7202bfd4-66a8-479b-afba-f6d273ca4b1d","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"from_company_id\": \"string\",\n  \"to_company_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/duplicate-flow"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4715faf0-9729-4eec-88a2-663a9bf98c9b","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"from_company_id\": \"string\",\n  \"to_company_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/duplicate-flow"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"af0ecd06-d242-40ce-abd0-dd1892200e20","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_version_id\": \"string\",\n  \"from_company_id\": \"string\",\n  \"to_company_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/duplicate-flow"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"7a53a6f9-5ef1-4ead-9026-90e647ea3326"}],"id":"2722e813-3a8f-4449-858b-726e9621e829","_postman_id":"2722e813-3a8f-4449-858b-726e9621e829","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Endpoint Templates","item":[{"name":"List Endpoint Template Field Tags","id":"6085f4c1-7ea7-43e0-b14e-b466a0ee93fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/endpoint-templates/:endpoint_template/field-tags","description":"<p>Retrieves a paginated list of field tags for a specific endpoint template.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","endpoint-templates",":endpoint_template","field-tags"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by entity_type_id.</p>\n","type":"text/plain"},"key":"filter[entity_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by store_as.</p>\n","type":"text/plain"},"key":"filter[store_as]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by is_required.</p>\n","type":"text/plain"},"key":"filter[is_required]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: entityType</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"5cbf2a0c-530e-4dff-86d8-5e2ce7b5086e","description":{"content":"<p>The endpoint template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint_template"}]}},"response":[{"id":"c5c6e459-336c-4efd-a214-e19beab7126c","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/endpoint-templates/:endpoint_template/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","endpoint-templates",":endpoint_template","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint_template","value":"string","description":"The endpoint template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"colour\": \"blue\",\n      \"logo_url\": \"example_logo_url\",\n      \"version\": 1,\n      \"version_name\": \"example_version_name\",\n      \"rate_limit_unit\": \"second\",\n      \"rate_limit_duration\": 1,\n      \"system_type_id\": 1,\n      \"protocol\": \"HTTP\",\n      \"company_id\": 1,\n      \"date_format\": \"example_date_format\",\n      \"help_link\": \"example_help_link\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/endpoint-templates/{endpoint_template}/field-tags\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/endpoint-templates/{endpoint_template}/field-tags?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/endpoint-templates/{endpoint_template}/field-tags?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"9c2a9743-0ccd-4649-a71a-2081c7697394","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/endpoint-templates/:endpoint_template/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","endpoint-templates",":endpoint_template","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint_template","value":"string","description":"The endpoint template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4fa714f9-f5fd-430d-9a54-be45d1489809","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/endpoint-templates/:endpoint_template/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","endpoint-templates",":endpoint_template","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"endpoint_template","value":"string","description":"The endpoint template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6085f4c1-7ea7-43e0-b14e-b466a0ee93fc"}],"id":"9a8ed139-404d-467d-9f37-be28ef90fe96","_postman_id":"9a8ed139-404d-467d-9f37-be28ef90fe96","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Entity Types","item":[{"name":"List Entity Types","id":"1a94e8da-fb17-463b-b77d-25d7f3b7990a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types","description":"<p>Retrieves a paginated list of entity types.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","entity-types"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"de340acd-3ee9-4620-a1bb-0acba9781791","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","entity-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"colour\": \"blue\",\n      \"logo_url\": \"example_logo_url\",\n      \"version\": 1,\n      \"version_name\": \"example_version_name\",\n      \"rate_limit_unit\": \"second\",\n      \"rate_limit_duration\": 1,\n      \"system_type_id\": 1,\n      \"protocol\": \"HTTP\",\n      \"company_id\": 1,\n      \"date_format\": \"example_date_format\",\n      \"help_link\": \"example_help_link\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/entity-types\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/entity-types?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/entity-types?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"20266cc5-19c3-4a97-ad54-0b73a4835cbe","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","entity-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fac8cdb9-6d85-42d4-b499-7b0632f72a74","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","entity-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1a94e8da-fb17-463b-b77d-25d7f3b7990a"},{"name":"Get Entity Type","id":"6105ffed-1416-4aab-89e3-88ecb0950b07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types/:entity_type","description":"<p>Retrieves the details of a specific entity type.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","entity-types",":entity_type"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"a8eaf1d1-9895-4293-89ab-1ce69b5544ed","description":{"content":"<p>The entity type identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"entity_type"}]}},"response":[{"id":"0b109b0e-cc5a-4d75-8b2b-a81b19f36015","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types/:entity_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","entity-types",":entity_type"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"entity_type","value":"string","description":"The entity type identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"colour\": \"blue\",\n    \"logo_url\": \"example_logo_url\",\n    \"version\": 1,\n    \"version_name\": \"example_version_name\",\n    \"rate_limit_unit\": \"second\",\n    \"rate_limit_duration\": 1,\n    \"system_type_id\": 1,\n    \"protocol\": \"HTTP\",\n    \"company_id\": 1,\n    \"date_format\": \"example_date_format\",\n    \"help_link\": \"example_help_link\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"2eb646c8-7fc2-4693-bd8c-77be6984126d","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types/:entity_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","entity-types",":entity_type"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"entity_type","value":"string","description":"The entity type identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6b931b24-6134-4bbd-8dc4-875d875ed6cb","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types/:entity_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","entity-types",":entity_type"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"entity_type","value":"string","description":"The entity type identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6105ffed-1416-4aab-89e3-88ecb0950b07"},{"name":"Download Entity Type","id":"e14e40a8-fb50-4d0e-adf5-8a593e918d50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types/download","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","entity-types","download"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"99687a2a-000f-467e-9881-01345b01ae2d","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types/download"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"de570655-ff9b-4723-a13c-134caf87c8ca","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types/download"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d8d377c8-168c-4ddd-93de-53aed0ba537f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/entity-types/download"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e14e40a8-fb50-4d0e-adf5-8a593e918d50"}],"id":"6dea0d43-9714-4832-984c-8a31cedf84af","_postman_id":"6dea0d43-9714-4832-984c-8a31cedf84af","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Field Tags","item":[{"name":"List Field Tags","id":"55310326-87ef-4c92-b7e3-d35a012c36b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/field-tags","description":"<p>Retrieves a paginated list of standard field tags used to label data fields in connector endpoint schemas.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","field-tags"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by entity_type_id.</p>\n","type":"text/plain"},"key":"filter[entity_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by store_as.</p>\n","type":"text/plain"},"key":"filter[store_as]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by is_required.</p>\n","type":"text/plain"},"key":"filter[is_required]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: entityType</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"5227281e-3f9f-4177-9c1a-026f61495f20","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"colour\": \"blue\",\n      \"logo_url\": \"example_logo_url\",\n      \"version\": 1,\n      \"version_name\": \"example_version_name\",\n      \"rate_limit_unit\": \"second\",\n      \"rate_limit_duration\": 1,\n      \"system_type_id\": 1,\n      \"protocol\": \"HTTP\",\n      \"company_id\": 1,\n      \"date_format\": \"example_date_format\",\n      \"help_link\": \"example_help_link\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/field-tags\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/field-tags?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/field-tags?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"2900056b-312c-4104-89df-84b42d6e6378","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5d7cf2f9-4432-4113-974c-9deb6155972d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/field-tags","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","field-tags"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by store_as.","key":"filter[store_as]","value":"string","disabled":true},{"description":"Filter results by is_required.","key":"filter[is_required]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, entity_type_id, store_as, is_required","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"55310326-87ef-4c92-b7e3-d35a012c36b5"}],"id":"bb5c58de-caa7-42b7-8875-6e35868ddb36","_postman_id":"bb5c58de-caa7-42b7-8875-6e35868ddb36","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Job Execution Logs","item":[{"name":"List Job Execution Logs","id":"7ba59890-5556-415e-95da-2a22c7ae8c8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/job-execution-logs","description":"<p>Retrieves a paginated list of job execution logs. Can be filtered by <code>company_id</code>, <code>status</code>, <code>executable_kind</code>, date range, and <code>name</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","job-execution-logs"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by company_id.</p>\n","type":"text/plain"},"key":"filter[company_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by status.</p>\n","type":"text/plain"},"key":"filter[status]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by executable_kind.</p>\n","type":"text/plain"},"key":"filter[executable_kind]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by created_before.</p>\n","type":"text/plain"},"key":"filter[created_before]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by created_after.</p>\n","type":"text/plain"},"key":"filter[created_after]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by like.</p>\n","type":"text/plain"},"key":"filter[like]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: started_at, finished_at, duration_ms, status, name, company_id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"9cbef628-0d8b-4709-8076-0928bec04868","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/job-execution-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","job-execution-logs"],"query":[{"description":"Filter results by company_id.","key":"filter[company_id]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by executable_kind.","key":"filter[executable_kind]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by like.","key":"filter[like]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at, finished_at, duration_ms, status, name, company_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7afd7cc8-2b51-410f-ab43-f28e4eaa44b2","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/job-execution-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","job-execution-logs"],"query":[{"description":"Filter results by company_id.","key":"filter[company_id]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by executable_kind.","key":"filter[executable_kind]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by like.","key":"filter[like]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at, finished_at, duration_ms, status, name, company_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"08b07a76-6c3b-4678-9773-d28d8cf77688","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/job-execution-logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","job-execution-logs"],"query":[{"description":"Filter results by company_id.","key":"filter[company_id]","value":"string","disabled":true},{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by executable_kind.","key":"filter[executable_kind]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by like.","key":"filter[like]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: started_at, finished_at, duration_ms, status, name, company_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7ba59890-5556-415e-95da-2a22c7ae8c8a"}],"id":"0da19658-ee74-4f96-b0df-ba0332a115b4","_postman_id":"0da19658-ee74-4f96-b0df-ba0332a115b4","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Label Templates","item":[{"name":"List Label Templates","id":"86b6c2a0-f21d-4b3b-b812-fde23af23ba7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/label-templates","description":"<p>Retrieves a paginated list of standard label templates provided by Patchworks. Can be filtered by <code>name</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","label-templates"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"90f70cbf-8d90-4994-87d5-bf3dd797c4d1","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/label-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","label-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"251e86fd-c5e0-43b1-bda5-1c0bb371dfa5","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/label-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","label-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a398898a-3d95-49be-987f-7e63fe73614b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/label-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","label-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"86b6c2a0-f21d-4b3b-b812-fde23af23ba7"},{"name":"Get Label Template","id":"40cb6d1b-d33a-4e65-bd86-426465caa603","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/patchworks/label-templates/:label_template","description":"<p>Retrieves the details of a specific label template.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","label-templates",":label_template"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"b429d4c0-cd8f-4488-8e3b-86c087fd0cea","description":{"content":"<p>The label template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"label_template"}]}},"response":[{"id":"5b1f139a-ef9c-4baf-8bfc-d328136c3a2d","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/label-templates/:label_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","label-templates",":label_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"label_template","value":"string","description":"The label template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"80373e03-d7b8-4d64-87e4-a7047b815865","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/label-templates/:label_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","label-templates",":label_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"label_template","value":"string","description":"The label template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cf68e17b-5bde-418f-9a6a-42200ca60176","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/label-templates/:label_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","label-templates",":label_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"label_template","value":"string","description":"The label template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"40cb6d1b-d33a-4e65-bd86-426465caa603"}],"id":"6b68afcd-9a55-4a06-8280-1cef6e7a057a","_postman_id":"6b68afcd-9a55-4a06-8280-1cef6e7a057a","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Operations","item":[{"name":"Get Summary","id":"0bff1245-8bd7-473c-830d-8da6f453e49f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/operations/summary/:company_id?","description":"<p>Retrieves a summary of company details, connectors, and flows for the current company or another company profile that you manage.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","operations","summary",":company_id"],"host":["https://core.wearepatchworks.com"],"query":[{"key":"","value":""}],"variable":[{"id":"9e1c9372-4afe-4fe0-a2e8-b43c0b19f95c","type":"any","key":"company_id"}]}},"response":[{"id":"8dfaff2e-9998-4487-ac2c-9aac39a0e84d","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/operations/summary/:company_id","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","operations","summary",":company_id"],"variable":[{"key":"company_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"company\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"status\": \"string\",\n    \"partner_name\": null,\n    \"hubspot_id\": null,\n    \"subscription\": {\n      \"tier\": \"string\",\n      \"allowance\": {},\n      \"trial_ends_at\": null\n    },\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  },\n  \"connectors\": {\n    \"total\": 0,\n    \"all\": []\n  },\n  \"flows\": {\n    \"total\": 0,\n    \"enabled\": 0,\n    \"all\": []\n  },\n  \"next\": null\n}"},{"id":"8060428b-c604-49ed-bdb7-1f1eb90ed34c","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/operations/summary/:company_id","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","operations","summary",":company_id"],"variable":[{"key":"company_id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"87afa185-be16-4588-8533-3a68521d0d10","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/operations/summary/:company_id","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","operations","summary",":company_id"],"variable":[{"key":"company_id"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0bff1245-8bd7-473c-830d-8da6f453e49f"}],"id":"d3a385a1-7229-4857-8001-2d43f030e1a5","_postman_id":"d3a385a1-7229-4857-8001-2d43f030e1a5","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Script Languages","item":[{"name":"List Script Languages","id":"821d7180-ed93-4a5a-a7fa-0969399f465f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/script-languages","description":"<p>Retrieves a list of available script languages.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","script-languages"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"897fcbfc-94e5-4b53-8565-23503672bc14","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/script-languages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"value\": \"string\",\n    \"label\": \"string\",\n    \"alpha\": false\n  }\n]"},{"id":"a62f222d-5c2e-4248-b345-140660869a30","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/script-languages"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fbb9b180-8206-4428-8601-b430645dd983","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/script-languages"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"821d7180-ed93-4a5a-a7fa-0969399f465f"}],"id":"be24a397-018f-4413-8ee2-cfce73ec73a1","_postman_id":"be24a397-018f-4413-8ee2-cfce73ec73a1","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Script Templates","item":[{"name":"List Script Templates","id":"abe58cda-f587-4240-bd52-a79544d4ce8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates","description":"<p>Retrieves a paginated list of script templates. Can be filtered by <code>name</code>, <code>hidden_from_marketplace</code>, <code>visible_for_marketplace</code>, and <code>private</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","script-templates"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hidden_from_marketplace.</p>\n","type":"text/plain"},"key":"filter[hidden_from_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visible_for_marketplace.</p>\n","type":"text/plain"},"key":"filter[visible_for_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private.</p>\n","type":"text/plain"},"key":"filter[private]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visibility.</p>\n","type":"text/plain"},"key":"filter[visibility]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: content, marketplace_company</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"44185c67-ddf4-4255-9572-e08ea87a81bc","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, marketplace_company","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"language\": \"string\",\n      \"company_id\": 0,\n      \"canonical_key\": null,\n      \"marketplace_company_id\": null,\n      \"tenant_script_version_id\": null,\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  }\n}"},{"id":"a25ac30e-7349-49dc-afcd-7cf50a2ee72b","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, marketplace_company","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7f547a6e-4078-4946-a1d7-5c070da3b262","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, marketplace_company","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"abe58cda-f587-4240-bd52-a79544d4ce8f"},{"name":"Get Script Template","id":"f1a7d6cf-1794-49eb-9985-84f429676f0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates/:script_template","description":"<p>Retrieves the details of a specific script template.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","script-templates",":script_template"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hidden_from_marketplace.</p>\n","type":"text/plain"},"key":"filter[hidden_from_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visible_for_marketplace.</p>\n","type":"text/plain"},"key":"filter[visible_for_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private.</p>\n","type":"text/plain"},"key":"filter[private]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visibility.</p>\n","type":"text/plain"},"key":"filter[visibility]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: content, marketplace_company</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"2c616901-1719-4ea6-8d8c-c61668616352","description":{"content":"<p>The script template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_template"}]}},"response":[{"id":"c337e7b3-ac8d-4b46-be1f-bbf15af5c053","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates/:script_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates",":script_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, marketplace_company","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"language\": \"string\",\n    \"company_id\": 0,\n    \"canonical_key\": null,\n    \"marketplace_company_id\": null,\n    \"tenant_script_version_id\": null,\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"0b53eb9f-c6e0-4ce7-9124-993a69583f37","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates/:script_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates",":script_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, marketplace_company","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ec8fc6c9-2923-46d4-a68e-ea3e93efcaf6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates/:script_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates",":script_template"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, marketplace_company","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f1a7d6cf-1794-49eb-9985-84f429676f0d"},{"name":"Delete Script Template","id":"8bfee275-ef97-425d-baa6-5d1d97c733eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates/:script_template","description":"<p>Permanently deletes a specific script template.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","script-templates",":script_template"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"06e0823a-b1ff-46d2-a4d0-ae4ec122de2d","description":{"content":"<p>The script template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_template"}]}},"response":[{"id":"c2240c4f-fb8f-4370-b74e-3b247dcd46d9","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates/:script_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates",":script_template"],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"08541dd2-1048-4ed0-a180-b9af27f14da6","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates/:script_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates",":script_template"],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8482410b-9c59-4772-ae6f-23f9de18cd59","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/script-templates/:script_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","script-templates",":script_template"],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8bfee275-ef97-425d-baa6-5d1d97c733eb"},{"name":"Install Script Template","id":"1d174b3b-7aff-4416-b177-d4cfa89a2738","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/script-templates/:script_template/install","description":"<p>Installs a specific script template.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","script-templates",":script_template","install"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"0e3b1ee1-0fc0-4e54-a80a-f8b834ff6b9d","description":{"content":"<p>The script template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_template"}]}},"response":[{"id":"211e64a8-7d0b-46a4-8819-19b3101115e5","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-templates/:script_template/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-templates",":script_template","install"],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"a75bf09e-9976-413c-8706-9b9d0923cc44","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-templates/:script_template/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-templates",":script_template","install"],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e7a9856e-afb0-4e43-9f1f-705d3da017c6","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-templates/:script_template/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-templates",":script_template","install"],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0e5ce282-5671-4856-8495-48b351331239","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-templates/:script_template/install","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-templates",":script_template","install"],"variable":[{"key":"script_template","value":"string","description":"The script template identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"1d174b3b-7aff-4416-b177-d4cfa89a2738"}],"id":"4e27e014-5c9b-44a3-ba9a-d21e7cd9ee2d","_postman_id":"4e27e014-5c9b-44a3-ba9a-d21e7cd9ee2d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"System Templates","item":[{"name":"List System Templates","id":"cb5c04ec-9562-4602-9116-0ee56ac24c4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates","description":"<p>Retrieves a paginated list of system templates.\nIn the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","system-templates"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by hidden_from_marketplace.</p>\n","type":"text/plain"},"key":"filter[hidden_from_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visible_for_marketplace.</p>\n","type":"text/plain"},"key":"filter[visible_for_marketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system_type_id.</p>\n","type":"text/plain"},"key":"filter[system_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by private.</p>\n","type":"text/plain"},"key":"filter[private]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by visibility.</p>\n","type":"text/plain"},"key":"filter[visibility]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by platformApp.</p>\n","type":"text/plain"},"key":"filter[platformApp]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by forPlatformApp.</p>\n","type":"text/plain"},"key":"filter[forPlatformApp]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: systemType, company, publicCompany, marketplaceCompany, logo, authenticationImplementationTemplates.variableTemplates, authenticationImplementationTemplates.authenticationType</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, created_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"a5e4401b-edf5-437e-a2aa-3df888b597b2","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by system_type_id.","key":"filter[system_type_id]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by platformApp.","key":"filter[platformApp]","value":"string","disabled":true},{"description":"Filter results by forPlatformApp.","key":"filter[forPlatformApp]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemType, company, publicCompany, marketplaceCompany, logo, authenticationImplementationTemplates.variableTemplates, authenticationImplementationTemplates.authenticationType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/system-templates\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/system-templates?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/system-templates?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"6f3468c0-0470-4d7a-8b08-8b25cc364398","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by system_type_id.","key":"filter[system_type_id]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by platformApp.","key":"filter[platformApp]","value":"string","disabled":true},{"description":"Filter results by forPlatformApp.","key":"filter[forPlatformApp]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemType, company, publicCompany, marketplaceCompany, logo, authenticationImplementationTemplates.variableTemplates, authenticationImplementationTemplates.authenticationType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0091ec69-6ee2-4087-bd5e-93446952dc09","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by hidden_from_marketplace.","key":"filter[hidden_from_marketplace]","value":"string","disabled":true},{"description":"Filter results by visible_for_marketplace.","key":"filter[visible_for_marketplace]","value":"string","disabled":true},{"description":"Filter results by system_type_id.","key":"filter[system_type_id]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by private.","key":"filter[private]","value":"string","disabled":true},{"description":"Filter results by visibility.","key":"filter[visibility]","value":"string","disabled":true},{"description":"Filter results by platformApp.","key":"filter[platformApp]","value":"string","disabled":true},{"description":"Filter results by forPlatformApp.","key":"filter[forPlatformApp]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: systemType, company, publicCompany, marketplaceCompany, logo, authenticationImplementationTemplates.variableTemplates, authenticationImplementationTemplates.authenticationType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, created_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cb5c04ec-9562-4602-9116-0ee56ac24c4f"},{"name":"Create System Template","id":"b00afc54-a6ce-4141-8929-b5e2b1b47f2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"orange\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"label\": \"string\",\n  \"logo_url\": \"https://LgVcPStFbG.qlzgZ72IIbY+8B6gGbx5GZWwfMV0QHmWTv5eahWW2prgoH3mVKNlNKHb.A\",\n  \"name\": \"string\",\n  \"protocol\": \"PGSQL\",\n  \"rate_limit_duration\": 4966,\n  \"rate_limit_unit\": \"second\",\n  \"system_type_id\": \"string\",\n  \"version\": 5945,\n  \"version_name\": \"string\",\n  \"help_link\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates","description":"<p>Creates a new system template.\nIn the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","system-templates"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"6384eeac-0f19-419e-b201-e992d39fe925","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"orange\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"label\": \"string\",\n  \"logo_url\": \"https://LgVcPStFbG.qlzgZ72IIbY+8B6gGbx5GZWwfMV0QHmWTv5eahWW2prgoH3mVKNlNKHb.A\",\n  \"name\": \"string\",\n  \"protocol\": \"PGSQL\",\n  \"rate_limit_duration\": 4966,\n  \"rate_limit_unit\": \"second\",\n  \"system_type_id\": \"string\",\n  \"version\": 5945,\n  \"version_name\": \"string\",\n  \"help_link\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"9a7219fd-8f9f-4609-8d0d-a9098b5c44ac","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"orange\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"label\": \"string\",\n  \"logo_url\": \"https://LgVcPStFbG.qlzgZ72IIbY+8B6gGbx5GZWwfMV0QHmWTv5eahWW2prgoH3mVKNlNKHb.A\",\n  \"name\": \"string\",\n  \"protocol\": \"PGSQL\",\n  \"rate_limit_duration\": 4966,\n  \"rate_limit_unit\": \"second\",\n  \"system_type_id\": \"string\",\n  \"version\": 5945,\n  \"version_name\": \"string\",\n  \"help_link\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4593e894-8965-48f0-a544-57a0a255ad82","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"orange\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"label\": \"string\",\n  \"logo_url\": \"https://LgVcPStFbG.qlzgZ72IIbY+8B6gGbx5GZWwfMV0QHmWTv5eahWW2prgoH3mVKNlNKHb.A\",\n  \"name\": \"string\",\n  \"protocol\": \"PGSQL\",\n  \"rate_limit_duration\": 4966,\n  \"rate_limit_unit\": \"second\",\n  \"system_type_id\": \"string\",\n  \"version\": 5945,\n  \"version_name\": \"string\",\n  \"help_link\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f26afc7e-fedd-48d3-be0a-7c52e997754a","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"colour\": \"orange\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"label\": \"string\",\n  \"logo_url\": \"https://LgVcPStFbG.qlzgZ72IIbY+8B6gGbx5GZWwfMV0QHmWTv5eahWW2prgoH3mVKNlNKHb.A\",\n  \"name\": \"string\",\n  \"protocol\": \"PGSQL\",\n  \"rate_limit_duration\": 4966,\n  \"rate_limit_unit\": \"second\",\n  \"system_type_id\": \"string\",\n  \"version\": 5945,\n  \"version_name\": \"string\",\n  \"help_link\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"label\": [\n      \"The label field is required.\"\n    ],\n    \"colour\": [\n      \"The colour field is required.\"\n    ]\n  }\n}"}],"_postman_id":"b00afc54-a6ce-4141-8929-b5e2b1b47f2a"},{"name":"Update System Template","id":"436481f2-2447-4b15-8c0d-38a9aced4cea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"colour\": \"green_inverted\",\n  \"logo_url\": \"https://nMcjjwCqDce.inhjR.Jj.tK66z2S+kGofUHXzZpH,Uz6bMtyhC8RPK2oJ\",\n  \"version\": 5342,\n  \"version_name\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 8153,\n  \"system_type_id\": \"string\",\n  \"protocol\": \"MySQL\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"help_link\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","description":"<p>Updates an existing system template.\nIn the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","system-templates",":system_template"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"0c5f3dd7-8579-45c7-8162-0bfe535d462b","description":{"content":"<p>The system template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system_template"}]}},"response":[{"id":"2c1927a8-820e-4ced-a544-8bb95d73a892","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"colour\": \"green_inverted\",\n  \"logo_url\": \"https://nMcjjwCqDce.inhjR.Jj.tK66z2S+kGofUHXzZpH,Uz6bMtyhC8RPK2oJ\",\n  \"version\": 5342,\n  \"version_name\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 8153,\n  \"system_type_id\": \"string\",\n  \"protocol\": \"MySQL\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"help_link\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates",":system_template"],"variable":[{"key":"system_template","value":"string","description":"The system template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"4ce029e0-9f1d-4e9b-ad35-f8e4acc71b1f","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"colour\": \"green_inverted\",\n  \"logo_url\": \"https://nMcjjwCqDce.inhjR.Jj.tK66z2S+kGofUHXzZpH,Uz6bMtyhC8RPK2oJ\",\n  \"version\": 5342,\n  \"version_name\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 8153,\n  \"system_type_id\": \"string\",\n  \"protocol\": \"MySQL\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"help_link\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates",":system_template"],"variable":[{"key":"system_template","value":"string","description":"The system template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0ea50566-16da-49a3-a91b-7540f2fa1fd3","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"colour\": \"green_inverted\",\n  \"logo_url\": \"https://nMcjjwCqDce.inhjR.Jj.tK66z2S+kGofUHXzZpH,Uz6bMtyhC8RPK2oJ\",\n  \"version\": 5342,\n  \"version_name\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 8153,\n  \"system_type_id\": \"string\",\n  \"protocol\": \"MySQL\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"help_link\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates",":system_template"],"variable":[{"key":"system_template","value":"string","description":"The system template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"370fcf6b-0991-419b-98d4-1ca849c274bd","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"colour\": \"green_inverted\",\n  \"logo_url\": \"https://nMcjjwCqDce.inhjR.Jj.tK66z2S+kGofUHXzZpH,Uz6bMtyhC8RPK2oJ\",\n  \"version\": 5342,\n  \"version_name\": \"string\",\n  \"rate_limit_unit\": \"day\",\n  \"rate_limit_duration\": 8153,\n  \"system_type_id\": \"string\",\n  \"protocol\": \"MySQL\",\n  \"company_id\": \"string\",\n  \"date_format\": \"string\",\n  \"help_link\": \"string\",\n  \"name\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates",":system_template"],"variable":[{"key":"system_template","value":"string","description":"The system template identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"label\": [\n      \"The label must be a string.\"\n    ],\n    \"colour\": [\n      \"The colour must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"436481f2-2447-4b15-8c0d-38a9aced4cea"},{"name":"Delete System Template","id":"3636e80c-0f17-41c1-9f77-1a24230c3f0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","description":"<p>Permanently deletes a specific system template.\nIn the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","system-templates",":system_template"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"dd950300-d02d-4b4a-961e-e181b06d0184","description":{"content":"<p>The system template identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system_template"}]}},"response":[{"id":"75d36582-5b94-47c3-b8dd-1943a8267fd7","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates",":system_template"],"variable":[{"key":"system_template","value":"string","description":"The system template identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"9a335900-2e61-4fff-9750-701f8c95d671","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates",":system_template"],"variable":[{"key":"system_template","value":"string","description":"The system template identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5a1c504d-508e-4291-8663-0208b97f87ad","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-templates/:system_template","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-templates",":system_template"],"variable":[{"key":"system_template","value":"string","description":"The system template identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3636e80c-0f17-41c1-9f77-1a24230c3f0f"},{"name":"Install System Template","id":"fe97b6b7-ae34-46a8-a218-db98160c6fb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": \"string\",\n  \"system_id\": 574,\n  \"platform_app_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/system-templates/:systemTemplate","description":"<p>Installs a specific system template into the current company.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","system-templates",":systemTemplate"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"3377e316-a93f-4342-93a3-29018da0e7f0","description":{"content":"<p>The systemTemplate identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"systemTemplate"}]}},"response":[{"id":"edb285e5-8450-46b1-b974-421ded44e28f","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": \"string\",\n  \"system_id\": 574,\n  \"platform_app_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/system-templates/:systemTemplate","host":["https://core.wearepatchworks.com"],"path":["api","v1","system-templates",":systemTemplate"],"variable":[{"key":"systemTemplate","value":"string","description":"The systemTemplate identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"cb322f1f-df43-4ea5-8720-86dc7c384e83","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": \"string\",\n  \"system_id\": 574,\n  \"platform_app_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/system-templates/:systemTemplate","host":["https://core.wearepatchworks.com"],"path":["api","v1","system-templates",":systemTemplate"],"variable":[{"key":"systemTemplate","value":"string","description":"The systemTemplate identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"99de18a5-147c-4403-ae8d-98783a6ea1dc","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": \"string\",\n  \"system_id\": 574,\n  \"platform_app_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/system-templates/:systemTemplate","host":["https://core.wearepatchworks.com"],"path":["api","v1","system-templates",":systemTemplate"],"variable":[{"key":"systemTemplate","value":"string","description":"The systemTemplate identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"73fe54b2-f053-4131-8ef5-bc126d65c69b","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"overwrite\": \"string\",\n  \"system_id\": 574,\n  \"platform_app_key\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/system-templates/:systemTemplate","host":["https://core.wearepatchworks.com"],"path":["api","v1","system-templates",":systemTemplate"],"variable":[{"key":"systemTemplate","value":"string","description":"The systemTemplate identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"fe97b6b7-ae34-46a8-a218-db98160c6fb1"}],"id":"48c8e429-efdc-4f89-b27c-405980658cc2","_postman_id":"48c8e429-efdc-4f89-b27c-405980658cc2","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"System Types","item":[{"name":"List System Types","id":"91176a2f-b642-459b-b237-beffb7066dd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-types","description":"<p>Retrieves a paginated list of system types (such as eCommerce, ERP, and Accounting).\nIn the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","system-types"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: systemTemplates</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"42c15ada-d430-4758-b191-124893b1004e","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: systemTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"colour\": \"blue\",\n      \"logo_url\": \"example_logo_url\",\n      \"version\": 1,\n      \"version_name\": \"example_version_name\",\n      \"rate_limit_unit\": \"second\",\n      \"rate_limit_duration\": 1,\n      \"system_type_id\": 1,\n      \"protocol\": \"HTTP\",\n      \"company_id\": 1,\n      \"date_format\": \"example_date_format\",\n      \"help_link\": \"example_help_link\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/patchworks/system-types\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/patchworks/system-types?page=1\",\n    \"last\": \"https://api.example.com/api/v1/patchworks/system-types?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"697e1c7a-cea6-4076-be86-cabf15bce629","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: systemTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4f75f308-3137-40e3-aa8b-e81cbd6f4fc6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: systemTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"91176a2f-b642-459b-b237-beffb7066dd0"},{"name":"Get System Type","id":"1921d5b5-8378-4ebb-9bc9-44ee214382ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/patchworks/system-types/:system_type","description":"<p>Retrieves the details of a specific system type.\nIn the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","patchworks","system-types",":system_type"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: systemTemplates</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"e4194fa1-0789-40cf-b400-06ee868830a9","description":{"content":"<p>The system type identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system_type"}]}},"response":[{"id":"4b801c59-1f55-42b9-858b-e3d5bac4d76f","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-types/:system_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-types",":system_type"],"query":[{"description":"Comma-separated list of relationships to include. Available: systemTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system_type","value":"string","description":"The system type identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"colour\": \"blue\",\n    \"logo_url\": \"example_logo_url\",\n    \"version\": 1,\n    \"version_name\": \"example_version_name\",\n    \"rate_limit_unit\": \"second\",\n    \"rate_limit_duration\": 1,\n    \"system_type_id\": 1,\n    \"protocol\": \"HTTP\",\n    \"company_id\": 1,\n    \"date_format\": \"example_date_format\",\n    \"help_link\": \"example_help_link\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n  }\n}"},{"id":"29021e42-06fc-4a07-b7ec-7d59c00c2400","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-types/:system_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-types",":system_type"],"query":[{"description":"Comma-separated list of relationships to include. Available: systemTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system_type","value":"string","description":"The system type identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"827ed72d-ec3a-4c1b-a6bd-accb4f0b06ce","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/patchworks/system-types/:system_type","host":["https://core.wearepatchworks.com"],"path":["api","v1","patchworks","system-types",":system_type"],"query":[{"description":"Comma-separated list of relationships to include. Available: systemTemplates","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system_type","value":"string","description":"The system type identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1921d5b5-8378-4ebb-9bc9-44ee214382ca"}],"id":"ebd1a957-33d3-4668-b218-920c0b6fa230","_postman_id":"ebd1a957-33d3-4668-b218-920c0b6fa230","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Payload Metadata","item":[{"name":"List Payload Metadata","id":"3379e077-b197-488d-90db-304f55a13249","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/payload-metadata","description":"<p>Retrieves a paginated list of payload metadata records. Can be filtered by <code>id</code>, <code>flow_run_id</code>, <code>flow_step_id</code>, and <code>flow_log_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","payload-metadata"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_run_id.</p>\n","type":"text/plain"},"key":"filter[flow_run_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_step_id.</p>\n","type":"text/plain"},"key":"filter[flow_step_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_log_id.</p>\n","type":"text/plain"},"key":"filter[flow_log_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"1e909725-f5af-4b24-967b-2664b11107a9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Filter results by flow_log_id.","key":"filter[flow_log_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"flow_version_id\": 0,\n      \"flow_step_id\": 0,\n      \"flow_run_id\": \"string\",\n      \"payload_store_reference\": \"string\",\n      \"payload_size\": 0,\n      \"dropped\": false\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 0,\n    \"from\": 0,\n    \"last_page\": 0,\n    \"links\": [],\n    \"path\": \"string\",\n    \"per_page\": 0,\n    \"to\": 0,\n    \"total\": 0\n  }\n}"},{"id":"ae355a93-84e7-468a-b461-c7a103bc12de","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Filter results by flow_log_id.","key":"filter[flow_log_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d6639d78-40c7-49af-9aab-60dc50de2380","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Filter results by flow_log_id.","key":"filter[flow_log_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3379e077-b197-488d-90db-304f55a13249"},{"name":"Get Payload Metadata","id":"cf89dc63-e5c7-47f0-b2a5-219afe351dd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payload_metadatum","description":"<p>Retrieves the details of a specific payload metadata record.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","payload-metadata",":payload_metadatum"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_run_id.</p>\n","type":"text/plain"},"key":"filter[flow_run_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_step_id.</p>\n","type":"text/plain"},"key":"filter[flow_step_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_log_id.</p>\n","type":"text/plain"},"key":"filter[flow_log_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"ff673c22-a767-4f72-989f-2169eee31f47","description":{"content":"<p>The payload metadatum identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"payload_metadatum"}]}},"response":[{"id":"5acab8fc-9027-4398-81e7-e10c0553794f","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payload_metadatum","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payload_metadatum"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Filter results by flow_log_id.","key":"filter[flow_log_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"payload_metadatum","value":"string","description":"The payload metadatum identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"flow_version_id\": 1,\n    \"flow_step_id\": 1,\n    \"flow_run_id\": 1,\n    \"payload_store_reference\": \"example_payload_store_reference\",\n    \"payload_size\": \"example_payload_size\",\n    \"dropped\": \"example_dropped\"\n  }\n}"},{"id":"ead90540-1cf5-41fd-bd43-96de80f9a007","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payload_metadatum","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payload_metadatum"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Filter results by flow_log_id.","key":"filter[flow_log_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"payload_metadatum","value":"string","description":"The payload metadatum identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cbf2ddbf-8484-4572-b1ad-30e1359caee2","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payload_metadatum","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payload_metadatum"],"query":[{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by flow_step_id.","key":"filter[flow_step_id]","value":"string","disabled":true},{"description":"Filter results by flow_log_id.","key":"filter[flow_log_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"payload_metadatum","value":"string","description":"The payload metadatum identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cf89dc63-e5c7-47f0-b2a5-219afe351dd3"},{"name":"Get Meta","id":"e54c37fd-deea-4c74-a628-831b4e0d5745","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payloadMetadatum/meta","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","payload-metadata",":payloadMetadatum","meta"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"2b018c56-f312-4c7f-89b3-881a86db189b","description":{"content":"<p>The payloadMetadatum identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"payloadMetadatum"}]}},"response":[{"id":"6039fad3-e0e2-47cc-9912-5b12bba73a82","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payloadMetadatum/meta","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payloadMetadatum","meta"],"variable":[{"key":"payloadMetadatum","value":"string","description":"The payloadMetadatum identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8222f0a1-b9d7-4a61-b841-744210fc82fe","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payloadMetadatum/meta","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payloadMetadatum","meta"],"variable":[{"key":"payloadMetadatum","value":"string","description":"The payloadMetadatum identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f38db142-e502-4a95-b0ad-e3159615fac8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payloadMetadatum/meta","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payloadMetadatum","meta"],"variable":[{"key":"payloadMetadatum","value":"string","description":"The payloadMetadatum identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e54c37fd-deea-4c74-a628-831b4e0d5745"},{"name":"Download Payload Metadata","id":"56fd5475-e013-4969-9f02-f85547bd2758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payloadMetadatum/download","description":"<p>Downloads the payload data for a specific payload metadata record.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","payload-metadata",":payloadMetadatum","download"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a36a431a-da41-4610-bc74-b2d57c2cd3e9","description":{"content":"<p>The payloadMetadatum identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"payloadMetadatum"}]}},"response":[{"id":"a3dbc559-f923-48c0-9258-c81543cb2b50","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payloadMetadatum/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payloadMetadatum","download"],"variable":[{"key":"payloadMetadatum","value":"string","description":"The payloadMetadatum identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"3cc3855a-f68e-403e-95be-8befb3a2d659","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payloadMetadatum/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payloadMetadatum","download"],"variable":[{"key":"payloadMetadatum","value":"string","description":"The payloadMetadatum identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8029f895-a2de-4db0-86e5-9bc776c04d24","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/payload-metadata/:payloadMetadatum/download","host":["https://core.wearepatchworks.com"],"path":["api","v1","payload-metadata",":payloadMetadatum","download"],"variable":[{"key":"payloadMetadatum","value":"string","description":"The payloadMetadatum identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"56fd5475-e013-4969-9f02-f85547bd2758"}],"id":"68f1f803-ea01-4783-a89d-0f1d699a4683","_postman_id":"68f1f803-ea01-4783-a89d-0f1d699a4683","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Request Options","item":[{"name":"List Request Options","id":"870c17de-6b74-4d40-9d95-7c37180cd899","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/request-options","description":"<p>List all request options.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Pagination is available for this request. Please see the section on using pagination for more details.</p>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>type</li>\n<li>key</li>\n<li>value</li>\n<li>requestable_type</li>\n<li>requestable_id</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>type</li>\n<li>key</li>\n<li>value</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","request-options"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by requestable_type.</p>\n","type":"text/plain"},"key":"filter[requestable_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by requestable_id.</p>\n","type":"text/plain"},"key":"filter[requestable_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: type, key, value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"ad64e8ec-7bd8-4a55-8da5-62d9e19e1171","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by requestable_type.","key":"filter[requestable_type]","value":"string","disabled":true},{"description":"Filter results by requestable_id.","key":"filter[requestable_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"type\": \"example_type\",\n      \"key\": \"example_key\",\n      \"value\": \"example_value\",\n      \"requestable_type\": \"example_requestable_type\",\n      \"requestable_id\": 1,\n      \"configurable\": \"example_configurable\",\n      \"locked\": \"example_locked\",\n      \"required\": \"example_required\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"alias\": \"example_alias\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/request-options\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/request-options?page=1\",\n    \"last\": \"https://api.example.com/api/v1/request-options?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"339bf005-e88a-4070-9465-ca3546608b47","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by requestable_type.","key":"filter[requestable_type]","value":"string","disabled":true},{"description":"Filter results by requestable_id.","key":"filter[requestable_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"89290bf9-f440-41be-9331-aa940c2bac16","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by requestable_type.","key":"filter[requestable_type]","value":"string","disabled":true},{"description":"Filter results by requestable_id.","key":"filter[requestable_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"870c17de-6b74-4d40-9d95-7c37180cd899"},{"name":"Create Request Option","id":"803f483e-cbaf-42e0-bd74-59a0305561dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"requestable_id\": 9299,\n  \"requestable_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\",\n  \"locked\": \"string\",\n  \"required\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/request-options","description":"<p>Create a new request option.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>key</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>requestable_type</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>requestable_id</td>\n<td>integer</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>configurable</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>locked</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>required</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","request-options"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"4f2a78f4-bb80-484e-a655-893891c2bd8d","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"requestable_id\": 9299,\n  \"requestable_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\",\n  \"locked\": \"string\",\n  \"required\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/request-options"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"requestable_type\": \"example_requestable_type\",\n    \"requestable_id\": 1,\n    \"configurable\": \"example_configurable\",\n    \"locked\": \"example_locked\",\n    \"required\": \"example_required\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"03adf874-d5b8-40d6-80f9-05946ce4a47d","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"requestable_id\": 9299,\n  \"requestable_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\",\n  \"locked\": \"string\",\n  \"required\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/request-options"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"518b40a9-3ed1-415d-867e-e371183372af","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"requestable_id\": 9299,\n  \"requestable_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\",\n  \"locked\": \"string\",\n  \"required\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/request-options"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"845ecdd0-73e1-4741-90e9-66effc55f1c5","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"requestable_id\": 9299,\n  \"requestable_type\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\",\n  \"locked\": \"string\",\n  \"required\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/request-options"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"type\": [\n      \"The type field is required.\"\n    ],\n    \"key\": [\n      \"The key field is required.\"\n    ],\n    \"value\": [\n      \"The value field is required.\"\n    ]\n  }\n}"}],"_postman_id":"803f483e-cbaf-42e0-bd74-59a0305561dd"},{"name":"Get Request Option","id":"0e5eea8e-3ddd-43e4-b458-559a6dabfefd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","description":"<p>Get a single request option.</p>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>type</li>\n<li>key</li>\n<li>value</li>\n<li>requestable_type</li>\n<li>requestable_id</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>type</li>\n<li>key</li>\n<li>value</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","request-options",":request_option"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by requestable_type.</p>\n","type":"text/plain"},"key":"filter[requestable_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by requestable_id.</p>\n","type":"text/plain"},"key":"filter[requestable_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: type, key, value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"31052861-52fe-43c6-b8cc-4bdccdbda545","description":{"content":"<p>The request option identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"request_option"}]}},"response":[{"id":"9f401946-a8c3-4878-a4d9-08add703181e","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by requestable_type.","key":"filter[requestable_type]","value":"string","disabled":true},{"description":"Filter results by requestable_id.","key":"filter[requestable_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"requestable_type\": \"example_requestable_type\",\n    \"requestable_id\": 1,\n    \"configurable\": \"example_configurable\",\n    \"locked\": \"example_locked\",\n    \"required\": \"example_required\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"7841c2dc-df3b-4cf7-8de6-233af5de9879","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by requestable_type.","key":"filter[requestable_type]","value":"string","disabled":true},{"description":"Filter results by requestable_id.","key":"filter[requestable_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"697c5001-cb27-4581-a9e2-45138df3bd6b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"query":[{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by requestable_type.","key":"filter[requestable_type]","value":"string","disabled":true},{"description":"Filter results by requestable_id.","key":"filter[requestable_id]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: type, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0e5eea8e-3ddd-43e4-b458-559a6dabfefd"},{"name":"Update Request Option","id":"e19e460e-151a-4b38-9f76-34d3c4cd3cba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","description":"<p>Update an existing request option.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>key</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","request-options",":request_option"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"bae88b91-f8ea-46a3-83b0-f5d37425558d","description":{"content":"<p>The request option identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"request_option"}]}},"response":[{"id":"dee78d1f-631e-4ae4-97a5-b960845afe85","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"requestable_type\": \"example_requestable_type\",\n    \"requestable_id\": 1,\n    \"configurable\": \"example_configurable\",\n    \"locked\": \"example_locked\",\n    \"required\": \"example_required\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"65473963-10f9-4c6a-b12f-b93e8ca1aa2f","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9ba9bf3b-6e6a-4b91-9e56-09496ba0ed17","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6a45b19c-b176-42ec-8ee6-1a426494c189","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"type\": [\n      \"The type must be a string.\"\n    ],\n    \"key\": [\n      \"The key must be a string.\"\n    ],\n    \"value\": [\n      \"The value must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"e19e460e-151a-4b38-9f76-34d3c4cd3cba"},{"name":"Delete Request Option","id":"a4742ba5-4b79-4141-812d-564926ecc912","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","description":"<p>Delete a request option.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","request-options",":request_option"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a5283182-5892-4b16-a0e0-1614020077d1","description":{"content":"<p>The request option identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"request_option"}]}},"response":[{"id":"aca61e58-a817-4af5-98a1-b358504d341e","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"0e38f58e-7fd0-4de1-9255-78a773b7dfd9","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"63aa0a45-fd4a-485b-a06a-9666651aa0a6","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/request-options/:request_option","host":["https://core.wearepatchworks.com"],"path":["api","v1","request-options",":request_option"],"variable":[{"key":"request_option","value":"string","description":"The request option identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a4742ba5-4b79-4141-812d-564926ecc912"}],"id":"f73591c8-3945-40cd-b2bc-c94946223b75","_postman_id":"f73591c8-3945-40cd-b2bc-c94946223b75","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Scheduled Flows","item":[{"name":"List Scheduled Flows","id":"1c26be96-8178-48e0-84d9-de8306f73635","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/scheduled-flows","description":"<p>Retrieves a paginated list of scheduled flow runs. Can be filtered by <code>status</code> and <code>flow_version_id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scheduled-flows"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by status.</p>\n","type":"text/plain"},"key":"filter[status]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_version_id.</p>\n","type":"text/plain"},"key":"filter[flow_version_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flowVersion, payloadMetadata, flow, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: status, created_at, updated_at, flow_version_id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"86633050-edb0-41db-97d6-eddc2054a413","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows"],"query":[{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, payloadMetadata, flow, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: status, created_at, updated_at, flow_version_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"flow_version_id\": 1,\n      \"flow_version\": {},\n      \"virtual_environment_version_id\": 1,\n      \"virtual_environment_version\": {},\n      \"payload_metadata_id\": 1,\n      \"payload_metadata\": {},\n      \"trigger\": \"API\",\n      \"status\": \"Draft\",\n      \"flow\": {}\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/scheduled-flows\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/scheduled-flows?page=1\",\n    \"last\": \"https://api.example.com/api/v1/scheduled-flows?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"d0bff16b-44b8-4876-8150-b72a28f06be7","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows"],"query":[{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, payloadMetadata, flow, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: status, created_at, updated_at, flow_version_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"27547735-0b9b-4802-9d33-e35926afef44","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows"],"query":[{"description":"Filter results by status.","key":"filter[status]","value":"string","disabled":true},{"description":"Filter results by flow_version_id.","key":"filter[flow_version_id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flowVersion, payloadMetadata, flow, virtualEnvironmentVersion, virtualEnvironmentVersion.virtualEnvironment","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: status, created_at, updated_at, flow_version_id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1c26be96-8178-48e0-84d9-de8306f73635"},{"name":"Delete All","id":"320f3f0e-1fa6-4d06-b0c1-e13a5c567a45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/scheduled-flows","description":"<p>Permanently deletes all scheduled flow runs for the company.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scheduled-flows"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"21dd1972-b14b-4ba7-8ce6-573575d59703","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/scheduled-flows"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"d3b1e1d6-8a64-4b7d-a113-4b29aa76bec2","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/scheduled-flows"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"244809db-bd0a-43b4-9661-dabf745c5ab9","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/scheduled-flows"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"320f3f0e-1fa6-4d06-b0c1-e13a5c567a45"},{"name":"Delete Scheduled Flow","id":"ed40b233-46a0-4219-8333-efc424e576b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/scheduled-flows/:flow/delete","description":"<p>Permanently deletes all scheduled flow runs for a specific flow.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scheduled-flows",":flow","delete"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"c84b4b44-24c4-45c5-b413-5617820f4604","description":{"content":"<p>The flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow"}]}},"response":[{"id":"e2c74936-8859-45ca-94ce-558638ad47ef","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows/:flow/delete","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows",":flow","delete"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"c449d832-3f76-4140-ba33-b97d408ab20f","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows/:flow/delete","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows",":flow","delete"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1afd8943-8736-4f58-ad91-54db95dce559","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows/:flow/delete","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows",":flow","delete"],"variable":[{"key":"flow","value":"string","description":"The flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ed40b233-46a0-4219-8333-efc424e576b9"},{"name":"Delete Scheduled Flow","id":"cd1495ac-7569-42a3-81b3-fb2f655d33d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/scheduled-flows/:scheduled_flow","description":"<p>Permanently deletes a specific scheduled flow run.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scheduled-flows",":scheduled_flow"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"877d4071-5b07-43a5-bbba-989178f55d18","description":{"content":"<p>The scheduled flow identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"scheduled_flow"}]}},"response":[{"id":"6ed54487-06f1-4dbf-9467-8723039b0cc8","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows/:scheduled_flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows",":scheduled_flow"],"variable":[{"key":"scheduled_flow","value":"string","description":"The scheduled flow identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"c079e9bb-fba2-4c52-abe5-c4574d2ac8d8","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows/:scheduled_flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows",":scheduled_flow"],"variable":[{"key":"scheduled_flow","value":"string","description":"The scheduled flow identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"14f969bd-f236-4d40-b974-ac159772ffe3","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scheduled-flows/:scheduled_flow","host":["https://core.wearepatchworks.com"],"path":["api","v1","scheduled-flows",":scheduled_flow"],"variable":[{"key":"scheduled_flow","value":"string","description":"The scheduled flow identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cd1495ac-7569-42a3-81b3-fb2f655d33d4"}],"id":"91b97082-ed2f-4385-add2-a44608287e20","_postman_id":"91b97082-ed2f-4385-add2-a44608287e20","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Script Version Metrics","item":[{"name":"List Script Version Metrics","id":"e823b7e0-7ee2-4071-af00-c1ee9913f451","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/script-version-metrics","description":"<p>Retrieves a paginated list of metrics for one or more script versions. Can be filtered by <code>interval_start</code>, <code>interval_end</code>, <code>interval_unit</code>, and <code>script_version_ids</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","script-version-metrics"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"36efccdc-7ee5-470e-81a8-82b1ee396faa","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/script-version-metrics"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/script-version-metrics\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/script-version-metrics?page=1\",\n    \"last\": \"https://api.example.com/api/v1/script-version-metrics?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"a5802606-f88f-4a07-a08c-8517b0f65b13","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/script-version-metrics"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3a85a72a-8039-4670-b752-7df36695b0a7","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/script-version-metrics"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e823b7e0-7ee2-4071-af00-c1ee9913f451"}],"id":"29afbe6c-de03-4b92-b7d3-5ffe5970e48c","_postman_id":"29afbe6c-de03-4b92-b7d3-5ffe5970e48c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Script Versions","item":[{"name":"Get Script Version","id":"2dd32d07-e112-4d85-b3d7-83779752d1fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version","description":"<p>Retrieves the details of a specific script version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","script-versions",":script_version"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by is_deployed.</p>\n","type":"text/plain"},"key":"filter[is_deployed]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by deployed_at.</p>\n","type":"text/plain"},"key":"filter[deployed_at]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: content, script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"8db5001b-5aeb-4d6c-81f6-be1007167acb","description":{"content":"<p>The script version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_version"}]}},"response":[{"id":"c4595718-24e2-4668-9dde-d65460804ddb","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version"],"query":[{"description":"Filter results by is_deployed.","key":"filter[is_deployed]","value":"string","disabled":true},{"description":"Filter results by deployed_at.","key":"filter[deployed_at]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, script","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"string\",\n    \"script_id\": \"string\",\n    \"name\": \"string\",\n    \"version\": 0,\n    \"status\": \"string\",\n    \"deployment_failure_reason\": null,\n    \"last_invoked_on\": null,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployment_failed_at\": null,\n    \"deploying\": false\n  }\n}"},{"id":"ab214956-b210-4c3a-a6a7-cc7592008179","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version"],"query":[{"description":"Filter results by is_deployed.","key":"filter[is_deployed]","value":"string","disabled":true},{"description":"Filter results by deployed_at.","key":"filter[deployed_at]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, script","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9a025d5c-6c00-4b58-a15d-22222ee480e9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version"],"query":[{"description":"Filter results by is_deployed.","key":"filter[is_deployed]","value":"string","disabled":true},{"description":"Filter results by deployed_at.","key":"filter[deployed_at]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, script","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2dd32d07-e112-4d85-b3d7-83779752d1fa"},{"name":"Delete Script Version","id":"f46beb8e-8220-457f-b120-8d7a23169bba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version","description":"<p>Permanently deletes a specific script version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","script-versions",":script_version"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"f1047329-e75c-43f2-94bd-81f169b48d2d","description":{"content":"<p>The script version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_version"}]}},"response":[{"id":"12adf6ac-6431-48c2-8c32-f38eaad9ef3f","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"107074c5-93bc-4554-904f-14b218aa80d0","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"156a991a-3787-47b5-90dc-0a7dad65eaaf","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f46beb8e-8220-457f-b120-8d7a23169bba"},{"name":"Upload Script Version","id":"c4a129b6-2f31-486e-a4f1-c863525d481d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/upload","description":"<p>Uploads a given script version to your <code>private</code> marketplace.</p>\n<p>This operation requires <code>administrator</code> permissions. If you are authorising requests with an API key, this request won't work (company-level API keys are associated with manager-level permissions). If you are an <code>administrator</code>, you can use OAuth 2 credentials to complete this operation. For more information please see our <a href=\"https://doc.wearepatchworks.com/product-documentation/api-reference/getting-started/authentication#oauth-2-client-credentials\">Authentication</a> section.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","script-versions",":script_version","upload"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a2fa5425-3b53-4cb1-9f7c-d33b48485376","description":{"content":"<p>The script version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_version"}]}},"response":[{"id":"5f787266-e226-4ea2-a541-3072eabf64b6","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","upload"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f4aca167-6335-46be-906f-491c958f20cb","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","upload"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"abc1bb1b-8635-4f93-9cfc-0cb19731fd4d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","upload"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0c22c633-78f6-45aa-84ea-6bdb77d04dfc","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","upload"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"c4a129b6-2f31-486e-a4f1-c863525d481d"},{"name":"Deploy Script Version","id":"84d33fb9-7081-4bc2-8958-2bd434ec754f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/deploy","description":"<p>Deploys a specific script version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","script-versions",":script_version","deploy"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"660bc429-08ae-4ecb-a6b6-c3cba391b0ab","description":{"content":"<p>The script version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_version"}]}},"response":[{"id":"226930d2-2956-491c-832f-20cfaf3af83a","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","deploy"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"24b8e59d-2d96-4e44-bd0d-90c79fb5628e","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","deploy"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fafa03d1-7141-4da2-86ec-21bc3a54ea49","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","deploy"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d3a6c8c3-7e83-47b9-82f5-4601f7b3a560","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/deploy","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","deploy"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"84d33fb9-7081-4bc2-8958-2bd434ec754f"},{"name":"Invoke Script Version","id":"72724564-8a56-4124-a578-8ff943c7a5b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"payload\": \"string\",\n  \"flow\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/invoke","description":"<p>Invokes a specific script version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","script-versions",":script_version","invoke"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b7e7de44-4106-4a2e-904c-5ddb5b0895a0","description":{"content":"<p>The script version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_version"}]}},"response":[{"id":"9dda8166-e80e-4a30-bd72-1af202df00ac","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"payload\": \"string\",\n  \"flow\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/invoke","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","invoke"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"3b3779a7-bb45-4fd1-a286-bb961c3ff42d","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"payload\": \"string\",\n  \"flow\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/invoke","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","invoke"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ce6e453b-798d-4c71-978e-913d90f25c9e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"payload\": \"string\",\n  \"flow\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/invoke","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","invoke"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a4878880-dbcf-4640-8bc9-03560adc6bc3","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"variables\": \"string\",\n  \"payload\": \"string\",\n  \"flow\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/invoke","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","invoke"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"72724564-8a56-4124-a578-8ff943c7a5b9"},{"name":"List Script Version Logs","id":"bf72f31e-71fb-4f79-97c0-b63ee938a241","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/logs","description":"<p>Retrieves a list of logs for a specific script version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","script-versions",":script_version","logs"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"fa22e818-535f-4ad0-95c8-05e98b44a2e8","description":{"content":"<p>The script version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script_version"}]}},"response":[{"id":"cd9b886c-c8b7-4fd3-8157-df4014588f33","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","logs"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"timestamp\": \"2025-01-15T10:30:00+00:00\",\n      \"text\": \"string\"\n    }\n  ]\n}"},{"id":"64c98220-bcb7-43ca-a6c4-60678b8bcaa2","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","logs"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"10642249-c581-4ca8-8a2c-2eba35fc1802","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/script-versions/:script_version/logs","host":["https://core.wearepatchworks.com"],"path":["api","v1","script-versions",":script_version","logs"],"variable":[{"key":"script_version","value":"string","description":"The script version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bf72f31e-71fb-4f79-97c0-b63ee938a241"},{"name":"List Script Versions","id":"4cbc544f-e71e-4008-a3c9-78c7aabb5ed4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","description":"<p>Retrieves a paginated list of versions for a specific script. Can be filtered by <code>is_deployed</code> and <code>deployed_at</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scripts",":script","script-versions"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by is_deployed.</p>\n","type":"text/plain"},"key":"filter[is_deployed]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by deployed_at.</p>\n","type":"text/plain"},"key":"filter[deployed_at]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: content, script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"cb2c9777-fa47-47ad-bdc2-1416fe598929","description":{"content":"<p>The script identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script"}]}},"response":[{"id":"a41de690-c0f8-4b43-9ab8-25957d722ff2","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script","script-versions"],"query":[{"description":"Filter results by is_deployed.","key":"filter[is_deployed]","value":"string","disabled":true},{"description":"Filter results by deployed_at.","key":"filter[deployed_at]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, script","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"string\",\n      \"script_id\": \"string\",\n      \"name\": \"string\",\n      \"version\": 0,\n      \"status\": \"string\",\n      \"deployment_failure_reason\": null,\n      \"last_invoked_on\": null,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"deployment_failed_at\": null,\n      \"deploying\": false\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"f0f8e3ad-14f1-4119-a285-8a6953b236fe","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script","script-versions"],"query":[{"description":"Filter results by is_deployed.","key":"filter[is_deployed]","value":"string","disabled":true},{"description":"Filter results by deployed_at.","key":"filter[deployed_at]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, script","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8559cc90-e783-4a17-ad0f-cb1b5af2eb05","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script","script-versions"],"query":[{"description":"Filter results by is_deployed.","key":"filter[is_deployed]","value":"string","disabled":true},{"description":"Filter results by deployed_at.","key":"filter[deployed_at]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: content, script","key":"include","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"4cbc544f-e71e-4008-a3c9-78c7aabb5ed4"},{"name":"Create Script Version","id":"700312aa-dea4-448e-b27b-7b8994c84725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","description":"<p>Creates a new version for a specific script.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scripts",":script","script-versions"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"70ebc5c0-0735-46d8-aa16-7c75273ce9e2","description":{"content":"<p>The script identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script"}]}},"response":[{"id":"0c128e6b-1e5e-4dd2-9ede-01ed8f612fbc","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script","script-versions"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"string\",\n    \"script_id\": \"string\",\n    \"name\": \"string\",\n    \"version\": 0,\n    \"status\": \"string\",\n    \"deployment_failure_reason\": null,\n    \"last_invoked_on\": null,\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployment_failed_at\": null,\n    \"deploying\": false\n  }\n}"},{"id":"fb558745-794c-45b7-83a0-ca13ec26bee9","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script","script-versions"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"bb93b498-9a84-46b3-bb0c-892d61a72ef6","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script","script-versions"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"dc57d791-d2bc-417d-9d33-77d2cc5dce1c","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"content\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script/script-versions","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script","script-versions"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"content\": [\n      \"The content field is required.\"\n    ]\n  }\n}"}],"_postman_id":"700312aa-dea4-448e-b27b-7b8994c84725"}],"id":"ff5c447e-99c6-496d-b5fb-6707a049981f","_postman_id":"ff5c447e-99c6-496d-b5fb-6707a049981f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Scripts","item":[{"name":"List Scripts","id":"f1395b04-8344-451b-81c6-ab68dc585eaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/scripts","description":"<p>Retrieves a paginated list of scripts. Can be filtered by <code>name</code> and <code>versions.id</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scripts"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by versions.id.</p>\n","type":"text/plain"},"key":"filter[versions.id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: versions, versions.content, latestVersion, latestVersion.content</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of versions fields to return. Available: id, script_id, version, name, deployed_at, deployment_failed_at, deploying, deployment_failure_reason</p>\n","type":"text/plain"},"key":"fields[versions]","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"a2ec49a6-0638-4b69-b44c-295f78ec4bc6","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, versions.content, latestVersion, latestVersion.content","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of versions fields to return. Available: id, script_id, version, name, deployed_at, deployment_failed_at, deploying, deployment_failure_reason","key":"fields[versions]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"string\",\n      \"script_template_id\": null,\n      \"name\": \"string\",\n      \"description\": \"string\",\n      \"language\": \"string\",\n      \"ai_created\": false\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  }\n}"},{"id":"3ca35e9d-7128-4573-a701-85b88a7d401c","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, versions.content, latestVersion, latestVersion.content","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of versions fields to return. Available: id, script_id, version, name, deployed_at, deployment_failed_at, deploying, deployment_failure_reason","key":"fields[versions]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"46f29970-5936-4fb3-bbec-708ba0db9880","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, versions.content, latestVersion, latestVersion.content","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of versions fields to return. Available: id, script_id, version, name, deployed_at, deployment_failed_at, deploying, deployment_failure_reason","key":"fields[versions]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f1395b04-8344-451b-81c6-ab68dc585eaf"},{"name":"Create Script","id":"ab2d7311-c944-46a2-9d11-058621fd49ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"ai_created\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/scripts","description":"<p>Creates a new script.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scripts"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"daa844ec-cd50-422d-b146-484c7b8d75ea","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"ai_created\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/scripts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"string\",\n    \"script_template_id\": null,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"language\": \"string\",\n    \"ai_created\": false\n  }\n}"},{"id":"e52c1d52-8261-4af1-b985-44d0ee0e7a5e","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"ai_created\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/scripts"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"31f234ca-a7dc-4ab8-a32e-671316d893cd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"ai_created\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/scripts"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a0edb7d9-a63c-47bc-8a63-cfb7a7a9ea7c","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"ai_created\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/scripts"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"description\": [\n      \"The description must be a string.\"\n    ],\n    \"language\": [\n      \"The language field is required.\"\n    ]\n  }\n}"}],"_postman_id":"ab2d7311-c944-46a2-9d11-058621fd49ac"},{"name":"Get Script","id":"0e1c1a97-7ae6-4e4d-ab2e-b6884395e88b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/scripts/:script","description":"<p>Retrieves the details of a specific script.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scripts",":script"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by versions.id.</p>\n","type":"text/plain"},"key":"filter[versions.id]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: versions, versions.content, latestVersion, latestVersion.content</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of versions fields to return. Available: id, script_id, version, name, deployed_at, deployment_failed_at, deploying, deployment_failure_reason</p>\n","type":"text/plain"},"key":"fields[versions]","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"00e67832-9071-495a-8ac0-6274d14b85ae","description":{"content":"<p>The script identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script"}]}},"response":[{"id":"9f491ccf-e6e5-490e-ae3c-9df53c3dae3a","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, versions.content, latestVersion, latestVersion.content","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of versions fields to return. Available: id, script_id, version, name, deployed_at, deployment_failed_at, deploying, deployment_failure_reason","key":"fields[versions]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"string\",\n    \"script_template_id\": null,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"language\": \"string\",\n    \"ai_created\": false\n  }\n}"},{"id":"f00bc264-df28-4c16-bcfc-4a131b71bd16","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, versions.content, latestVersion, latestVersion.content","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of versions fields to return. Available: id, script_id, version, name, deployed_at, deployment_failed_at, deploying, deployment_failure_reason","key":"fields[versions]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d5f45e47-a6f5-4809-a681-4fb39c318e63","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by versions.id.","key":"filter[versions.id]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: versions, versions.content, latestVersion, latestVersion.content","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Comma-separated list of versions fields to return. Available: id, script_id, version, name, deployed_at, deployment_failed_at, deploying, deployment_failure_reason","key":"fields[versions]","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0e1c1a97-7ae6-4e4d-ab2e-b6884395e88b"},{"name":"Update Script","id":"9ecdf592-9132-4478-95dc-3e30e06215b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/scripts/:script","description":"<p>Updates an existing script.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scripts",":script"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8c95468b-1dc6-4d1b-b115-75ea021a2da8","description":{"content":"<p>The script identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script"}]}},"response":[{"id":"471f5d08-25f7-43a2-8ff6-fb455be9d5ef","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"string\",\n    \"script_template_id\": null,\n    \"name\": \"string\",\n    \"description\": \"string\",\n    \"language\": \"string\",\n    \"ai_created\": false\n  }\n}"},{"id":"3f50e0b0-aa8a-4101-b717-db33ef1216f7","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"3ab55210-85e6-436b-a1ad-982b8ad86e11","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7d4c7b92-3e7c-4f18-ae62-1093ee8c5f22","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"description\": \"string\",\n  \"language\": \"string\",\n  \"value\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"description\": [\n      \"The description must be a string.\"\n    ],\n    \"language\": [\n      \"The language must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"9ecdf592-9132-4478-95dc-3e30e06215b1"},{"name":"Delete Script","id":"e221a397-b680-4ae1-aeee-3b1985b6f20a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/scripts/:script","description":"<p>Permanently deletes a specific script.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","scripts",":script"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a8f7071b-4721-477b-9d6b-2930294326ce","description":{"content":"<p>The script identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"script"}]}},"response":[{"id":"67cb436a-0626-4181-a2e8-f77147dc2395","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"48e7867d-57d4-4cdf-9a9d-d97f9066e4c3","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9b94b6ab-3a12-4c9b-959c-31e45a8086db","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/scripts/:script","host":["https://core.wearepatchworks.com"],"path":["api","v1","scripts",":script"],"variable":[{"key":"script","value":"string","description":"The script identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"e221a397-b680-4ae1-aeee-3b1985b6f20a"}],"id":"aa7c94cb-0d91-462e-bac6-186ee91cd99e","_postman_id":"aa7c94cb-0d91-462e-bac6-186ee91cd99e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Systems","item":[{"name":"List Systems","id":"1cc066bc-ddee-46ca-8198-d661e673597c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems","description":"<p>Lists all systems. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Pagination is available for this request. Please see the section on using pagination for more details.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>logo</li>\n<li>logo_count</li>\n<li>logoExists</li>\n<li>systemType</li>\n<li>systemType_count</li>\n<li>systemTypeExists</li>\n<li>connectors</li>\n<li>connectors_count</li>\n<li>connectorsExists</li>\n<li>connectors.authenticationImplementation</li>\n<li>endpoints</li>\n<li>endpoints_count</li>\n<li>endpointsExists</li>\n<li>authenticationImplementations</li>\n<li>authenticationImplementations_count</li>\n<li>authenticationImplementationsExists</li>\n<li>authenticationImplementations.variables</li>\n<li>authenticationImplementations.authenticationType</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>systemTemplate</li>\n<li>systemTemplate_count</li>\n<li>systemTemplateExists</li>\n<li>systemTemplate.company</li>\n<li>systemTemplate.marketplaceCompany</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>withUpdatable</li>\n<li>fromMarketplace</li>\n<li>fromApp</li>\n</ul>\n<h2 id=\"available-fields\">Available Fields</h2>\n<p>These are the fields that can be requested to limit the data returned. Please see the section on using fields for more details.</p>\n<ul>\n<li>systems.id</li>\n<li>systems.name</li>\n<li>systems.label</li>\n<li>systems.colour</li>\n<li>systems.system_template_id</li>\n<li>systems.version</li>\n<li>systems.version_name</li>\n<li>systems.system_type_id</li>\n<li>systems.protocol</li>\n<li>systems.date_format</li>\n<li>systems.help_link</li>\n<li>systems.created_at</li>\n<li>systems.updated_at</li>\n<li>systems.rate_limit_unit</li>\n<li>systems.rate_limit_duration</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by canonical_key.</p>\n","type":"text/plain"},"key":"filter[canonical_key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by withUpdatable.</p>\n","type":"text/plain"},"key":"filter[withUpdatable]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by fromMarketplace.</p>\n","type":"text/plain"},"key":"filter[fromMarketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by fromApp.</p>\n","type":"text/plain"},"key":"filter[fromApp]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: logo, systemType, connectors, connectors.authenticationImplementation, endpoints, authenticationImplementations.variables, authenticationImplementations.authenticationType, variables, systemTemplate.company, systemTemplate.marketplaceCompany, endpoints.preScriptVersion, endpoints.postScriptVersion, endpoints.preScriptVersion.script, endpoints.postScriptVersion.script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"abcece26-7024-4c42-aaf0-01f641242d60","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by withUpdatable.","key":"filter[withUpdatable]","value":"string","disabled":true},{"description":"Filter results by fromMarketplace.","key":"filter[fromMarketplace]","value":"string","disabled":true},{"description":"Filter results by fromApp.","key":"filter[fromApp]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: logo, systemType, connectors, connectors.authenticationImplementation, endpoints, authenticationImplementations.variables, authenticationImplementations.authenticationType, variables, systemTemplate.company, systemTemplate.marketplaceCompany, endpoints.preScriptVersion, endpoints.postScriptVersion, endpoints.preScriptVersion.script, endpoints.postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"label\": \"string\",\n      \"colour\": \"string\",\n      \"version\": 0,\n      \"version_name\": \"string\",\n      \"rate_limit_unit\": \"string\",\n      \"rate_limit_duration\": 0,\n      \"system_type_id\": 0,\n      \"protocol\": \"string\",\n      \"system_template_id\": 0,\n      \"date_format\": \"string\",\n      \"canonical_key\": \"string\",\n      \"help_link\": null\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 0,\n    \"from\": 0,\n    \"last_page\": 0,\n    \"links\": [],\n    \"path\": \"string\",\n    \"per_page\": 0,\n    \"to\": 0,\n    \"total\": 0\n  }\n}"},{"id":"cb8cdfcf-e24b-4f45-8c11-567ec2454077","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by withUpdatable.","key":"filter[withUpdatable]","value":"string","disabled":true},{"description":"Filter results by fromMarketplace.","key":"filter[fromMarketplace]","value":"string","disabled":true},{"description":"Filter results by fromApp.","key":"filter[fromApp]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: logo, systemType, connectors, connectors.authenticationImplementation, endpoints, authenticationImplementations.variables, authenticationImplementations.authenticationType, variables, systemTemplate.company, systemTemplate.marketplaceCompany, endpoints.preScriptVersion, endpoints.postScriptVersion, endpoints.preScriptVersion.script, endpoints.postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c8e16dfc-f0fc-4af8-91d4-f79937da8e36","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by withUpdatable.","key":"filter[withUpdatable]","value":"string","disabled":true},{"description":"Filter results by fromMarketplace.","key":"filter[fromMarketplace]","value":"string","disabled":true},{"description":"Filter results by fromApp.","key":"filter[fromApp]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: logo, systemType, connectors, connectors.authenticationImplementation, endpoints, authenticationImplementations.variables, authenticationImplementations.authenticationType, variables, systemTemplate.company, systemTemplate.marketplaceCompany, endpoints.preScriptVersion, endpoints.postScriptVersion, endpoints.preScriptVersion.script, endpoints.postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1cc066bc-ddee-46ca-8198-d661e673597c"},{"name":"Create System","id":"94c7ee6d-cbcc-4969-bfd4-a1eeebebd338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"system_type_id\": 0,\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0,\n    \"protocol\": \"string\",\n    \"date_format\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems","description":"<p>Creates a new system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>version_name</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>label</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>colour</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>logo</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>rate_limit_unit</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>rate_limit_duration</td>\n<td>integer</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>system_type_id</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>protocol</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>system_template_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>date_format</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>help_link</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"54a677aa-e859-4dea-9dc5-70e096b39ea9","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"system_type_id\": 0,\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0,\n    \"protocol\": \"string\",\n    \"date_format\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"version\": 0,\n    \"version_name\": \"string\",\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0,\n    \"system_type_id\": 0,\n    \"protocol\": \"string\",\n    \"system_template_id\": 0,\n    \"date_format\": \"string\",\n    \"canonical_key\": \"string\",\n    \"help_link\": null\n  }\n}"},{"id":"faa38b1b-9776-4444-8ae7-7a9cb99da600","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"system_type_id\": 0,\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0,\n    \"protocol\": \"string\",\n    \"date_format\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"75f204f7-c78c-44d6-a985-0221f1450290","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"system_type_id\": 0,\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0,\n    \"protocol\": \"string\",\n    \"date_format\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"562f918c-511c-4f38-83f0-cecb2d6052c4","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"system_type_id\": 0,\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0,\n    \"protocol\": \"string\",\n    \"date_format\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"version_name\": [\n      \"The version name field is required.\"\n    ],\n    \"label\": [\n      \"The label field is required.\"\n    ]\n  }\n}"}],"_postman_id":"94c7ee6d-cbcc-4969-bfd4-a1eeebebd338"},{"name":"Get System","id":"3f2b6f18-8670-4ff2-9008-254dc71b932b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system","description":"<p>Retrieves details for a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>logo</li>\n<li>logo_count</li>\n<li>logoExists</li>\n<li>systemType</li>\n<li>systemType_count</li>\n<li>systemTypeExists</li>\n<li>connectors</li>\n<li>connectors_count</li>\n<li>connectorsExists</li>\n<li>connectors.authenticationImplementation</li>\n<li>endpoints</li>\n<li>endpoints_count</li>\n<li>endpointsExists</li>\n<li>authenticationImplementations</li>\n<li>authenticationImplementations_count</li>\n<li>authenticationImplementationsExists</li>\n<li>authenticationImplementations.variables</li>\n<li>authenticationImplementations.authenticationType</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>systemTemplate</li>\n<li>systemTemplate_count</li>\n<li>systemTemplateExists</li>\n<li>systemTemplate.company</li>\n<li>systemTemplate.marketplaceCompany</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>withUpdatable</li>\n<li>fromMarketplace</li>\n<li>fromApp</li>\n</ul>\n<h2 id=\"available-fields\">Available Fields</h2>\n<p>These are the fields that can be requested to limit the data returned. Please see the section on using fields for more details.</p>\n<ul>\n<li>systems.id</li>\n<li>systems.name</li>\n<li>systems.label</li>\n<li>systems.colour</li>\n<li>systems.system_template_id</li>\n<li>systems.version</li>\n<li>systems.version_name</li>\n<li>systems.system_type_id</li>\n<li>systems.protocol</li>\n<li>systems.date_format</li>\n<li>systems.help_link</li>\n<li>systems.created_at</li>\n<li>systems.updated_at</li>\n<li>systems.rate_limit_unit</li>\n<li>systems.rate_limit_duration</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by canonical_key.</p>\n","type":"text/plain"},"key":"filter[canonical_key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by withUpdatable.</p>\n","type":"text/plain"},"key":"filter[withUpdatable]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by fromMarketplace.</p>\n","type":"text/plain"},"key":"filter[fromMarketplace]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by fromApp.</p>\n","type":"text/plain"},"key":"filter[fromApp]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by id.</p>\n","type":"text/plain"},"key":"filter[id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by ,.</p>\n","type":"text/plain"},"key":"filter[,]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: logo, systemType, connectors, connectors.authenticationImplementation, endpoints, authenticationImplementations.variables, authenticationImplementations.authenticationType, variables, systemTemplate.company, systemTemplate.marketplaceCompany, endpoints.preScriptVersion, endpoints.postScriptVersion, endpoints.preScriptVersion.script, endpoints.postScriptVersion.script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"5459b369-70c0-4cf5-8978-2e9e72387edf","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"72644be0-5e2f-4bac-8652-2b8d1ee0b711","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by withUpdatable.","key":"filter[withUpdatable]","value":"string","disabled":true},{"description":"Filter results by fromMarketplace.","key":"filter[fromMarketplace]","value":"string","disabled":true},{"description":"Filter results by fromApp.","key":"filter[fromApp]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: logo, systemType, connectors, connectors.authenticationImplementation, endpoints, authenticationImplementations.variables, authenticationImplementations.authenticationType, variables, systemTemplate.company, systemTemplate.marketplaceCompany, endpoints.preScriptVersion, endpoints.postScriptVersion, endpoints.preScriptVersion.script, endpoints.postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"version\": 0,\n    \"version_name\": \"string\",\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0,\n    \"system_type_id\": 0,\n    \"protocol\": \"string\",\n    \"system_template_id\": 0,\n    \"date_format\": \"string\",\n    \"canonical_key\": \"string\",\n    \"help_link\": null\n  }\n}"},{"id":"86afb04c-b58c-466d-9164-15348a7e341e","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by withUpdatable.","key":"filter[withUpdatable]","value":"string","disabled":true},{"description":"Filter results by fromMarketplace.","key":"filter[fromMarketplace]","value":"string","disabled":true},{"description":"Filter results by fromApp.","key":"filter[fromApp]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: logo, systemType, connectors, connectors.authenticationImplementation, endpoints, authenticationImplementations.variables, authenticationImplementations.authenticationType, variables, systemTemplate.company, systemTemplate.marketplaceCompany, endpoints.preScriptVersion, endpoints.postScriptVersion, endpoints.preScriptVersion.script, endpoints.postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"28067a0e-6414-4f3e-9e32-5ffec5aa7b87","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by canonical_key.","key":"filter[canonical_key]","value":"string","disabled":true},{"description":"Filter results by withUpdatable.","key":"filter[withUpdatable]","value":"string","disabled":true},{"description":"Filter results by fromMarketplace.","key":"filter[fromMarketplace]","value":"string","disabled":true},{"description":"Filter results by fromApp.","key":"filter[fromApp]","value":"string","disabled":true},{"description":"Filter results by id.","key":"filter[id]","value":"string","disabled":true},{"description":"Filter results by ,.","key":"filter[,]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: logo, systemType, connectors, connectors.authenticationImplementation, endpoints, authenticationImplementations.variables, authenticationImplementations.authenticationType, variables, systemTemplate.company, systemTemplate.marketplaceCompany, endpoints.preScriptVersion, endpoints.postScriptVersion, endpoints.preScriptVersion.script, endpoints.postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"3f2b6f18-8670-4ff2-9008-254dc71b932b"},{"name":"Update System","id":"5b19129c-9272-4810-a2bc-f6ffce21d124","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/:system","description":"<p>Updates an existing system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>version_name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>label</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>colour</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>rate_limit_unit</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>rate_limit_duration</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>system_type_id</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>protocol</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>system_template_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>logo</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>date_format</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>help_link</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"15f7ac96-f704-498a-a44f-26014dda11fe","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"ab1a0f81-8e29-4243-bcf9-a7ea5619cfdb","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"version\": 0,\n    \"version_name\": \"string\",\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0,\n    \"system_type_id\": 0,\n    \"protocol\": \"string\",\n    \"system_template_id\": 0,\n    \"date_format\": \"string\",\n    \"canonical_key\": \"string\",\n    \"help_link\": null\n  }\n}"},{"id":"6e92bcb8-bb4f-431f-bf9b-c9f161619171","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"456c1276-f209-4b56-b7bc-798a7223c321","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"c1fda111-3293-4d32-833a-9e6e040273b5","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow\": {\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"colour\": \"string\",\n    \"rate_limit_unit\": \"string\",\n    \"rate_limit_duration\": 0\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"version_name\": [\n      \"The version name must be a string.\"\n    ],\n    \"label\": [\n      \"The label must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"5b19129c-9272-4810-a2bc-f6ffce21d124"},{"name":"Delete System","id":"d2142a22-ba6c-491e-a306-4590e2b64684","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system","description":"<p>Deletes a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"0d30ed18-6c6b-4f1a-a120-1c534e639621","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"5fbf28da-8a62-4ef5-9027-242cbe8820bf","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"c57a8b2e-123f-4464-9948-f4fdefd5653c","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b97b6087-0a29-49e8-924a-52ccac28c30d","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d2142a22-ba6c-491e-a306-4590e2b64684"},{"name":"Export System","id":"3f86f6a9-ef64-439a-a7c0-85401eaa98dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"system_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/export","description":"<p>Exports a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>system_id</td>\n<td>integer</td>\n<td>☑</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems","export"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"4d095b7b-6a80-4631-9df6-4b4a9a55ffd2","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"system_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"metadata\": {\n    \"company_name\": \"string\",\n    \"system_name\": \"string\",\n    \"exported_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"exported_by\": \"string\",\n    \"system_id\": 0,\n    \"system_version\": null,\n    \"import_summary\": {\n      \"setup_required\": {\n        \"connectors_needing_config\": 0,\n        \"auth_implementations_needing_credentials\": 0,\n        \"variables_needing_values\": 0\n      },\n      \"dependencies\": [],\n      \"imported_resources\": {\n        \"systems_imported\": 0,\n        \"endpoints\": 0,\n        \"connectors\": 0\n      },\n      \"next_steps\": []\n    }\n  },\n  \"system\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"label\": \"string\",\n    \"version\": 0\n  },\n  \"scripts\": []\n}"},{"id":"ba1f3310-ddcb-4af0-9dc7-4eab027eb2d4","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"system_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/export"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"76f7c59a-b84a-40f5-a015-dded0bbfe9a2","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"system_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/export"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2d15850f-8bbf-4250-8e21-0ba79e4ca00e","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"system_id\": 0\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/export"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"3f86f6a9-ef64-439a-a7c0-85401eaa98dd"},{"name":"Import System","id":"cc995e02-aa46-4eaf-a7b5-2bf2cdf80c96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"system\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import","description":"<p>To be confirmed. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>. Import for import.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>system</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>as_marketplace</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems","import"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"ffd693df-6ad6-4db6-95d3-df5604a9ac15","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"system\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"system_id\": 0,\n  \"system_name\": \"string\",\n  \"import_summary\": {\n    \"setup_required\": {\n      \"connectors_needing_config\": 0,\n      \"auth_implementations_needing_credentials\": 0,\n      \"variables_needing_values\": 0\n    },\n    \"dependencies\": [],\n    \"imported_resources\": {\n      \"systems_imported\": 0,\n      \"endpoints\": 0,\n      \"connectors\": 0\n    },\n    \"next_steps\": []\n  }\n}"},{"id":"928b297c-9ea7-40e7-b732-2fb19f8c0aa9","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"system\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"16a756ec-fd35-4016-8c75-8f8bd4c8e6e8","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"system\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cd57dac5-ba13-41d2-84ca-c0da972f8560","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"system\": \"string\",\n  \"metadata\": \"string\",\n  \"as_marketplace\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"cc995e02-aa46-4eaf-a7b5-2bf2cdf80c96"},{"name":"Postman Import","id":"8c96a308-4263-4899-9f9c-26bae9e16682","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"collection_url\": \"string\",\n  \"precog\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import-postman","description":"<p>Creates a system from a Postman import. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>collection_url</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>collection_file</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>precog</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems","import-postman"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"6b91cca7-0b59-47c0-82fd-f1103bd16e53","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"collection_url\": \"string\",\n  \"precog\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import-postman"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"3eae0664-f775-42e6-899a-a63920eab84a","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"collection_url\": \"string\",\n  \"precog\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import-postman"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4d548428-bddf-4a86-b891-85c53ddb3021","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"collection_url\": \"string\",\n  \"precog\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import-postman"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"64b9107c-5a27-4803-b592-07bde7a882a1","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"collection_url\": \"string\",\n  \"precog\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/import-postman"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"8c96a308-4263-4899-9f9c-26bae9e16682"},{"name":"Upload System","id":"76ddeb2e-3e7d-4f4a-bd43-690089b022b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"private\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/:system/upload","description":"<p>Uploads a system to your private marketplace. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>private</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","upload"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"62c6fca7-0391-490a-b1c8-079c20763f27","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"6968768e-d720-4fea-907c-1f76cdd1b7f4","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","upload"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"03754f61-2bbd-4698-947d-62444a2e31f7","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","upload"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"dd13fdf1-5df6-4fac-bb08-31c433f2b32d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","upload"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b5a5e76b-21a5-4681-85b7-941df91a84d9","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"private\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/upload","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","upload"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"76ddeb2e-3e7d-4f4a-bd43-690089b022b1"},{"name":"List System Endpoints","id":"5b0a086c-1ee0-4480-a91e-3589b39f85a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","description":"<p>Retrieves a paginated list of endpoints for a given system. Can be filtered by <code>name</code>, <code>direction</code>, <code>http_method</code>, and other criteria. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Pagination is available for this request. Please see the section on using pagination for more details.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>connector</li>\n<li>connector_count</li>\n<li>connectorExists</li>\n<li>system</li>\n<li>system_count</li>\n<li>systemExists</li>\n<li>entityType</li>\n<li>entityType_count</li>\n<li>entityTypeExists</li>\n<li>entityType.fieldTags</li>\n<li>endpointTemplate</li>\n<li>endpointTemplate_count</li>\n<li>endpointTemplateExists</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>authenticationImplementations</li>\n<li>authenticationImplementations_count</li>\n<li>authenticationImplementationsExists</li>\n<li>fieldTags</li>\n<li>fieldTags_count</li>\n<li>fieldTagsExists</li>\n<li>filters</li>\n<li>filters_count</li>\n<li>filtersExists</li>\n<li>endpointSchema</li>\n<li>endpointSchema_count</li>\n<li>endpointSchemaExists</li>\n<li>preScriptVersion</li>\n<li>preScriptVersion_count</li>\n<li>preScriptVersionExists</li>\n<li>preScriptVersion.script</li>\n<li>postScriptVersion</li>\n<li>postScriptVersion_count</li>\n<li>postScriptVersionExists</li>\n<li>postScriptVersion.script</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>system_id</li>\n<li>entity_type_id</li>\n<li>endpoint</li>\n<li>direction</li>\n<li>http_method</li>\n<li>endpoint_template_id</li>\n<li>data_type</li>\n<li>deprecated_at</li>\n<li>data_path</li>\n<li>body_format</li>\n</ul>\n<h2 id=\"available-fields\">Available Fields</h2>\n<p>These are the fields that can be requested to limit the data returned. Please see the section on using fields for more details.</p>\n<ul>\n<li>endpoints.id</li>\n<li>endpoints.name</li>\n<li>endpoints.entity_type_id</li>\n<li>endpoints.direction</li>\n<li>endpoints.http_method</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n<li>system_id</li>\n<li>entity_type_id</li>\n<li>endpoint</li>\n<li>direction</li>\n<li>http_method</li>\n<li>endpoint_template_id</li>\n<li>data_type</li>\n<li>deprecated_at</li>\n<li>data_path</li>\n<li>body_format</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","endpoints"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system_id.</p>\n","type":"text/plain"},"key":"filter[system_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by entity_type_id.</p>\n","type":"text/plain"},"key":"filter[entity_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by endpoint.</p>\n","type":"text/plain"},"key":"filter[endpoint]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by direction.</p>\n","type":"text/plain"},"key":"filter[direction]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by http_method.</p>\n","type":"text/plain"},"key":"filter[http_method]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by endpoint_template_id.</p>\n","type":"text/plain"},"key":"filter[endpoint_template_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by data_type.</p>\n","type":"text/plain"},"key":"filter[data_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by deprecated_at.</p>\n","type":"text/plain"},"key":"filter[deprecated_at]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by data_path.</p>\n","type":"text/plain"},"key":"filter[data_path]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by body_format.</p>\n","type":"text/plain"},"key":"filter[body_format]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: connector, system, entityType, entityType.fieldTags, endpointTemplate, variables, authenticationImplementations, fieldTags, filters, endpointSchema, preScriptVersion.script, postScriptVersion.script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, system_id, entity_type_id, endpoint, direction, http_method, endpoint_template_id, data_type, deprecated_at, data_path, body_format</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"9898a543-ed4a-40aa-8717-8b0d3dbf7aa3","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"4d237846-3533-47bc-809c-1525eabbdbcc","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by direction.","key":"filter[direction]","value":"string","disabled":true},{"description":"Filter results by http_method.","key":"filter[http_method]","value":"string","disabled":true},{"description":"Filter results by endpoint_template_id.","key":"filter[endpoint_template_id]","value":"string","disabled":true},{"description":"Filter results by data_type.","key":"filter[data_type]","value":"string","disabled":true},{"description":"Filter results by deprecated_at.","key":"filter[deprecated_at]","value":"string","disabled":true},{"description":"Filter results by data_path.","key":"filter[data_path]","value":"string","disabled":true},{"description":"Filter results by body_format.","key":"filter[body_format]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connector, system, entityType, entityType.fieldTags, endpointTemplate, variables, authenticationImplementations, fieldTags, filters, endpointSchema, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, system_id, entity_type_id, endpoint, direction, http_method, endpoint_template_id, data_type, deprecated_at, data_path, body_format","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"system_id\": 0,\n      \"entity_type_id\": 0,\n      \"endpoint\": \"string\",\n      \"http_method\": \"string\",\n      \"data_type\": \"string\",\n      \"pagination_method\": null,\n      \"deprecated_at\": null,\n      \"direction\": \"string\",\n      \"returns_multiple_records\": false,\n      \"pre_script_version_id\": null,\n      \"post_script_version_id\": null,\n      \"data_path\": null,\n      \"body_format\": \"string\",\n      \"raw_body\": \"string\",\n      \"modified\": false,\n      \"help_link\": null,\n      \"disable_header_addition\": 0,\n      \"response_encoding\": \"string\"\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 0,\n    \"from\": 0,\n    \"last_page\": 0,\n    \"links\": [],\n    \"path\": \"string\",\n    \"per_page\": 0,\n    \"to\": 0,\n    \"total\": 0\n  }\n}"},{"id":"e59ef7d8-9a33-4886-ac17-24881a1bdb32","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by direction.","key":"filter[direction]","value":"string","disabled":true},{"description":"Filter results by http_method.","key":"filter[http_method]","value":"string","disabled":true},{"description":"Filter results by endpoint_template_id.","key":"filter[endpoint_template_id]","value":"string","disabled":true},{"description":"Filter results by data_type.","key":"filter[data_type]","value":"string","disabled":true},{"description":"Filter results by deprecated_at.","key":"filter[deprecated_at]","value":"string","disabled":true},{"description":"Filter results by data_path.","key":"filter[data_path]","value":"string","disabled":true},{"description":"Filter results by body_format.","key":"filter[body_format]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connector, system, entityType, entityType.fieldTags, endpointTemplate, variables, authenticationImplementations, fieldTags, filters, endpointSchema, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, system_id, entity_type_id, endpoint, direction, http_method, endpoint_template_id, data_type, deprecated_at, data_path, body_format","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"7577835b-88e5-41b6-baf4-899c9625c154","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by direction.","key":"filter[direction]","value":"string","disabled":true},{"description":"Filter results by http_method.","key":"filter[http_method]","value":"string","disabled":true},{"description":"Filter results by endpoint_template_id.","key":"filter[endpoint_template_id]","value":"string","disabled":true},{"description":"Filter results by data_type.","key":"filter[data_type]","value":"string","disabled":true},{"description":"Filter results by deprecated_at.","key":"filter[deprecated_at]","value":"string","disabled":true},{"description":"Filter results by data_path.","key":"filter[data_path]","value":"string","disabled":true},{"description":"Filter results by body_format.","key":"filter[body_format]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connector, system, entityType, entityType.fieldTags, endpointTemplate, variables, authenticationImplementations, fieldTags, filters, endpointSchema, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, system_id, entity_type_id, endpoint, direction, http_method, endpoint_template_id, data_type, deprecated_at, data_path, body_format","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5b0a086c-1ee0-4480-a91e-3589b39f85a4"},{"name":"Create System Endpoint","id":"e1a098db-9689-4f41-9c91-223d5b90b21d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\",\n  \"returns_multiple_records\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","description":"<p>Creates a new endpoint for a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>entity_type_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>endpoint</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>direction</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>returns_multiple_records</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>http_method</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>data_type</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>pagination_method</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>schema</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>endpoint_template_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>data_path</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>body_format</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>raw_body</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>deprecated_at</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>help_link</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>disable_header_addition</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>response_encoding</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","endpoints"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"e408d0cf-4db9-415c-b128-0773a72f67e2","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"53006d9c-5742-46fb-8ded-44480d994b1a","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\",\n  \"returns_multiple_records\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"system_id\": 0,\n    \"entity_type_id\": 0,\n    \"endpoint\": \"string\",\n    \"http_method\": \"string\",\n    \"data_type\": \"string\",\n    \"pagination_method\": null,\n    \"deprecated_at\": null,\n    \"direction\": \"string\",\n    \"returns_multiple_records\": false,\n    \"pre_script_version_id\": null,\n    \"post_script_version_id\": null,\n    \"data_path\": null,\n    \"body_format\": \"string\",\n    \"raw_body\": \"string\",\n    \"modified\": false,\n    \"help_link\": null,\n    \"disable_header_addition\": 0,\n    \"response_encoding\": \"string\"\n  }\n}"},{"id":"ebd2ac72-63e5-467c-b38e-087c6aab736a","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\",\n  \"returns_multiple_records\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a307288b-3394-4c1b-b7a9-af03dc9dfb6d","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\",\n  \"returns_multiple_records\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"55219e9d-5b61-4b70-ad93-49bbffed3ef3","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\",\n  \"returns_multiple_records\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"entity_type_id\": [\n      \"The entity type id must be an integer.\"\n    ],\n    \"endpoint\": [\n      \"The endpoint field is required.\"\n    ]\n  }\n}"}],"_postman_id":"e1a098db-9689-4f41-9c91-223d5b90b21d"},{"name":"Wsdl Ingest","id":"c259ac90-4658-4655-a614-b97ac2524cbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"wsdl_url\": \"string\",\n  \"update_existing\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/ingest-wsdl","description":"<p>To be confirmed. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>wsdl_url</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>update_existing</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>wsdl_file</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","endpoints","ingest-wsdl"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a88bddc5-8b13-40c8-a763-31ec38c0a69c","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"eda16afd-534f-4f98-acea-be5f5b73a888","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"wsdl_url\": \"string\",\n  \"update_existing\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/ingest-wsdl","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints","ingest-wsdl"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"54940edd-3047-434a-870c-72ffc904f9d7","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"wsdl_url\": \"string\",\n  \"update_existing\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/ingest-wsdl","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints","ingest-wsdl"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"06345c09-94f0-4f40-8029-c291da2860cf","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"wsdl_url\": \"string\",\n  \"update_existing\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/ingest-wsdl","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints","ingest-wsdl"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d7757699-456c-43b7-bd79-e91f6bdacdfc","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"wsdl_url\": \"string\",\n  \"update_existing\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/ingest-wsdl","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints","ingest-wsdl"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"c259ac90-4658-4655-a614-b97ac2524cbc"},{"name":"Get System Endpoint","id":"87a4cd24-f335-4825-9054-1c6174423f32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","description":"<p>Retrieves the details for a given system endpoint. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>connector</li>\n<li>connector_count</li>\n<li>connectorExists</li>\n<li>system</li>\n<li>system_count</li>\n<li>systemExists</li>\n<li>entityType</li>\n<li>entityType_count</li>\n<li>entityTypeExists</li>\n<li>entityType.fieldTags</li>\n<li>endpointTemplate</li>\n<li>endpointTemplate_count</li>\n<li>endpointTemplateExists</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>authenticationImplementations</li>\n<li>authenticationImplementations_count</li>\n<li>authenticationImplementationsExists</li>\n<li>fieldTags</li>\n<li>fieldTags_count</li>\n<li>fieldTagsExists</li>\n<li>filters</li>\n<li>filters_count</li>\n<li>filtersExists</li>\n<li>endpointSchema</li>\n<li>endpointSchema_count</li>\n<li>endpointSchemaExists</li>\n<li>preScriptVersion</li>\n<li>preScriptVersion_count</li>\n<li>preScriptVersionExists</li>\n<li>preScriptVersion.script</li>\n<li>postScriptVersion</li>\n<li>postScriptVersion_count</li>\n<li>postScriptVersionExists</li>\n<li>postScriptVersion.script</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>system_id</li>\n<li>entity_type_id</li>\n<li>endpoint</li>\n<li>direction</li>\n<li>http_method</li>\n<li>endpoint_template_id</li>\n<li>data_type</li>\n<li>deprecated_at</li>\n<li>data_path</li>\n<li>body_format</li>\n</ul>\n<h2 id=\"available-fields\">Available Fields</h2>\n<p>These are the fields that can be requested to limit the data returned. Please see the section on using fields for more details.</p>\n<ul>\n<li>endpoints.id</li>\n<li>endpoints.name</li>\n<li>endpoints.entity_type_id</li>\n<li>endpoints.direction</li>\n<li>endpoints.http_method</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n<li>system_id</li>\n<li>entity_type_id</li>\n<li>endpoint</li>\n<li>direction</li>\n<li>http_method</li>\n<li>endpoint_template_id</li>\n<li>data_type</li>\n<li>deprecated_at</li>\n<li>data_path</li>\n<li>body_format</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","endpoints",":endpoint"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system_id.</p>\n","type":"text/plain"},"key":"filter[system_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by entity_type_id.</p>\n","type":"text/plain"},"key":"filter[entity_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by endpoint.</p>\n","type":"text/plain"},"key":"filter[endpoint]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by direction.</p>\n","type":"text/plain"},"key":"filter[direction]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by http_method.</p>\n","type":"text/plain"},"key":"filter[http_method]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by endpoint_template_id.</p>\n","type":"text/plain"},"key":"filter[endpoint_template_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by data_type.</p>\n","type":"text/plain"},"key":"filter[data_type]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by deprecated_at.</p>\n","type":"text/plain"},"key":"filter[deprecated_at]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by data_path.</p>\n","type":"text/plain"},"key":"filter[data_path]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by body_format.</p>\n","type":"text/plain"},"key":"filter[body_format]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: connector, system, entityType, entityType.fieldTags, endpointTemplate, variables, authenticationImplementations, fieldTags, filters, endpointSchema, preScriptVersion.script, postScriptVersion.script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, system_id, entity_type_id, endpoint, direction, http_method, endpoint_template_id, data_type, deprecated_at, data_path, body_format</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"9b94986f-2a26-4e75-ac65-51f58c64df6c","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"},{"id":"2c221090-5db7-458f-9742-b01f6b120077","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"0e17bc2b-0296-458f-8711-75f7d7101f79","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by direction.","key":"filter[direction]","value":"string","disabled":true},{"description":"Filter results by http_method.","key":"filter[http_method]","value":"string","disabled":true},{"description":"Filter results by endpoint_template_id.","key":"filter[endpoint_template_id]","value":"string","disabled":true},{"description":"Filter results by data_type.","key":"filter[data_type]","value":"string","disabled":true},{"description":"Filter results by deprecated_at.","key":"filter[deprecated_at]","value":"string","disabled":true},{"description":"Filter results by data_path.","key":"filter[data_path]","value":"string","disabled":true},{"description":"Filter results by body_format.","key":"filter[body_format]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connector, system, entityType, entityType.fieldTags, endpointTemplate, variables, authenticationImplementations, fieldTags, filters, endpointSchema, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, system_id, entity_type_id, endpoint, direction, http_method, endpoint_template_id, data_type, deprecated_at, data_path, body_format","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"system_id\": 0,\n    \"entity_type_id\": 0,\n    \"endpoint\": \"string\",\n    \"http_method\": \"string\",\n    \"data_type\": \"string\",\n    \"pagination_method\": null,\n    \"deprecated_at\": null,\n    \"direction\": \"string\",\n    \"returns_multiple_records\": false,\n    \"pre_script_version_id\": null,\n    \"post_script_version_id\": null,\n    \"data_path\": null,\n    \"body_format\": \"string\",\n    \"raw_body\": \"string\",\n    \"modified\": false,\n    \"help_link\": null,\n    \"disable_header_addition\": 0,\n    \"response_encoding\": \"string\"\n  }\n}"},{"id":"60ca4bae-521e-41e9-bb85-e54969ccd4e9","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by direction.","key":"filter[direction]","value":"string","disabled":true},{"description":"Filter results by http_method.","key":"filter[http_method]","value":"string","disabled":true},{"description":"Filter results by endpoint_template_id.","key":"filter[endpoint_template_id]","value":"string","disabled":true},{"description":"Filter results by data_type.","key":"filter[data_type]","value":"string","disabled":true},{"description":"Filter results by deprecated_at.","key":"filter[deprecated_at]","value":"string","disabled":true},{"description":"Filter results by data_path.","key":"filter[data_path]","value":"string","disabled":true},{"description":"Filter results by body_format.","key":"filter[body_format]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connector, system, entityType, entityType.fieldTags, endpointTemplate, variables, authenticationImplementations, fieldTags, filters, endpointSchema, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, system_id, entity_type_id, endpoint, direction, http_method, endpoint_template_id, data_type, deprecated_at, data_path, body_format","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4412d01a-1458-47ff-8130-2d8a2783a8d2","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by direction.","key":"filter[direction]","value":"string","disabled":true},{"description":"Filter results by http_method.","key":"filter[http_method]","value":"string","disabled":true},{"description":"Filter results by endpoint_template_id.","key":"filter[endpoint_template_id]","value":"string","disabled":true},{"description":"Filter results by data_type.","key":"filter[data_type]","value":"string","disabled":true},{"description":"Filter results by deprecated_at.","key":"filter[deprecated_at]","value":"string","disabled":true},{"description":"Filter results by data_path.","key":"filter[data_path]","value":"string","disabled":true},{"description":"Filter results by body_format.","key":"filter[body_format]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: connector, system, entityType, entityType.fieldTags, endpointTemplate, variables, authenticationImplementations, fieldTags, filters, endpointSchema, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, system_id, entity_type_id, endpoint, direction, http_method, endpoint_template_id, data_type, deprecated_at, data_path, body_format","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"87a4cd24-f335-4825-9054-1c6174423f32"},{"name":"Update System Endpoint","id":"e782efdb-476e-426e-91a0-cee40e4f418e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","description":"<p>Updates an existing system endpoint. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>entity_type_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>endpoint</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>direction</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>returns_multiple_records</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>http_method</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>data_type</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>pagination_method</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>schema</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>endpoint_template_id</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>data_path</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>body_format</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>raw_body</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>deprecated_at</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>help_link</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>pre_script_version_id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>post_script_version_id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>disable_header_addition</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>response_encoding</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","endpoints",":endpoint"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"fdd7b5dd-0449-4ecc-bbd7-1581224d94f7","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"},{"id":"d82982c5-04f2-4c41-a1ac-e15fdf0c67d1","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"29a6899c-bb43-4be7-8608-4104808e00da","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"name\": \"string\",\n    \"system_id\": 0,\n    \"entity_type_id\": 0,\n    \"endpoint\": \"string\",\n    \"http_method\": \"string\",\n    \"data_type\": \"string\",\n    \"pagination_method\": null,\n    \"deprecated_at\": null,\n    \"direction\": \"string\",\n    \"returns_multiple_records\": false,\n    \"pre_script_version_id\": null,\n    \"post_script_version_id\": null,\n    \"data_path\": null,\n    \"body_format\": \"string\",\n    \"raw_body\": \"string\",\n    \"modified\": false,\n    \"help_link\": null,\n    \"disable_header_addition\": 0,\n    \"response_encoding\": \"string\"\n  }\n}"},{"id":"7aa05da4-a695-4348-88b1-9b1ba845ee13","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4e85c010-a11f-4870-8419-c197f292ea5e","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8f1db5ed-33a6-4531-b649-39bf19c13173","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"entity_type_id\": 0,\n  \"endpoint\": \"string\",\n  \"direction\": \"string\",\n  \"http_method\": \"string\",\n  \"data_type\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"entity_type_id\": [\n      \"The entity type id must be an integer.\"\n    ],\n    \"endpoint\": [\n      \"The endpoint must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"e782efdb-476e-426e-91a0-cee40e4f418e"},{"name":"Delete System Endpoint","id":"45e4f7ca-366b-4d26-8551-fafd737ef541","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","description":"<p>Deletes an existing system endpoint. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","endpoints",":endpoint"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"7fafd3f8-295c-4411-aa2b-4371a7357c58","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"},{"id":"90cbd614-a0b2-439a-a902-08adbb266bed","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"5c97b444-d50f-4cd4-bd63-a04aa73442ab","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"548ac15f-9ca8-43c0-b2f7-91d2bd61b4fb","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0eb04414-ff7e-4951-a261-0b1d213763a8","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"45e4f7ca-366b-4d26-8551-fafd737ef541"},{"name":"Clone System Endpoint","id":"30e1abec-e125-4d6c-a070-8945c0c80283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint/clone","description":"<p>Clones a given system endpoint. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","endpoints",":endpoint","clone"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"55206431-5b6b-4af5-b0d5-1c7972a17500","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"},{"id":"da93edd5-60be-4bd5-942b-e1d0bfc61fbf","description":{"content":"<p>The endpoint identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"endpoint"}]}},"response":[{"id":"3814ab15-007f-47ea-a274-308b9191dba9","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint/clone","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint","clone"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"503c8767-b219-4634-bdc2-3c91ed9740e8","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint/clone","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint","clone"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4071fd58-99a3-4e04-80ce-40c19ce68f21","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint/clone","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint","clone"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b36a7442-784e-47b5-95a5-ecef4dd7efbe","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoints/:endpoint/clone","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoints",":endpoint","clone"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"endpoint","value":"string","description":"The endpoint identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"30e1abec-e125-4d6c-a070-8945c0c80283"},{"name":"List System Endpoint Metrics","id":"35b46be3-4862-40c9-88ee-e14326df0e02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoint-metrics","description":"<p>Retrieves metrics for endpoints associated with a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>interval_start</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>interval_end</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>interval_unit</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>model_type</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>key</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>keys</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>managed_companies</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","endpoint-metrics"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9ce0ad1a-3258-4102-9565-2e6f1278b1fc","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"2d5f15e7-4ab6-49b1-8c01-2925f14ff757","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoint-metrics","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoint-metrics"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"direction\": \"string\",\n      \"http_method\": \"string\",\n      \"total_runs\": 0,\n      \"success_rate\": 0\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 0,\n    \"from\": 0,\n    \"last_page\": 0,\n    \"links\": [],\n    \"path\": \"string\",\n    \"per_page\": 0,\n    \"to\": 0,\n    \"total\": 0\n  }\n}"},{"id":"7bb627a5-6b7d-4881-a030-329ae34b08cd","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoint-metrics","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoint-metrics"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d24e44e4-cbec-4e9e-af7c-aec14b8d6169","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/endpoint-metrics","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","endpoint-metrics"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"35b46be3-4862-40c9-88ee-e14326df0e02"},{"name":"List System Authentication Implementations","id":"cc880f53-fc2c-4d6d-a516-ce605bf8aaeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","description":"<p>Lists all authentication implementations for a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Pagination is available for this request. Please see the section on using pagination for more details.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>system</li>\n<li>system_count</li>\n<li>systemExists</li>\n<li>system.systemType</li>\n<li>authenticationType</li>\n<li>authenticationType_count</li>\n<li>authenticationTypeExists</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>endpoints</li>\n<li>endpoints_count</li>\n<li>endpointsExists</li>\n<li>preScriptVersion</li>\n<li>preScriptVersion_count</li>\n<li>preScriptVersionExists</li>\n<li>preScriptVersion.script</li>\n<li>postScriptVersion</li>\n<li>postScriptVersion_count</li>\n<li>postScriptVersionExists</li>\n<li>postScriptVersion.script</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>endpoint</li>\n<li>method</li>\n<li>additional_endpoint_1</li>\n<li>additional_endpoint_2</li>\n<li>system_id</li>\n<li>authentication_type_id</li>\n<li>version</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n<li>endpoint</li>\n<li>method</li>\n<li>additional_endpoint_1</li>\n<li>additional_endpoint_2</li>\n<li>system_id</li>\n<li>authentication_type_id</li>\n<li>version</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","authentication-implementations"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by endpoint.</p>\n","type":"text/plain"},"key":"filter[endpoint]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by method.</p>\n","type":"text/plain"},"key":"filter[method]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by additional_endpoint_1.</p>\n","type":"text/plain"},"key":"filter[additional_endpoint_1]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by additional_endpoint_2.</p>\n","type":"text/plain"},"key":"filter[additional_endpoint_2]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system_id.</p>\n","type":"text/plain"},"key":"filter[system_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by authentication_type_id.</p>\n","type":"text/plain"},"key":"filter[authentication_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by version.</p>\n","type":"text/plain"},"key":"filter[version]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: system, system.systemType, authenticationType, variables, endpoints, preScriptVersion.script, postScriptVersion.script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, endpoint, method, additional_endpoint_1, additional_endpoint_2, system_id, authentication_type_id, version</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"552312bc-d01f-4eaa-81aa-db50ef576121","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"33db7fc5-09c9-4b0a-a7a0-bcbb19952073","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by method.","key":"filter[method]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_1.","key":"filter[additional_endpoint_1]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_2.","key":"filter[additional_endpoint_2]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by authentication_type_id.","key":"filter[authentication_type_id]","value":"string","disabled":true},{"description":"Filter results by version.","key":"filter[version]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: system, system.systemType, authenticationType, variables, endpoints, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, endpoint, method, additional_endpoint_1, additional_endpoint_2, system_id, authentication_type_id, version","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"system_id\": 0,\n      \"name\": \"string\",\n      \"method\": \"string\",\n      \"endpoint\": \"string\",\n      \"data_type\": \"string\",\n      \"body_format\": \"string\",\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 0,\n    \"from\": 0,\n    \"last_page\": 0,\n    \"links\": [],\n    \"path\": \"string\",\n    \"per_page\": 0,\n    \"to\": 0,\n    \"total\": 0\n  }\n}"},{"id":"f42920c2-7705-47ee-b726-b1edb7d1d4e6","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by method.","key":"filter[method]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_1.","key":"filter[additional_endpoint_1]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_2.","key":"filter[additional_endpoint_2]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by authentication_type_id.","key":"filter[authentication_type_id]","value":"string","disabled":true},{"description":"Filter results by version.","key":"filter[version]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: system, system.systemType, authenticationType, variables, endpoints, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, endpoint, method, additional_endpoint_1, additional_endpoint_2, system_id, authentication_type_id, version","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f040127a-f1e0-47c7-b8c7-09782151cd74","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by method.","key":"filter[method]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_1.","key":"filter[additional_endpoint_1]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_2.","key":"filter[additional_endpoint_2]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by authentication_type_id.","key":"filter[authentication_type_id]","value":"string","disabled":true},{"description":"Filter results by version.","key":"filter[version]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: system, system.systemType, authenticationType, variables, endpoints, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, endpoint, method, additional_endpoint_1, additional_endpoint_2, system_id, authentication_type_id, version","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cc880f53-fc2c-4d6d-a516-ce605bf8aaeb"},{"name":"Create System Authentication Implementation","id":"b6d8c34b-77c4-469b-9b0a-b7f3d993ef08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","description":"<p>Creates a new authentication implementation for a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>endpoint</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>method</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>data_type</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>body_format</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>additional_endpoint_1</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>additional_endpoint_2</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>timeout</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>authentication_type_id</td>\n<td></td>\n<td>☑</td>\n</tr>\n<tr>\n<td>help_link</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","authentication-implementations"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a3b16d87-b791-4c3d-9f9e-502a87b2de2b","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"45b451c5-3dd4-4cc5-ac41-be8e7427b0e2","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"system_id\": 0,\n    \"name\": \"string\",\n    \"method\": \"string\",\n    \"endpoint\": \"string\",\n    \"data_type\": \"string\",\n    \"body_format\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"8dca07e4-b40f-43ab-b057-f4007a6e904c","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b9ba631b-10e6-402a-a8f5-f1bd3fc20156","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"b654ea68-1113-4ab6-8c24-2e7b27546f09","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name field is required.\"\n    ],\n    \"endpoint\": [\n      \"The endpoint must be a string.\"\n    ],\n    \"method\": [\n      \"The method field is required.\"\n    ]\n  }\n}"}],"_postman_id":"b6d8c34b-77c4-469b-9b0a-b7f3d993ef08"},{"name":"Get System Authentication Implementation","id":"f8579e54-8d1a-4f30-acae-fbe46ccef928","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","description":"<p>Retrieves a given authentication implementation for a system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>system</li>\n<li>system_count</li>\n<li>systemExists</li>\n<li>system.systemType</li>\n<li>authenticationType</li>\n<li>authenticationType_count</li>\n<li>authenticationTypeExists</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>endpoints</li>\n<li>endpoints_count</li>\n<li>endpointsExists</li>\n<li>preScriptVersion</li>\n<li>preScriptVersion_count</li>\n<li>preScriptVersionExists</li>\n<li>preScriptVersion.script</li>\n<li>postScriptVersion</li>\n<li>postScriptVersion_count</li>\n<li>postScriptVersionExists</li>\n<li>postScriptVersion.script</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>endpoint</li>\n<li>method</li>\n<li>additional_endpoint_1</li>\n<li>additional_endpoint_2</li>\n<li>system_id</li>\n<li>authentication_type_id</li>\n<li>version</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n<li>endpoint</li>\n<li>method</li>\n<li>additional_endpoint_1</li>\n<li>additional_endpoint_2</li>\n<li>system_id</li>\n<li>authentication_type_id</li>\n<li>version</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by endpoint.</p>\n","type":"text/plain"},"key":"filter[endpoint]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by method.</p>\n","type":"text/plain"},"key":"filter[method]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by additional_endpoint_1.</p>\n","type":"text/plain"},"key":"filter[additional_endpoint_1]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by additional_endpoint_2.</p>\n","type":"text/plain"},"key":"filter[additional_endpoint_2]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by system_id.</p>\n","type":"text/plain"},"key":"filter[system_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by authentication_type_id.</p>\n","type":"text/plain"},"key":"filter[authentication_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by version.</p>\n","type":"text/plain"},"key":"filter[version]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: system, system.systemType, authenticationType, variables, endpoints, preScriptVersion.script, postScriptVersion.script</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, endpoint, method, additional_endpoint_1, additional_endpoint_2, system_id, authentication_type_id, version</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"8720e359-fc43-453a-b253-a8fdf4f3c5c4","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"},{"id":"f2507247-2291-4d39-a762-9dd757a780f9","description":{"content":"<p>The authentication implementation identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_implementation"}]}},"response":[{"id":"615507eb-6f40-47a8-a166-a4cd8bd87405","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by method.","key":"filter[method]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_1.","key":"filter[additional_endpoint_1]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_2.","key":"filter[additional_endpoint_2]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by authentication_type_id.","key":"filter[authentication_type_id]","value":"string","disabled":true},{"description":"Filter results by version.","key":"filter[version]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: system, system.systemType, authenticationType, variables, endpoints, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, endpoint, method, additional_endpoint_1, additional_endpoint_2, system_id, authentication_type_id, version","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"system_id\": 0,\n    \"name\": \"string\",\n    \"method\": \"string\",\n    \"endpoint\": \"string\",\n    \"data_type\": \"string\",\n    \"body_format\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"ef5f069a-99ee-4ee6-8768-bb737a111637","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by method.","key":"filter[method]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_1.","key":"filter[additional_endpoint_1]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_2.","key":"filter[additional_endpoint_2]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by authentication_type_id.","key":"filter[authentication_type_id]","value":"string","disabled":true},{"description":"Filter results by version.","key":"filter[version]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: system, system.systemType, authenticationType, variables, endpoints, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, endpoint, method, additional_endpoint_1, additional_endpoint_2, system_id, authentication_type_id, version","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6d89cb2d-84da-4a1a-9019-98e4c1439ab5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by endpoint.","key":"filter[endpoint]","value":"string","disabled":true},{"description":"Filter results by method.","key":"filter[method]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_1.","key":"filter[additional_endpoint_1]","value":"string","disabled":true},{"description":"Filter results by additional_endpoint_2.","key":"filter[additional_endpoint_2]","value":"string","disabled":true},{"description":"Filter results by system_id.","key":"filter[system_id]","value":"string","disabled":true},{"description":"Filter results by authentication_type_id.","key":"filter[authentication_type_id]","value":"string","disabled":true},{"description":"Filter results by version.","key":"filter[version]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: system, system.systemType, authenticationType, variables, endpoints, preScriptVersion.script, postScriptVersion.script","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, endpoint, method, additional_endpoint_1, additional_endpoint_2, system_id, authentication_type_id, version","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"f8579e54-8d1a-4f30-acae-fbe46ccef928"},{"name":"Update System Authentication Implementation","id":"d0f22e77-6754-4565-aedc-e6347003fc74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","description":"<p>Updates an existing authentication implementation for a system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>endpoint</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>method</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>data_type</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>body_format</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>additional_endpoint_1</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>additional_endpoint_2</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>timeout</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>authentication_type_id</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pre_script_version_id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>post_script_version_id</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>help_link</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-includes\">Available Includes</h2>\n<p>These are the includes that can be used to include addition related data in the results. Please see the section on using includes for more details.</p>\n<ul>\n<li>system</li>\n<li>system_count</li>\n<li>systemExists</li>\n<li>system.systemType</li>\n<li>authenticationType</li>\n<li>authenticationType_count</li>\n<li>authenticationTypeExists</li>\n<li>variables</li>\n<li>variables_count</li>\n<li>variablesExists</li>\n<li>endpoints</li>\n<li>endpoints_count</li>\n<li>endpointsExists</li>\n<li>preScriptVersion</li>\n<li>preScriptVersion_count</li>\n<li>preScriptVersionExists</li>\n<li>preScriptVersion.script</li>\n<li>postScriptVersion</li>\n<li>postScriptVersion_count</li>\n<li>postScriptVersionExists</li>\n<li>postScriptVersion.script</li>\n</ul>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>name</li>\n<li>endpoint</li>\n<li>method</li>\n<li>additional_endpoint_1</li>\n<li>additional_endpoint_2</li>\n<li>system_id</li>\n<li>authentication_type_id</li>\n<li>version</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>name</li>\n<li>endpoint</li>\n<li>method</li>\n<li>additional_endpoint_1</li>\n<li>additional_endpoint_2</li>\n<li>system_id</li>\n<li>authentication_type_id</li>\n<li>version</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"e8907b4e-187e-4f6c-b87e-7bb1227fc6bb","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"},{"id":"2cf415d9-96d1-4619-a3d0-8576ed717a98","description":{"content":"<p>The authentication implementation identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_implementation"}]}},"response":[{"id":"cb38d026-f82a-49c5-a45a-3a73d5f23a31","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"system_id\": 0,\n    \"name\": \"string\",\n    \"method\": \"string\",\n    \"endpoint\": \"string\",\n    \"data_type\": \"string\",\n    \"body_format\": \"string\",\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"9700ea45-c045-4a69-a280-e66aa687e959","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"12e9f748-49d1-4fc7-b12c-ef51664f12ee","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"6c76a369-2856-4a37-a644-6f608f2b15d4","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"method\": \"string\",\n  \"endpoint\": \"string\",\n  \"data_type\": \"string\",\n  \"body_format\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"name\": [\n      \"The name must be a string.\"\n    ],\n    \"endpoint\": [\n      \"The endpoint must be a string.\"\n    ],\n    \"method\": [\n      \"The method must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"d0f22e77-6754-4565-aedc-e6347003fc74"},{"name":"Delete System Authentication Implementation","id":"c36543c1-3106-4e25-a2c6-d7128d6bfa8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","description":"<p>Deletes a given authentication implementation for a system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b81bcf6d-dc09-45a0-a68b-aa900af7b12d","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"},{"id":"0d66a1a5-5ad3-4e9a-bffb-6fc5728296ca","description":{"content":"<p>The authentication implementation identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"authentication_implementation"}]}},"response":[{"id":"aa01cc03-488c-4925-abc9-fcc4b6c1bb98","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"17f93a51-682b-4944-bd84-28b1cae1d318","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9456f277-7cc8-48f9-82f8-10390a5b3dff","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/authentication-implementations/:authentication_implementation","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","authentication-implementations",":authentication_implementation"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"authentication_implementation","value":"string","description":"The authentication implementation identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c36543c1-3106-4e25-a2c6-d7128d6bfa8b"},{"name":"List System Variables","id":"fa543edd-2eba-44b3-b194-c0a9acb95422","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","description":"<p>List all variables for a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Pagination is available for this request. Please see the section on using pagination for more details.</p>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>label</li>\n<li>key</li>\n<li>value</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>label</li>\n<li>key</li>\n<li>value</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","variables"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by label.</p>\n","type":"text/plain"},"key":"filter[label]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: label, key, value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"23c39648-8f11-4478-8d56-4e8dcf0fd2d8","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"15ca88fe-f928-4406-9b45-bf72886b5ed0","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"label\": \"string\",\n      \"key\": \"string\",\n      \"value\": \"string\",\n      \"secret\": false,\n      \"created_at\": \"string\",\n      \"updated_at\": \"string\"\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 0,\n    \"from\": 0,\n    \"last_page\": 0,\n    \"links\": [],\n    \"path\": \"string\",\n    \"per_page\": 0,\n    \"to\": 0,\n    \"total\": 0\n  }\n}"},{"id":"097e6248-16af-45d6-9948-946946675a95","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8849a5b5-b8c3-4e06-ac11-46362f2eff24","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fa543edd-2eba-44b3-b194-c0a9acb95422"},{"name":"Create System Variable","id":"cf30fb5d-c117-418a-b5d3-aaf2033f126d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","description":"<p>Creates a new variable for a given system. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>label</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>key</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>secret</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pivot.alias</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>pivot.configurable</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pivot.required</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>pivot.advanced</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","variables"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"aa57e38f-fb9b-4a4a-88bc-2e8d96f8b3bd","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"}]}},"response":[{"id":"4457051a-fb28-4f7a-88d3-06880c55f11d","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 0,\n    \"label\": \"string\",\n    \"key\": \"string\",\n    \"value\": \"string\",\n    \"secret\": false,\n    \"created_at\": \"string\",\n    \"updated_at\": \"string\"\n  }\n}"},{"id":"800f94e9-9dbe-4fd0-95e2-bae2ba33da13","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a80abd8f-dec1-46b3-afc9-a8e5cfe554ee","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"29561343-b804-4246-9d66-5d4272b3549b","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"secret\": false\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables"],"variable":[{"key":"system","value":"string","description":"The system identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"errors\": {\n    \"key_0\": [\n      \"string\",\n      \"string\"\n    ],\n    \"key_1\": [\n      \"string\",\n      \"string\"\n    ]\n  }\n}"}],"_postman_id":"cf30fb5d-c117-418a-b5d3-aaf2033f126d"},{"name":"Delete System Variable","id":"992cad90-98ac-42d6-8e89-d8df1f32726c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/systems/:system/variables/:variable","description":"<p>Deletes a given system variable. Note: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","systems",":system","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"3b7eaab7-e48e-46da-87fc-34cf96758250","description":{"content":"<p>The system identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"system"},{"id":"821b8c0c-e042-4ad5-85d1-cc35abc30dd8","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"eee97f74-aa01-4e87-bded-c45e0e461f66","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables",":variable"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"48a13bf2-ee71-4969-bb14-44485067a3cc","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables",":variable"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"5f4c9899-ae23-4e6a-9aad-b33b578692e2","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/systems/:system/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","systems",":system","variables",":variable"],"variable":[{"key":"system","value":"string","description":"The system identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"992cad90-98ac-42d6-8e89-d8df1f32726c"}],"id":"de29d1dd-ab90-4064-9e1f-5f0dbb097235","_postman_id":"de29d1dd-ab90-4064-9e1f-5f0dbb097235","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Tracked Data","item":[{"name":"List Tracked Data","id":"5159f57a-2edd-416f-a5e9-3bf85525bfb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/tracked-data","description":"<p>Retrieves a paginated list of tracked data records. Can be filtered by <code>flow_id</code>, <code>flow_run_id</code>, <code>step_id</code>, <code>entity_type_id</code>, <code>value</code>, <code>created_before</code>, and <code>created_after</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","tracked-data"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by flow_id.</p>\n","type":"text/plain"},"key":"filter[flow_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by flow_run_id.</p>\n","type":"text/plain"},"key":"filter[flow_run_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by step_id.</p>\n","type":"text/plain"},"key":"filter[step_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by entity_type_id.</p>\n","type":"text/plain"},"key":"filter[entity_type_id]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by tracked_data_store_reference.</p>\n","type":"text/plain"},"key":"filter[tracked_data_store_reference]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by created_before.</p>\n","type":"text/plain"},"key":"filter[created_before]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by created_after.</p>\n","type":"text/plain"},"key":"filter[created_after]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: flow, flowRun, flowStep, entityType</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: created_at, id</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"da05056c-93e3-45a8-a73b-e6595f6ed464","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/tracked-data","host":["https://core.wearepatchworks.com"],"path":["api","v1","tracked-data"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by step_id.","key":"filter[step_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by tracked_data_store_reference.","key":"filter[tracked_data_store_reference]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow, flowRun, flowStep, entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"flow_id\": 1,\n      \"flow_run_id\": 1,\n      \"step_id\": 1,\n      \"entity_type_id\": 1,\n      \"tracked_data_store_reference\": \"example_tracked_data_store_reference\",\n      \"value\": \"example_value\",\n      \"direction\": \"Send\",\n      \"sent_count\": 5,\n      \"received_count\": 5,\n      \"success\": {},\n      \"flow\": {},\n      \"flow_step\": {},\n      \"flow_run\": {},\n      \"entity_type\": {}\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/tracked-data\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/tracked-data?page=1\",\n    \"last\": \"https://api.example.com/api/v1/tracked-data?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"b18545c2-2370-4917-8396-d33a6bcc7d1d","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/tracked-data","host":["https://core.wearepatchworks.com"],"path":["api","v1","tracked-data"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by step_id.","key":"filter[step_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by tracked_data_store_reference.","key":"filter[tracked_data_store_reference]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow, flowRun, flowStep, entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e727aef7-6998-4321-a205-7d82fb9689f3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/tracked-data","host":["https://core.wearepatchworks.com"],"path":["api","v1","tracked-data"],"query":[{"description":"Filter results by flow_id.","key":"filter[flow_id]","value":"string","disabled":true},{"description":"Filter results by flow_run_id.","key":"filter[flow_run_id]","value":"string","disabled":true},{"description":"Filter results by step_id.","key":"filter[step_id]","value":"string","disabled":true},{"description":"Filter results by entity_type_id.","key":"filter[entity_type_id]","value":"string","disabled":true},{"description":"Filter results by tracked_data_store_reference.","key":"filter[tracked_data_store_reference]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Filter results by created_before.","key":"filter[created_before]","value":"string","disabled":true},{"description":"Filter results by created_after.","key":"filter[created_after]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: flow, flowRun, flowStep, entityType","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: created_at, id","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5159f57a-2edd-416f-a5e9-3bf85525bfb6"},{"name":"List Entity Types","id":"c5f605c6-bde4-4eed-b4e6-c68b41215e66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/tracked-data/entity-types","description":"<p>Retrieves a paginated list of entity types found in tracked data.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","tracked-data","entity-types"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"b02ee608-3609-4da1-81d6-7756246daeae","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/tracked-data/entity-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","tracked-data","entity-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a8c6cb69-4819-47f6-b0b2-38fda2fbba24","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/tracked-data/entity-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","tracked-data","entity-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"468e5bca-62b6-496b-8d1d-40cb45439c24","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/tracked-data/entity-types","host":["https://core.wearepatchworks.com"],"path":["api","v1","tracked-data","entity-types"],"query":[{"description":"Comma-separated list of relationships to include. Available: endpoints, fieldTags, systemFields","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c5f605c6-bde4-4eed-b4e6-c68b41215e66"},{"name":"Search Tracked Data","id":"d7219ff8-be3a-4574-b342-6c928e69bd41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/tracked-data/search","description":"<p>Searches tracked data.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","tracked-data","search"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"a7c4e2b6-0b06-4e41-a56f-abba76081342","name":"Successful response","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/tracked-data/search"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"97c558f4-06d3-4fef-b871-f8b5bd9ff7b3","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/tracked-data/search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"94c687ae-fc2e-408a-ac03-2e456a8f11ac","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/tracked-data/search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"d7219ff8-be3a-4574-b342-6c928e69bd41"}],"id":"435709e0-986c-4c7b-a44d-8ec544d87cf7","_postman_id":"435709e0-986c-4c7b-a44d-8ec544d87cf7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Transforms","item":[{"name":"List Transforms","id":"2035d05d-58eb-482d-8e8f-4853ce881e14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/transforms","description":"<p>Retrieves a paginated list of available transform functions.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","transforms"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"0f1213fa-915c-40b8-85c5-088ce83e5b97","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/transforms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/transforms\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/transforms?page=1\",\n    \"last\": \"https://api.example.com/api/v1/transforms?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"53d58e8e-8034-4524-a9fb-1d5bed4ecf87","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/transforms"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"ebe8b35a-74fd-49b2-a1ee-b67359c0b4be","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/transforms"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"2035d05d-58eb-482d-8e8f-4853ce881e14"}],"id":"01f6c70f-b409-4589-b2c0-a143fa6658ec","_postman_id":"01f6c70f-b409-4589-b2c0-a143fa6658ec","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Variables","item":[{"name":"List Variables","id":"7016c070-a5e1-4e47-a6cc-e700fc3758b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/variables","description":"<p>Retrieves a paginated list of global variables for a specific connector. Can be filtered by <code>label</code>, <code>key</code>, and <code>value</code>.\nNote: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","variables"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by label.</p>\n","type":"text/plain"},"key":"filter[label]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: label, key, value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"d742bb2c-3111-4ca7-97af-3a191bcccfd9","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 1,\n      \"label\": \"My Label\",\n      \"key\": \"example_key\",\n      \"value\": \"example_value\",\n      \"secret\": \"example_secret\",\n      \"locked\": \"example_locked\",\n      \"configurable\": \"example_configurable\",\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"modified\": \"example_modified\",\n      \"pivot\": \"example_pivot\",\n      \"required\": true,\n      \"advanced\": true,\n      \"alias\": \"example_alias\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/variables\",\n    \"per_page\": 25,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/variables?page=1\",\n    \"last\": \"https://api.example.com/api/v1/variables?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"},{"id":"14d92419-1271-4a35-ac23-894d0d3c083c","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"94c7c67d-7f47-4f44-bdb7-76d26eab101b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7016c070-a5e1-4e47-a6cc-e700fc3758b5"},{"name":"Create Variable","id":"c33080c5-42ec-4c9f-928c-69498de86764","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"label\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"locked\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/variables","description":"<p>Creates a new global variable for a connector.\nNote: In the Patchworks dashboard, a <code>system</code> is known as a <code>connector</code>.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>label</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>key</td>\n<td>string</td>\n<td>☑</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>secret</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>locked</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","variables"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"b9ca0ec4-15f1-4a88-9679-074ee21c7ae8","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"label\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"locked\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/variables"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"locked\": \"example_locked\",\n    \"configurable\": \"example_configurable\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"modified\": \"example_modified\",\n    \"pivot\": \"example_pivot\",\n    \"required\": true,\n    \"advanced\": true,\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"a4b8d262-2d1b-41ef-b8e4-472014b089d2","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"label\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"locked\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/variables"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fd783b27-cd60-4e52-80e4-c9b22d5ce006","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"label\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"locked\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/variables"},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"fc74f484-09ed-49f3-90f8-6f1a33669ef4","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"label\": \"string\",\n  \"value\": \"string\",\n  \"secret\": \"string\",\n  \"locked\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/variables"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"label\": [\n      \"The label field is required.\"\n    ],\n    \"key\": [\n      \"The key field is required.\"\n    ],\n    \"value\": [\n      \"The value must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"c33080c5-42ec-4c9f-928c-69498de86764"},{"name":"Get Variable","id":"fddf2eab-54b6-4e33-9faa-090f23e68df8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/variables/:variable","description":"<p>Retrieves the details of a specific global variable.</p>\n<h2 id=\"available-filters\">Available Filters</h2>\n<p>These are the filters that can be used to specific the data to return. Please see the section on using filters for more details.</p>\n<ul>\n<li>label</li>\n<li>key</li>\n<li>value</li>\n</ul>\n<h2 id=\"available-sorts\">Available Sorts</h2>\n<p>These are the sorts that can be used order the returned data. Please see the section on using sorting for more details.</p>\n<ul>\n<li>label</li>\n<li>key</li>\n<li>value</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by label.</p>\n","type":"text/plain"},"key":"filter[label]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: label, key, value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"7e3e13ae-d8c9-418b-8d59-b5616aee3229","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"13e40599-0426-442a-9a8c-f9c5702a5b61","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"locked\": \"example_locked\",\n    \"configurable\": \"example_configurable\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"modified\": \"example_modified\",\n    \"pivot\": \"example_pivot\",\n    \"required\": true,\n    \"advanced\": true,\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"8eeddefe-c411-4fc9-82a7-3c2a3082c867","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4f51c0f2-95be-483d-baeb-a43b7f3b018b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fddf2eab-54b6-4e33-9faa-090f23e68df8"},{"name":"Update Variable","id":"f3b35d1b-e57c-44cd-9b86-5e338f6f9131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/variables/:variable","description":"<p>Updates an existing global variable.</p>\n<h2 id=\"validation-rules\">Validation Rules</h2>\n<p>These are the basic validation rules for the request. More detailed validation may apply depending on the data being sent. Please see the response for any extra requirements</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>label</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>key</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>configurable</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a55d3c68-2901-4720-af83-cf64b8c4238d","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"904d5299-9dc8-4dcc-9856-f6e2c416c2aa","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"locked\": \"example_locked\",\n    \"configurable\": \"example_configurable\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"modified\": \"example_modified\",\n    \"pivot\": \"example_pivot\",\n    \"required\": true,\n    \"advanced\": true,\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"ad08f4e8-4bff-429a-a39e-309a008438e5","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4d4ef4b6-23c2-4a23-b9e4-7df3f2f5bc6e","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"17ebe002-5c9d-43a3-8d6d-7424ec4d55bd","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"label\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"configurable\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"label\": [\n      \"The label must be a string.\"\n    ],\n    \"key\": [\n      \"The key must be a string.\"\n    ],\n    \"value\": [\n      \"The value must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"f3b35d1b-e57c-44cd-9b86-5e338f6f9131"},{"name":"Delete Variable","id":"ef96c644-25d0-4a3f-a8e9-349914e19bfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/variables/:variable","description":"<p>Permanently deletes a specific global variable.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"dd707d25-3fdc-4631-8e0f-18992bf38b62","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"99ca2efe-be1b-4d89-93c2-0b29efcdd07c","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"97a451b2-2fbc-43b9-bd1a-e7999017112c","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"361b1049-0b6b-4967-ada7-3b6fb8d97ed6","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","variables",":variable"],"variable":[{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ef96c644-25d0-4a3f-a8e9-349914e19bfc"}],"id":"9dea1f8f-0c46-4bd4-9ceb-396bd8a79279","_postman_id":"9dea1f8f-0c46-4bd4-9ceb-396bd8a79279","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Virtual Environment Versions","item":[{"name":"List Virtual Environment Version Flow Priorities","id":"fd9854fd-20ea-4ab1-9db3-d8ebeaef8c73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","description":"<p>Retrieves a paginated list of flow priorities for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"74456a99-7880-4885-bd55-548d1c064324","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"}]}},"response":[{"id":"528aaf8e-746a-4ccc-9bb2-428ba2d5060f","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"virtual_environment_version_id\": 0,\n      \"flow_id\": 0,\n      \"priority\": 0,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  }\n}"},{"id":"adec6b85-5e46-42a2-a75d-4ffdb770f008","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f76525dd-21fe-445f-ae6b-9e452d97d2b6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fd9854fd-20ea-4ab1-9db3-d8ebeaef8c73"},{"name":"Create Virtual Environment Version Flow Priority","id":"dbf1ff4b-17b3-4511-9d1e-5170d887220c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 2336,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","description":"<p>Creates a new flow priority for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"343258c4-178d-4dd3-b9b5-6ea77196bd15","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"}]}},"response":[{"id":"bf044d84-d3ad-4d9d-b79c-72c2437c1ca9","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 2336,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_id\": 1,\n    \"priority\": 1,\n    \"model_type\": \"example_model_type\",\n    \"original_model_id\": 1,\n    \"replacement_model_id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"fallback\": \"example_fallback\",\n    \"date_format\": \"example_date_format\",\n    \"secret\": \"example_secret\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"version\": 1,\n    \"virtual_environment_id\": 1,\n    \"virtual_environment\": {},\n    \"status\": \"Draft\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployed_by\": [],\n    \"notes\": [],\n    \"manifests\": [],\n    \"variables\": [],\n    \"counts\": \"example_counts\",\n    \"user_id\": 1,\n    \"user\": {}\n  }\n}"},{"id":"e7d61ae3-ab60-442e-90c4-95160830faba","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 2336,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"4549e82e-c435-4187-b661-69e1c4961f91","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 2336,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"8fb99ec6-aad3-4533-85e7-24897fd8a17c","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 2336,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"dbf1ff4b-17b3-4511-9d1e-5170d887220c"},{"name":"Update Virtual Environment Version Flow Priority","id":"30910d26-676a-4dbc-9335-0b625c94f850","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 8695,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","description":"<p>Updates an existing flow priority for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"6cfb5abf-4934-42bf-ae74-a0a4ebb2abbb","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"},{"id":"85a548d8-f710-41f6-ac69-6813f5eca631","description":{"content":"<p>The flow priority identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_priority"}]}},"response":[{"id":"0de4029b-ff2f-4402-867e-aba6c86759c0","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 8695,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"flow_priority","value":"string","description":"The flow priority identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_id\": 1,\n    \"priority\": 1,\n    \"model_type\": \"example_model_type\",\n    \"original_model_id\": 1,\n    \"replacement_model_id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"fallback\": \"example_fallback\",\n    \"date_format\": \"example_date_format\",\n    \"secret\": \"example_secret\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"version\": 1,\n    \"virtual_environment_id\": 1,\n    \"virtual_environment\": {},\n    \"status\": \"Draft\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployed_by\": [],\n    \"notes\": [],\n    \"manifests\": [],\n    \"variables\": [],\n    \"counts\": \"example_counts\",\n    \"user_id\": 1,\n    \"user\": {}\n  }\n}"},{"id":"7575bf40-8236-4b79-bc10-ba1580df68a9","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 8695,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"flow_priority","value":"string","description":"The flow priority identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"08881be7-5543-4198-8cb1-1e0396973f57","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 8695,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"flow_priority","value":"string","description":"The flow priority identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"edfafd56-5332-40b5-85e4-ba075124269a","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"flow_id\": \"string\",\n  \"priority\": 8695,\n  \"notes\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"flow_priority","value":"string","description":"The flow priority identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"30910d26-676a-4dbc-9335-0b625c94f850"},{"name":"Delete Virtual Environment Version Flow Priority","id":"edf64204-bf0d-43fa-af21-4abf41000139","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","description":"<p>Permanently deletes a specific flow priority for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a347a433-162e-4f41-8580-3810b4d82698","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"},{"id":"6cd5fb2d-5afe-4af2-ab18-e3e4b862615c","description":{"content":"<p>The flow priority identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"flow_priority"}]}},"response":[{"id":"abca7b5d-8c4f-433b-93ec-0bbbd22e98a4","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"flow_priority","value":"string","description":"The flow priority identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"19e3fce9-7052-48a1-ae15-bdc2aa327669","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"flow_priority","value":"string","description":"The flow priority identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a15ed10a-064d-44dc-bcf0-7d0f8d6c73a2","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/flow-priorities/:flow_priority","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","flow-priorities",":flow_priority"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"flow_priority","value":"string","description":"The flow priority identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"edf64204-bf0d-43fa-af21-4abf41000139"},{"name":"List Virtual Environment Version Manifests","id":"07e26eac-9005-403d-ac69-670fd320284d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","description":"<p>Retrieves a paginated list of component replacement rules for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a896bd54-f14c-4511-8afd-4b3f88a3cea6","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"}]}},"response":[{"id":"49650211-7f72-454d-93a0-eeac8609cdbb","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": null,\n    \"last_page\": 1,\n    \"per_page\": 15,\n    \"to\": null,\n    \"total\": 0\n  }\n}"},{"id":"21f1dcb6-5035-4a5d-9789-146cd658bc24","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cecfb74a-2fb6-4f24-91e9-f072136f51d5","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"07e26eac-9005-403d-ac69-670fd320284d"},{"name":"Create Virtual Environment Version Manifest","id":"87a19956-f503-41d4-aa16-a8be01ae1da4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","description":"<p>Creates a new component replacement rule for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"8ef7a44e-4dba-41b6-a833-d98a41999d42","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"}]}},"response":[{"id":"2e44521d-75a2-4a58-b2b6-10abea071d90","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_id\": 1,\n    \"priority\": 1,\n    \"model_type\": \"example_model_type\",\n    \"original_model_id\": 1,\n    \"replacement_model_id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"fallback\": \"example_fallback\",\n    \"date_format\": \"example_date_format\",\n    \"secret\": \"example_secret\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"version\": 1,\n    \"virtual_environment_id\": 1,\n    \"virtual_environment\": {},\n    \"status\": \"Draft\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployed_by\": [],\n    \"notes\": [],\n    \"manifests\": [],\n    \"variables\": [],\n    \"counts\": \"example_counts\",\n    \"user_id\": 1,\n    \"user\": {}\n  }\n}"},{"id":"330e4704-081e-453a-a809-bca0edd989dd","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cdf3aa44-a660-4921-af50-ab387c57a8dc","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"d8fd4f6e-9111-4f60-81e9-0b5f4109b0fe","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"model_type\": [\n      \"The model type field is required.\"\n    ],\n    \"original_model_id\": [\n      \"The original model id field is required.\"\n    ],\n    \"replacement_model_id\": [\n      \"The replacement model id field is required.\"\n    ]\n  }\n}"}],"_postman_id":"87a19956-f503-41d4-aa16-a8be01ae1da4"},{"name":"Get Virtual Environment Version Manifest","id":"bc0a4c85-ff0e-4b28-b553-f0ce8b3e4be3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","description":"<p>Retrieves the details of a specific component replacement rule for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"fd8f9bc7-c258-4e51-b433-6efa3c862e61","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"},{"id":"9ea1a20f-3dfa-4936-94b4-bf329af327d1","description":{"content":"<p>The manifest identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"manifest"}]}},"response":[{"id":"38311fb4-50af-4fed-99c9-921331e7baf2","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_id\": 1,\n    \"priority\": 1,\n    \"model_type\": \"example_model_type\",\n    \"original_model_id\": 1,\n    \"replacement_model_id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"fallback\": \"example_fallback\",\n    \"date_format\": \"example_date_format\",\n    \"secret\": \"example_secret\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"version\": 1,\n    \"virtual_environment_id\": 1,\n    \"virtual_environment\": {},\n    \"status\": \"Draft\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployed_by\": [],\n    \"notes\": [],\n    \"manifests\": [],\n    \"variables\": [],\n    \"counts\": \"example_counts\",\n    \"user_id\": 1,\n    \"user\": {}\n  }\n}"},{"id":"a3401a34-8e57-4498-b5b5-f99479e6d573","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"79274d10-8868-457f-b44d-80a6cfde4598","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"bc0a4c85-ff0e-4b28-b553-f0ce8b3e4be3"},{"name":"Update Virtual Environment Version Manifest","id":"e22f7f9f-580d-42aa-b7be-154f69d584b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","description":"<p>Updates an existing component replacement rule for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"5415cd17-1b92-43ad-9ffb-9c059f027d77","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"},{"id":"53eef484-ec6a-4c07-8735-13c5922c85b0","description":{"content":"<p>The manifest identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"manifest"}]}},"response":[{"id":"6b880809-e33c-4c1d-a52e-148a3a7f8afb","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"flow_id\": 1,\n    \"priority\": 1,\n    \"model_type\": \"example_model_type\",\n    \"original_model_id\": 1,\n    \"replacement_model_id\": 1,\n    \"type\": \"example_type\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"fallback\": \"example_fallback\",\n    \"date_format\": \"example_date_format\",\n    \"secret\": \"example_secret\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"version\": 1,\n    \"virtual_environment_id\": 1,\n    \"virtual_environment\": {},\n    \"status\": \"Draft\",\n    \"deployed_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"deployed_by\": [],\n    \"notes\": [],\n    \"manifests\": [],\n    \"variables\": [],\n    \"counts\": \"example_counts\",\n    \"user_id\": 1,\n    \"user\": {}\n  }\n}"},{"id":"2ed9c0bc-aad8-465b-99a0-17303005df2d","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0d5bd679-d4e5-4e8e-bc88-cb87ccea99f3","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9bf3d9ed-043c-417c-afcc-f09a08405544","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"model_type\": \"string\",\n  \"original_model_id\": \"string\",\n  \"replacement_model_id\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"model_type\": [\n      \"The model type must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"e22f7f9f-580d-42aa-b7be-154f69d584b8"},{"name":"Delete Virtual Environment Version Manifest","id":"145bc9e1-b6f5-4afe-8a4b-8d8b006e06be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","description":"<p>Permanently deletes a specific component replacement rule for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d779f87f-8aa7-498b-af98-4c7ca4eb56c1","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"},{"id":"e4473392-38b3-4aaa-9f8b-32b230e8cc54","description":{"content":"<p>The manifest identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"manifest"}]}},"response":[{"id":"4430d4fe-39e8-47b6-a526-90f7a6819fde","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"d064151f-db40-4dcf-a786-16de979d8668","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9a8c5b18-a059-4318-ad89-06a8d6cb1d05","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/manifests/:manifest","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","manifests",":manifest"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"manifest","value":"string","description":"The manifest identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"145bc9e1-b6f5-4afe-8a4b-8d8b006e06be"},{"name":"List Virtual Environment Version Variables","id":"eab97fef-10e9-4e6f-86dc-2b70547e40f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","description":"<p>Retrieves a paginated list of variables for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by label.</p>\n","type":"text/plain"},"key":"filter[label]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by key.</p>\n","type":"text/plain"},"key":"filter[key]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by value.</p>\n","type":"text/plain"},"key":"filter[value]","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: label, key, value</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"682b30bc-7add-4c1c-8757-e03780d703b3","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"}]}},"response":[{"id":"b3921526-1deb-413a-8e5d-d7acab2ab750","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"virtual_environment_version_id\": 0,\n      \"type\": \"string\",\n      \"value\": \"string\",\n      \"fallback\": null,\n      \"key\": \"string\",\n      \"date_format\": null,\n      \"secret\": 0\n    }\n  ],\n  \"links\": {\n    \"first\": \"string\",\n    \"last\": \"string\",\n    \"prev\": null,\n    \"next\": null\n  },\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  }\n}"},{"id":"770b9475-6fcd-41af-86d7-5695262931d7","name":"Unauthenticated","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"9a886913-a8db-4764-81d8-b706d8933ec4","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"query":[{"description":"Filter results by label.","key":"filter[label]","value":"string","disabled":true},{"description":"Filter results by key.","key":"filter[key]","value":"string","disabled":true},{"description":"Filter results by value.","key":"filter[value]","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: label, key, value","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eab97fef-10e9-4e6f-86dc-2b70547e40f6"},{"name":"Create Virtual Environment Version Variable","id":"3a8cadf9-c696-44a7-bad8-113f987e0eb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","description":"<p>Creates a new variable for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"d0cd1d73-3f26-4bf2-a715-a719e7abcadb","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"}]}},"response":[{"id":"a4fcb314-29ae-4c4a-a2f9-0d3baf4288a2","name":"Successful response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"locked\": \"example_locked\",\n    \"configurable\": \"example_configurable\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"modified\": \"example_modified\",\n    \"pivot\": \"example_pivot\",\n    \"required\": true,\n    \"advanced\": true,\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"9f90c354-824c-40e5-8f19-b86d8d50e882","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"a0f5bc88-1b16-420f-a2b7-8ce3575fa1ac","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0e9875fe-f979-404e-8f5b-576054d209b8","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"key\": \"string\",\n  \"type\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"type\": [\n      \"The type field is required.\"\n    ],\n    \"key\": [\n      \"The key field is required.\"\n    ],\n    \"fallback\": [\n      \"The fallback must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"3a8cadf9-c696-44a7-bad8-113f987e0eb0"},{"name":"Update Virtual Environment Version Variable","id":"154866f9-657b-47ee-bc23-0f07aa682825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","description":"<p>Updates an existing variable for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"636f1bfc-289f-4b18-bf4e-435aee2e9617","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"},{"id":"2a97a313-f05f-4acc-a5ff-74097b4b853f","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"e174dbf2-ce86-4f4b-81a8-86dda84d92d0","name":"Successful response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": 1,\n    \"label\": \"My Label\",\n    \"key\": \"example_key\",\n    \"value\": \"example_value\",\n    \"secret\": \"example_secret\",\n    \"locked\": \"example_locked\",\n    \"configurable\": \"example_configurable\",\n    \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"updated_at\": \"2025-01-15T10:30:00.000000Z\",\n    \"modified\": \"example_modified\",\n    \"pivot\": \"example_pivot\",\n    \"required\": true,\n    \"advanced\": true,\n    \"alias\": \"example_alias\"\n  }\n}"},{"id":"086db1e4-fd34-4f69-9b4d-95a6f038f136","name":"Unauthenticated","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"0dda0798-0f48-4859-95f9-e2b06d8dbaa7","name":"Unauthorized","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cfd20f06-f3aa-4ea8-964a-533e49b02b94","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"type\": \"string\",\n  \"key\": \"string\",\n  \"value\": \"string\",\n  \"fallback\": \"string\",\n  \"date_format\": \"string\",\n  \"secret\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"type\": [\n      \"The type must be a string.\"\n    ],\n    \"key\": [\n      \"The key must be a string.\"\n    ],\n    \"fallback\": [\n      \"The fallback must be a string.\"\n    ]\n  }\n}"}],"_postman_id":"154866f9-657b-47ee-bc23-0f07aa682825"},{"name":"Delete Virtual Environment Version Variable","id":"58f62f09-f011-4f9a-9caa-51a9a47c25ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","description":"<p>Permanently deletes a specific variable for a specific virtual environment version.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"a6d41643-d829-4dcc-b5f4-575028597924","description":{"content":"<p>The virtual environment version identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"virtual_environment_version"},{"id":"e124343e-4c61-44ee-8739-c70abc7184bc","description":{"content":"<p>The variable identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"variable"}]}},"response":[{"id":"87c8884d-d59c-4ad9-967c-08cb8522f5fb","name":"Successful response","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"Action completed successfully.\"\n}"},{"id":"0b5b1318-8d56-4288-96d6-e07b1b19b7fd","name":"Unauthenticated","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"668f2127-060f-4d53-9e18-5d82d346decc","name":"Unauthorized","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/virtual-environment-versions/:virtual_environment_version/variables/:variable","host":["https://core.wearepatchworks.com"],"path":["api","v1","virtual-environment-versions",":virtual_environment_version","variables",":variable"],"variable":[{"key":"virtual_environment_version","value":"string","description":"The virtual environment version identifier."},{"key":"variable","value":"string","description":"The variable identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"58f62f09-f011-4f9a-9caa-51a9a47c25ef"}],"id":"bb008cbe-8b26-4850-aefd-324a31826659","_postman_id":"bb008cbe-8b26-4850-aefd-324a31826659","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"General","item":[{"name":"Create General","id":"59658429-fd3a-4adf-af64-8f395397dbcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/:tenant/:callback/:environment?","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1",":tenant",":callback",":environment"],"host":["https://core.wearepatchworks.com"],"query":[{"key":"","value":""}],"variable":[{"id":"07a3128c-c2e2-47d6-b9ac-9264f6a83cf4","description":{"content":"<p>The tenant identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tenant"},{"id":"4f7cb5ec-9683-40ad-bd5e-e4e58000ae43","description":{"content":"<p>The callback identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"callback"},{"id":"55f98898-9137-40a6-b9fd-953f92792365","description":{"content":"<p>The environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"environment"}]}},"response":[{"id":"89872e96-f8fd-44df-ba9b-8c4ce758dd77","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:callback/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":callback",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"callback","value":"string","description":"The callback identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"562f9979-2dcd-4199-89ef-d303cd61086c","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:callback/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":callback",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"callback","value":"string","description":"The callback identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"f391bc5d-55f3-4274-9c12-0eb0a4215a42","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:callback/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":callback",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"callback","value":"string","description":"The callback identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"2f1fea9a-3c48-404f-a990-7dc931cf7f67","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:callback/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":callback",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"callback","value":"string","description":"The callback identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"59658429-fd3a-4adf-af64-8f395397dbcb"},{"name":"Callback General","id":"380810a6-0f74-4e5f-9d49-6543030b8da6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/:tenant/:callback/:environment","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1",":tenant",":callback",":environment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"9a20ccea-f15d-4368-826c-ea6500c90a4d","description":{"content":"<p>The tenant identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tenant"},{"id":"f5a29590-67e4-405e-a683-d86fd605d17b","description":{"content":"<p>The callback identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"callback"},{"id":"b00f64a2-d3fd-4ee0-976d-400a2bda619e","description":{"content":"<p>The environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"environment"}]}},"response":[{"id":"e3051c08-0782-4bd4-835e-f88c7ceb2d7e","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:callback/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":callback",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"callback","value":"string","description":"The callback identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"380810a6-0f74-4e5f-9d49-6543030b8da6"},{"name":"Create General","id":"859aa3df-f720-4bfc-95fd-18c6655170bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/:tenant/:webhook/:environment?","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1",":tenant",":webhook",":environment"],"host":["https://core.wearepatchworks.com"],"query":[{"key":"","value":""}],"variable":[{"id":"e5777898-afc5-4cd9-9631-b617304eb3c2","description":{"content":"<p>The tenant identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tenant"},{"id":"7cebfe43-fe87-4307-b2ef-a6573cc9be94","description":{"content":"<p>The webhook identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"webhook"},{"id":"d81d477a-9d9a-44f0-a66b-ffa9c827957a","description":{"content":"<p>The environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"environment"}]}},"response":[{"id":"5633a141-a091-4420-b5b1-4df29d0cef0e","name":"Successful response","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:webhook/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":webhook",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e54b6f49-ab19-42c2-8cbf-c6390c52b247","name":"Unauthenticated","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:webhook/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":webhook",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"cbb3c65e-e200-45d1-9f14-71747bfebd92","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:webhook/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":webhook",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"67fd9c57-089f-407e-9bbe-6d7ec2a5bab0","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:webhook/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":webhook",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"859aa3df-f720-4bfc-95fd-18c6655170bc"},{"name":"Webhook General","id":"0994cadb-9e13-4a60-ab0d-bad60aebf820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/:tenant/:webhook/:environment","description":"<p>To be confirmed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1",":tenant",":webhook",":environment"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"dcc71a9e-d439-46e4-b448-26556ac189b3","description":{"content":"<p>The tenant identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"tenant"},{"id":"201a7837-c0e6-4b0a-a012-50f3dc4b2a28","description":{"content":"<p>The webhook identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"webhook"},{"id":"5d6ae72c-a66d-4a98-8239-013afd33eff1","description":{"content":"<p>The environment identifier.</p>\n","type":"text/plain"},"type":"any","value":"string","key":"environment"}]}},"response":[{"id":"6d684d30-9858-446a-9c1c-688d16f9f876","name":"Successful response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/:tenant/:webhook/:environment","host":["https://core.wearepatchworks.com"],"path":["api","v1",":tenant",":webhook",":environment"],"variable":[{"key":"tenant","value":"string","description":"The tenant identifier."},{"key":"webhook","value":"string","description":"The webhook identifier."},{"key":"environment","value":"string","description":"The environment identifier."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"}],"_postman_id":"0994cadb-9e13-4a60-ab0d-bad60aebf820"}],"id":"21fb3c2a-e70a-4d50-880c-9f13aac6c5bd","_postman_id":"21fb3c2a-e70a-4d50-880c-9f13aac6c5bd","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}},{"name":"Alerts","item":[{"name":"List Alerts","id":"95381708-e92b-40d3-a9c1-f4497e198105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/alerts","description":"<p>List all alerts.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","alerts"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: notificationGroup, createdBy</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, type, created_at, last_triggered_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[]}},"response":[{"id":"9a60c908-5c37-4b70-b481-9d42c172ca1b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/alerts","host":["https://core.wearepatchworks.com"],"path":["api","v1","alerts"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: notificationGroup, createdBy","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, type, created_at, last_triggered_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": 0,\n      \"name\": \"string\",\n      \"type\": \"string\",\n      \"config\": {\n        \"threshold\": \"string\"\n      },\n      \"notification_group\": {\n        \"id\": 0,\n        \"company_id\": 0,\n        \"name\": \"string\",\n        \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n        \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n      },\n      \"last_triggered_at\": null,\n      \"created_at\": \"2025-01-15T10:30:00.000000Z\",\n      \"updated_at\": \"2025-01-15T10:30:00.000000Z\"\n    }\n  ],\n  \"meta\": {\n    \"current_page\": 1,\n    \"from\": 1,\n    \"last_page\": 1,\n    \"path\": \"https://api.example.com/api/v1/alerts\",\n    \"per_page\": 15,\n    \"to\": 1,\n    \"total\": 1\n  },\n  \"links\": {\n    \"first\": \"https://api.example.com/api/v1/alerts?page=1\",\n    \"last\": \"https://api.example.com/api/v1/alerts?page=1\",\n    \"prev\": null,\n    \"next\": null\n  }\n}"}],"_postman_id":"95381708-e92b-40d3-a9c1-f4497e198105"},{"name":"Create Alert","id":"ad7b7d94-e20b-43d5-bdf3-9a45be8be1e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/alerts","description":"<p>Create a new alert.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","alerts"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[]}},"response":[{"id":"18ad0e52-eedb-4e96-9e19-515ac21cb49f","name":"OK","originalRequest":{"method":"POST","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/alerts"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"1923a443-f1e9-4b9c-b056-736d7041a4a7","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":"https://core.wearepatchworks.com/api/v1/alerts"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"ad7b7d94-e20b-43d5-bdf3-9a45be8be1e6"},{"name":"Get Alert","id":"7174a536-2f02-4a53-87db-dd3b7209498d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://core.wearepatchworks.com/api/v1/alerts/:alert","description":"<p>Get a single alert.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","alerts",":alert"],"host":["https://core.wearepatchworks.com"],"query":[{"disabled":true,"description":{"content":"<p>Filter results by name.</p>\n","type":"text/plain"},"key":"filter[name]","value":"string"},{"disabled":true,"description":{"content":"<p>Filter results by type.</p>\n","type":"text/plain"},"key":"filter[type]","value":"string"},{"disabled":true,"description":{"content":"<p>Comma-separated list of relationships to include. Available: notificationGroup, createdBy</p>\n","type":"text/plain"},"key":"include","value":"string"},{"disabled":true,"description":{"content":"<p>Sort field. Prefix with - for descending. Available: name, type, created_at, last_triggered_at</p>\n","type":"text/plain"},"key":"sort","value":"string"},{"disabled":true,"description":{"content":"<p>Page number for pagination.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"disabled":true,"description":{"content":"<p>Number of results per page.</p>\n","type":"text/plain"},"key":"per_page","value":"80"}],"variable":[{"id":"114cf895-c594-4466-8f8f-6bfbcdb8422c","type":"any","key":"alert"}]}},"response":[{"id":"4713995f-e6df-434f-ab54-1229ffa90c5a","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/alerts/:alert","host":["https://core.wearepatchworks.com"],"path":["api","v1","alerts",":alert"],"query":[{"description":"Filter results by name.","key":"filter[name]","value":"string","disabled":true},{"description":"Filter results by type.","key":"filter[type]","value":"string","disabled":true},{"description":"Comma-separated list of relationships to include. Available: notificationGroup, createdBy","key":"include","value":"string","disabled":true},{"description":"Sort field. Prefix with - for descending. Available: name, type, created_at, last_triggered_at","key":"sort","value":"string","disabled":true},{"description":"Page number for pagination.","key":"page","value":"1","disabled":true},{"description":"Number of results per page.","key":"per_page","value":"80","disabled":true}],"variable":[{"key":"alert"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7174a536-2f02-4a53-87db-dd3b7209498d"},{"name":"Update Alert","id":"90d8a3bd-59d0-463b-9602-f2479a7b5cfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"}],"url":"https://core.wearepatchworks.com/api/v1/alerts/:alert","description":"<p>Update an existing alert.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","alerts",":alert"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"60165b0b-526d-4fa1-86bf-83c19a2de652","type":"any","key":"alert"}]}},"response":[{"id":"6ff91b47-4767-42ec-bd9e-72c1d34e04ea","name":"OK","originalRequest":{"method":"PUT","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/alerts/:alert","host":["https://core.wearepatchworks.com"],"path":["api","v1","alerts",":alert"],"variable":[{"key":"alert"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null},{"id":"e750c105-7320-48a5-9e24-c98963ce9894","name":"Validation Error","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/alerts/:alert","host":["https://core.wearepatchworks.com"],"path":["api","v1","alerts",":alert"],"variable":[{"key":"alert"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"The given data was invalid.\",\n  \"errors\": {\n    \"field\": [\n      \"The field is required.\"\n    ]\n  }\n}"}],"_postman_id":"90d8a3bd-59d0-463b-9602-f2479a7b5cfc"},{"name":"Delete Alert","id":"8060a79d-c6b4-4b9c-bc92-61acc95dc6b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://core.wearepatchworks.com/api/v1/alerts/:alert","description":"<p>Delete a alert.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}},"urlObject":{"path":["api","v1","alerts",":alert"],"host":["https://core.wearepatchworks.com"],"query":[],"variable":[{"id":"b3855df9-5da9-4118-bf33-1af699a1f1ab","type":"any","key":"alert"}]}},"response":[{"id":"1cfb9a50-b379-4916-8480-4863af294bef","name":"OK","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"Authorization","value":"<API Key>"}],"url":{"raw":"https://core.wearepatchworks.com/api/v1/alerts/:alert","host":["https://core.wearepatchworks.com"],"path":["api","v1","alerts",":alert"],"variable":[{"key":"alert"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8060a79d-c6b4-4b9c-bc92-61acc95dc6b2"}],"id":"07f99fc5-bf5f-494a-beba-1731aab5b32a","_postman_id":"07f99fc5-bf5f-494a-beba-1731aab5b32a","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":true,"source":{"_postman_id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","id":"cebe3b09-199a-4197-b5e6-0f1bbcc2e2bb","name":"Patchworks Core API","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{apiKey}}"}]}},"variable":[{"key":"baseUrl","value":"https://core.wearepatchworks.com"}]}