{"info":{"_postman_id":"384bc9ac-60df-4150-9d4b-068ed6bfd13a","name":"CurrentSCM v1.0.65","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"1650525","collectionId":"384bc9ac-60df-4150-9d4b-068ed6bfd13a","publishedId":"2sBXiestyR","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-03-11T21:15:43.000Z"},"item":[{"name":" Getting Started","item":[{"name":" Authentication","item":[],"id":"172f3e48-dbe2-430d-a6b3-e82e598a3f3a","description":"<h2 id=\"api-access\">API Access</h2>\n<p>API Access is limited to Enterprise accounts and via a paid upgrade on other plans.</p>\n<p>Tokens can be created via Support.</p>\n<h2 id=\"bearer-tokens\">Bearer Tokens</h2>\n<p>The API provides access via Bearer Tokens.</p>\n<p>The token should be provided by appending the request with your token e.g.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-php\">&lt;?php\n$client = new Client();\n$headers = [\n  'Authorization' =&gt; 'Bearer [TOKEN]'\n];\n$request = new Request('GET', 'https:/app.currentscm.com/api/v1/[uri]', $headers);\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-java\">OkHttpClient client = new OkHttpClient().newBuilder()\n  .build();\nMediaType mediaType = MediaType.parse(\"text/plain\");\nRequestBody body = RequestBody.create(mediaType, \"\");\nRequest request = new Request.Builder()\n  .url(\"https:/app.currentscm.com/api/v1/[uri]\")\n  .method(\"GET\", body)\n  .addHeader(\"Authorization\", \"Bearer [TOKEN]\")\n  .build();\nResponse response = client.newCall(request).execute();\n</code></pre>\n<h2 id=\"token-scopes\">Token Scopes:</h2>\n<p>Tokens can be defined as <code>readonly</code> or <code>read-write</code>.</p>\n","_postman_id":"172f3e48-dbe2-430d-a6b3-e82e598a3f3a"},{"name":" Versioning","item":[],"id":"39ece8e2-9060-40c5-a974-952409a787f1","description":"<p>We are developers and appreciate the stability of an API. The application is also is constantly undergoing improvements.</p>\n<p>We are committed to the greatest extent possible maintaining the endpoints, request and response shapes.</p>\n<p>You can expect that we will not remove data members unless they are removed from the application. In these cases we will communicate in advance via email and these documents.</p>\n<p>New data members may be added at any time to facilitate new features.</p>\n<p>In general for non restful endpoints we intend on adding new endpoints instead of updating existing endpoints.</p>\n","_postman_id":"39ece8e2-9060-40c5-a974-952409a787f1"},{"name":" Request Extensions","item":[],"id":"11bebf49-cd46-487a-a6fa-7eeba3416d1b","description":"<p>The API offers a collection of <strong>RESTful</strong> and transactionary endpoints.</p>\n<p>In addition, the developer can use a number of extensions to limit, and shape the data requested.</p>\n<h1 id=\"selecting-data\">Selecting Data</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Function</strong></th>\n<th><strong>Query String</strong></th>\n<th><strong>Notes</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Where</td>\n<td><code>&amp;[field]=[value]</code></td>\n<td></td>\n<td><code>api/v1/businesses?is_client=1</code></td>\n</tr>\n<tr>\n<td>WhereDeep</td>\n<td><code>&amp;[relation.deepField]=[value]</code></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>In</td>\n<td><code>&amp;in=[field]:[value1</code>|<code>value2\\]</code></td>\n<td></td>\n<td><code>&amp;in=id:[123</code>|<code>456]</code></td>\n</tr>\n<tr>\n<td>WhereNull</td>\n<td><code>&amp;whereNull=[field]</code></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"including-related-data\">Including Related Data</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Function</th>\n<th>Query String</th>\n<th>Notes</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Include</td>\n<td><code>&amp;include=[relationName],..,[]</code></td>\n<td></td>\n<td><code>api/v1/people?include=team</code></td>\n</tr>\n<tr>\n<td>Include Where</td>\n<td><code>&amp;includeWhere=[relationName.propertyName=propertyValue],,,,[]</code></td>\n<td></td>\n<td><code>api/v1/cux_definitions/1?includeWhere=cuxColumnDefinitions:is_active=true</code></td>\n</tr>\n<tr>\n<td>Has</td>\n<td><code>&amp;has=[relationName],,,,[]</code></td>\n<td>returns entities that have an instance of the relation. i.e. all requisition items with an associated order item (i.e. has been ordered)</td>\n<td><code>api/v1/requisitionitems?has=offeritem,</code></td>\n</tr>\n<tr>\n<td>Doesnt Have</td>\n<td><code>&amp;doesnthave=[relationName],,[]</code></td>\n<td>returns entities that do not have an instance of the relation. i.e. all requisition items that have not been bid</td>\n<td><code>api/v1/requisitionitems?doesnthave=offeritem,</code></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"chunking-data\">Chunking Data</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Function</th>\n<th>Query String</th>\n<th>Notes</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Limit</td>\n<td><code>&amp;limit=[count]</code></td>\n<td></td>\n<td><code>api/v1/people?limit=20</code></td>\n</tr>\n<tr>\n<td>Limit and Skip</td>\n<td><code>&amp;limit=[count]&amp;skip=[skipCount]</code></td>\n<td></td>\n<td><code>api/v1/people?limit=20&amp;skip=20</code></td>\n</tr>\n<tr>\n<td>Sorting Data</td>\n<td><code>&amp;sort=[+/-][sortColumn]</code></td>\n<td></td>\n<td><code>api/v1/people?sort=+name</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"11bebf49-cd46-487a-a6fa-7eeba3416d1b"}],"id":"d6301dba-b273-4b4c-b8b2-671176b8f68d","description":"<h2 id=\"general-concepts\">General Concepts:</h2>\n<p>Before you get started we want to cover a few critical concepts.</p>\n<h3 id=\"interaction-with-user-permissions\">Interaction with User Permissions</h3>\n<p>Each bearer token is associated with a <code>User</code> within the application. The application has robust access control and data scoping. If the <code>User</code> does not have permission to access a <code>Team</code> or <code>Project</code> or has limited transaction permissions the system will disallow.</p>\n<p>For basic data warehousing and extensions, the developer could utilize a system account with full permissions and control data controls and transactional permissions within their own application.</p>\n<h3 id=\"team-scoped\">Team Scoped</h3>\n<p>For organizations with multiple <code>Teams</code> care must be taken to execute transactions under the context of the correct team.</p>\n<p>The application uses a <code>Current Team</code> concept such that any transaction completed will occur under the context of the <code>Users</code> <code>Current Team</code>.</p>\n<p>While optional the use of the <code>TEAM-TOKEN</code> header is <strong>strongly encouraged</strong>. This header ensures upon each transaction that the data and activity takes place in the context of the specified <code>Team</code></p>\n<h3 id=\"date-timezone\">Date Timezone</h3>\n<p>The application utilizes date and datetime data types depending on the context of the specific data member.</p>\n<p>In general datetime types are used for any transaction data (e.g. milestones, allocations, events)</p>\n<p>All datetime data fields to and from the API should be provided in the <code>UTC</code> timezone. </p>\n<ul>\n<li>For Example: <code>2000-01-01 00:00:00</code></li>\n</ul>\n<p>All pure date objects (no times) should be provided in the <code>Project</code> timezone.</p>\n<ul>\n<li>For Example: <code>2000-01-01</code></li>\n</ul>\n<p>Each data model will advise on whether is requires a datetime or date type</p>\n","_postman_id":"d6301dba-b273-4b4c-b8b2-671176b8f68d"},{"name":"Activity Logs","item":[{"name":"Index","item":[{"name":"api/v1/activity_logs","id":"e8633e40-dc0f-47c7-ab0e-70bdf529a8ec","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/activity_logs","description":"<p>Returns a list of multiple <code>ActivityLog</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","activity_logs"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8633e40-dc0f-47c7-ab0e-70bdf529a8ec"}],"id":"fd8ef894-d1ec-4277-b03c-66771afdca65","_postman_id":"fd8ef894-d1ec-4277-b03c-66771afdca65","description":""},{"name":"Show","item":[{"name":"api/v1/activity_logs/{activity_log}","id":"ab4f758d-44e5-45ba-bbbf-8d32ce6025dd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/activity_logs/:activity_log","description":"<p>Display the specified <code>ActivityLog</code>.</p>\n","urlObject":{"path":["api","v1","activity_logs",":activity_log"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"activity_log"}]}},"response":[],"_postman_id":"ab4f758d-44e5-45ba-bbbf-8d32ce6025dd"}],"id":"d82a1704-97f3-4b2f-abba-68eebac73d01","_postman_id":"d82a1704-97f3-4b2f-abba-68eebac73d01","description":""},{"name":"Store","item":[{"name":"api/v1/activity_logs","id":"7e7674c3-576c-4024-abc1-3de1e6d37cf3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"causer_id","value":null,"description":"<p>(Nullable), The causer id field must be an integer., The causer id field must be at least 0., The causer id field must not be greater than 1.844674407371E+19.</p>\n","type":"text"},{"key":"causer_type","value":null,"description":"<p>(Nullable), The causer type field must be a string., The selected causer type is invalid, it must exist in User.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>The description field is required., The description field must be a string., The selected description is invalid, it must exist in views, created, updated, deleted, state_changed.</p>\n","type":"text"},{"key":"log_name","value":null,"description":"<p>(Nullable), The log name field must be a string., The selected log name is invalid, it must exist in views, default.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer., The project id must identify an existing element of the correct type within the users current team.</p>\n","type":"text"},{"key":"properties","value":null,"description":"<p>(Nullable), The properties field must be an array.</p>\n","type":"text"},{"key":"subject_id","value":null,"description":"<p>(Nullable), The subject id field must be an integer., The subject id field must be at least 0., The subject id field must not be greater than 1.844674407371E+19.</p>\n","type":"text"},{"key":"subject_type","value":null,"description":"<p>(Nullable), The subject type field must be a string., The subject type field must not be greater than 48 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/activity_logs","description":"<p>Create a new <code>ActivityLog</code> object.</p>\n","urlObject":{"path":["api","v1","activity_logs"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e7674c3-576c-4024-abc1-3de1e6d37cf3"}],"id":"d63b5541-b605-407c-a97d-edcd2a7d39b6","_postman_id":"d63b5541-b605-407c-a97d-edcd2a7d39b6","description":""}],"id":"ae0c1da2-09b3-4e47-ba75-5385dd23fa1e","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> causer_id</code>,<code> causer_type</code>,<code> created_at</code>,<code> description</code>,<code> log_name</code>,<code> properties</code>,<code> subject_id</code>,<code> subject_type</code>,<code> team_id</code>,<code> updated_at</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>subject</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ae0c1da2-09b3-4e47-ba75-5385dd23fa1e"},{"name":"Allocations","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_allocations","id":"a7400f43-63e1-44a4-a960-052f00506cb7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"orderItems","value":null,"description":"<p>(Optional), The order items field must be an array.</p>\n","type":"text"},{"key":"orderItems.*","value":null,"description":"<p>The order items.* field must be an integer., The order items.* field must be at least 0 characters., The order items.* field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"allocations","value":null,"description":"<p>(Optional), The allocations field must be an array.</p>\n","type":"text"},{"key":"allocations.*","value":null,"description":"<p>The allocations.* field must be an integer., The allocations.* field must be at least 0 characters., The allocations.* field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_allocations","description":"<p>Destroy multiple <code>Allocation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7400f43-63e1-44a4-a960-052f00506cb7"}],"id":"40d27176-66f5-4b2e-bff6-2b307f4dec68","_postman_id":"40d27176-66f5-4b2e-bff6-2b307f4dec68","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_allocations","id":"4ff17623-77b6-4f30-84fd-e20cebf04038","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.allocation_type","value":null,"description":"<p>The data.<em>.allocation type field is required., The selected data.</em>.allocation type is invalid, it must exist in transfer-and-consume, supply-and-consume, supply-and-relinquish, storage, transfer, provided-material, consumption, delivery.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>The data.<em>.catalog item id field is required., The data.</em>.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.release_order_pre_release","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.release order pre release field must be a string., The data.</em>.comment.release order pre release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.release_order_post_release","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.release order post release field must be a string., The data.</em>.comment.release order post release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.receiving_comment","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.receiving comment field must be a string., The data.</em>.comment.receiving comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.release_report_comment","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.release report comment field must be a string., The data.</em>.comment.release report comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.expected_release_date","value":null,"description":"<p>The data.<em>.expected release date field is required., The data.</em>.expected release date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.expected_receive_date","value":null,"description":"<p>The data.<em>.expected receive date field is required., The data.</em>.expected receive date field must be a valid date., The data.*.expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"data.*.from_location_id","value":null,"description":"<p>The data.<em>.from location id field is required., The data.</em>.from location id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_id","value":null,"description":"<p>(Nullable), The data.*.order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_item_id","value":null,"description":"<p>(Nullable), The data.*.order item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.to_order_item_id","value":null,"description":"<p>(Nullable), The data.*.to order item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity_allocated","value":null,"description":"<p>The data.<em>.quantity allocated field must be a number., The data.</em>.quantity allocated field must be at least 0 characters., The data.*.quantity allocated field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.quantity_released","value":null,"description":"<p>(Optional), The data.<em>.quantity released field must be a number., The data.</em>.quantity released field must be at least 0 characters., The data.*.quantity released field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.relations.tags","value":null,"description":"<p>(Optional), The data.*.relations.tags field must be an array.</p>\n","type":"text"},{"key":"data.*.relations.tags.*.id","value":null,"description":"<p>The data.<em>.relations.tags.</em>.id field must be an integer.</p>\n","type":"text"},{"key":"data.*.relations.groupings","value":null,"description":"<p>(Nullable), (Optional)</p>\n","type":"text"},{"key":"data.*.status","value":null,"description":"<p>The data.<em>.status field is required., The data.</em>.status field must be a string., The selected data.*.status is invalid, it must exist in pending, pending_release, fully_released, short_released, over_released, complete, short_receipt, over_received, cancelled.</p>\n","type":"text"},{"key":"data.*.to_location_id","value":null,"description":"<p>(Nullable), The data.*.to location id field must be an integer.</p>\n","type":"text"},{"key":"data.*.update_tags","value":null,"description":"<p>(Optional), The data.*.update tags field must be true or false.</p>\n","type":"text"},{"key":"data.*.update_groupings","value":null,"description":"<p>(Optional), The data.*.update groupings field must be true or false.</p>\n","type":"text"},{"key":"data.*.date_forwarded_jm","value":null,"description":"<p>(Optional), (Nullable), The data.*.date forwarded jm field must be a valid date.</p>\n","type":"text"},{"key":"data.*.date_exited_jm","value":null,"description":"<p>(Optional), (Nullable), The data.*.date exited jm field must be a valid date.</p>\n","type":"text"},{"key":"update_tags","value":null,"description":"<p>(Optional), The update tags field must be true or false.</p>\n","type":"text"},{"key":"update_groupings","value":null,"description":"<p>(Optional), The update groupings field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_allocations","description":"<p>Create multiple <code>Allocation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ff17623-77b6-4f30-84fd-e20cebf04038"}],"id":"fe6b9571-5eb4-4bc8-8161-3fec4a5cad3e","_postman_id":"fe6b9571-5eb4-4bc8-8161-3fec4a5cad3e","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_allocations","id":"f466daed-68dc-44dd-b26a-373e5aa4e9d3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.allocation_type","value":null,"description":"<p>The data.<em>.allocation type field is required., The selected data.</em>.allocation type is invalid, it must exist in transfer-and-consume, supply-and-consume, supply-and-relinquish, storage, transfer, provided-material, consumption, delivery.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>(Optional), The data.*.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Optional), (Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.release_order_pre_release","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.release order pre release field must be a string., The data.</em>.comment.release order pre release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.release_order_post_release","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.release order post release field must be a string., The data.</em>.comment.release order post release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.receiving_comment","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.receiving comment field must be a string., The data.</em>.comment.receiving comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.release_report_comment","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.release report comment field must be a string., The data.</em>.comment.release report comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.expected_release_date","value":null,"description":"<p>(Optional), The data.*.expected release date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.expected_receive_date","value":null,"description":"<p>(Optional), The data.<em>.expected receive date field must be a valid date., The data.</em>.expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"data.*.from_location_id","value":null,"description":"<p>(Optional), The data.*.from location id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.order item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.to_order_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.to order item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity_allocated","value":null,"description":"<p>(Optional), The data.<em>.quantity allocated field must be a number., The data.</em>.quantity allocated field must be at least 0 characters., The data.*.quantity allocated field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.quantity_received","value":null,"description":"<p>(Optional), The data.<em>.quantity received field must be a number., The data.</em>.quantity received field must be at least 0 characters., The data.*.quantity received field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.quantity_released","value":null,"description":"<p>(Optional), The data.<em>.quantity released field must be a number., The data.</em>.quantity released field must be at least 0 characters., The data.*.quantity released field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.quantity_damaged","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.quantity damaged field must be a number., The data.</em>.quantity damaged field must be at least 0 characters., The data.*.quantity damaged field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.quantity_not_as_specified","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.quantity not as specified field must be a number., The data.</em>.quantity not as specified field must be at least 0 characters., The data.*.quantity not as specified field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.receive_date","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.receive date field must be a valid date., The data.</em>.receive date field must be a date after or equal to release date., The data.*.receive date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"data.*.relations.tags","value":null,"description":"<p>(Optional), The data.*.relations.tags field must be an array.</p>\n","type":"text"},{"key":"data.*.relations.groupings","value":null,"description":"<p>(Nullable), (Optional)</p>\n","type":"text"},{"key":"data.*.release_date","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.release date field must be a valid date., The data.</em>.release date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"data.*.release_order_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.release order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.status","value":null,"description":"<p>The data.<em>.status field is required., The data.</em>.status field must be a string., The selected data.*.status is invalid, it must exist in pending, pending_release, fully_released, short_released, over_released, complete, short_receipt, over_received, cancelled.</p>\n","type":"text"},{"key":"data.*.to_location_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.to location id field must be an integer.</p>\n","type":"text"},{"key":"data.*.update_tags","value":null,"description":"<p>(Optional), The data.*.update tags field must be true or false.</p>\n","type":"text"},{"key":"data.*.update_groupings","value":null,"description":"<p>(Optional), The data.*.update groupings field must be true or false.</p>\n","type":"text"},{"key":"data.*.date_forwarded_jm","value":null,"description":"<p>(Optional), (Nullable), The data.*.date forwarded jm field must be a valid date.</p>\n","type":"text"},{"key":"data.*.date_exited_jm","value":null,"description":"<p>(Optional), (Nullable), The data.*.date exited jm field must be a valid date.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"update_tags","value":null,"description":"<p>(Optional), The update tags field must be true or false.</p>\n","type":"text"},{"key":"update_groupings","value":null,"description":"<p>(Optional), The update groupings field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_allocations","description":"<p>Update multiple <code>Allocation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f466daed-68dc-44dd-b26a-373e5aa4e9d3"}],"id":"9de7ff06-1727-4b7f-bbaf-29ce043a225c","_postman_id":"9de7ff06-1727-4b7f-bbaf-29ce043a225c","description":""},{"name":"Create Adhoc","item":[{"name":"api/v1/allocations_adhoc","id":"4e1a48c8-cc65-4ee2-989c-b7f9874761fb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allocation_type","value":null,"description":"<p>The allocation type field is required., The selected allocation type is invalid, it must exist in transfer-and-consume, supply-and-consume, supply-and-relinquish, storage, transfer, provided-material, consumption, delivery.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_pre_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order pre release field must be a string., The comment.release order pre release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_post_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order post release field must be a string., The comment.release order post release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.receiving_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.receiving comment field must be a string., The comment.receiving comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_report_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.release report comment field must be a string., The comment.release report comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"expected_release_date","value":null,"description":"<p>The expected release date field is required., The expected release date field must be a valid date.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>The expected receive date field is required., The expected receive date field must be a valid date., The expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Nullable), The order item id field must be an integer.</p>\n","type":"text"},{"key":"to_order_item_id","value":null,"description":"<p>(Nullable), The to order item id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity_allocated","value":null,"description":"<p>The quantity allocated field must be a number., The quantity allocated field must be at least 0., The quantity allocated field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_released","value":null,"description":"<p>The quantity released field must be a number., The quantity released field must be at least 0., The quantity released field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"relations.tags","value":null,"description":"<p>(Optional), The relations.tags field must be an array.</p>\n","type":"text"},{"key":"relations.tags.*.id","value":null,"description":"<p>The relations.tags.*.id field must be an integer.</p>\n","type":"text"},{"key":"relations.groupings","value":null,"description":"<p>(Nullable), (Optional)</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The selected status is invalid, it must exist in pending, pending_release, fully_released, short_released, over_released, complete, short_receipt, over_received, cancelled.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>(Nullable), The to location id field must be an integer.</p>\n","type":"text"},{"key":"update_tags","value":null,"description":"<p>(Optional), The update tags field must be true or false.</p>\n","type":"text"},{"key":"update_groupings","value":null,"description":"<p>(Optional), The update groupings field must be true or false.</p>\n","type":"text"},{"key":"date_forwarded_jm","value":null,"description":"<p>(Optional), (Nullable), The date forwarded jm field must be a valid date.</p>\n","type":"text"},{"key":"date_exited_jm","value":null,"description":"<p>(Optional), (Nullable), The date exited jm field must be a valid date.</p>\n","type":"text"},{"key":"release_date","value":null,"description":"<p>(Nullable), The release date field must be a valid date., The release date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"release_order_id","value":null,"description":"<p>(Nullable), The release order id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/allocations_adhoc","description":"<p>Create a new <code>Allocation</code> object for adhoc items.</p>\n","urlObject":{"path":["api","v1","allocations_adhoc"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e1a48c8-cc65-4ee2-989c-b7f9874761fb"}],"id":"6cb7c3db-08da-43b7-9f22-c689f6820895","_postman_id":"6cb7c3db-08da-43b7-9f22-c689f6820895","description":""},{"name":"Destroy","item":[{"name":"api/v1/allocations/{allocation}","id":"4efec7bc-944a-4da0-aa8f-4471b6c101a1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/allocations/:allocation","description":"<p>Remove the specified <code>Allocation</code> from storage.</p>\n","urlObject":{"path":["api","v1","allocations",":allocation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"allocation"}]}},"response":[],"_postman_id":"4efec7bc-944a-4da0-aa8f-4471b6c101a1"}],"id":"2211dbae-8303-495a-9232-afce7c0758a4","_postman_id":"2211dbae-8303-495a-9232-afce7c0758a4","description":""},{"name":"Index","item":[{"name":"api/v1/allocations","id":"251f2e18-50ec-48ae-81e3-6044451fa971","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/allocations","description":"<p>Returns a list of multiple <code>Allocation</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"251f2e18-50ec-48ae-81e3-6044451fa971"}],"id":"f0225e37-925b-4be5-8a38-7c5d29e908ab","_postman_id":"f0225e37-925b-4be5-8a38-7c5d29e908ab","description":""},{"name":"Show","item":[{"name":"api/v1/allocations/{allocation}","id":"611c8434-72d0-44e8-9cb1-4e68e53f6ecd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/allocations/:allocation","description":"<p>Display the specified <code>Allocation</code>.</p>\n","urlObject":{"path":["api","v1","allocations",":allocation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"allocation"}]}},"response":[],"_postman_id":"611c8434-72d0-44e8-9cb1-4e68e53f6ecd"}],"id":"8da006ec-43ba-4c04-b719-6e451dcbcd92","_postman_id":"8da006ec-43ba-4c04-b719-6e451dcbcd92","description":""},{"name":"Store","item":[{"name":"api/v1/allocations","id":"9d3b32f3-8c25-430a-9d11-7ef802c3614b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allocation_type","value":null,"description":"<p>The allocation type field is required., The selected allocation type is invalid, it must exist in transfer-and-consume, supply-and-consume, supply-and-relinquish, storage, transfer, provided-material, consumption, delivery.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_pre_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order pre release field must be a string., The comment.release order pre release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_post_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order post release field must be a string., The comment.release order post release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.receiving_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.receiving comment field must be a string., The comment.receiving comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_report_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.release report comment field must be a string., The comment.release report comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"expected_release_date","value":null,"description":"<p>The expected release date field is required., The expected release date field must be a valid date.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>The expected receive date field is required., The expected receive date field must be a valid date., The expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Nullable), The order item id field must be an integer.</p>\n","type":"text"},{"key":"to_order_item_id","value":null,"description":"<p>(Nullable), The to order item id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity_allocated","value":null,"description":"<p>The quantity allocated field must be a number., The quantity allocated field must be at least 0., The quantity allocated field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_released","value":null,"description":"<p>(Optional), The quantity released field must be a number., The quantity released field must be at least 0., The quantity released field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"relations.tags","value":null,"description":"<p>(Optional), The relations.tags field must be an array.</p>\n","type":"text"},{"key":"relations.tags.*.id","value":null,"description":"<p>The relations.tags.*.id field must be an integer.</p>\n","type":"text"},{"key":"relations.groupings","value":null,"description":"<p>(Nullable), (Optional)</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The selected status is invalid, it must exist in pending, pending_release, fully_released, short_released, over_released, complete, short_receipt, over_received, cancelled.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>(Nullable), The to location id field must be an integer.</p>\n","type":"text"},{"key":"update_tags","value":null,"description":"<p>(Optional), The update tags field must be true or false.</p>\n","type":"text"},{"key":"update_groupings","value":null,"description":"<p>(Optional), The update groupings field must be true or false.</p>\n","type":"text"},{"key":"date_forwarded_jm","value":null,"description":"<p>(Optional), (Nullable), The date forwarded jm field must be a valid date.</p>\n","type":"text"},{"key":"date_exited_jm","value":null,"description":"<p>(Optional), (Nullable), The date exited jm field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/allocations","description":"<p>Create a new <code>Allocation</code> object.</p>\n","urlObject":{"path":["api","v1","allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d3b32f3-8c25-430a-9d11-7ef802c3614b"}],"id":"2503a486-7828-4b9b-a1a4-502e53b9fc62","_postman_id":"2503a486-7828-4b9b-a1a4-502e53b9fc62","description":""},{"name":"Update","item":[{"name":"api/v1/allocations/{allocation}","id":"d4252eae-e839-4701-90d1-e12d1b0bb951","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allocation_type","value":null,"description":"<p>The allocation type field is required., The selected allocation type is invalid, it must exist in transfer-and-consume, supply-and-consume, supply-and-relinquish, storage, transfer, provided-material, consumption, delivery.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_pre_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order pre release field must be a string., The comment.release order pre release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_post_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order post release field must be a string., The comment.release order post release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.receiving_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.receiving comment field must be a string., The comment.receiving comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_report_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.release report comment field must be a string., The comment.release report comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"expected_release_date","value":null,"description":"<p>(Optional), The expected release date field must be a valid date.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>(Optional), The expected receive date field must be a valid date., The expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>(Optional), The from location id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), (Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Optional), (Nullable), The order item id field must be an integer.</p>\n","type":"text"},{"key":"to_order_item_id","value":null,"description":"<p>(Optional), (Nullable), The to order item id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity_allocated","value":null,"description":"<p>(Optional), The quantity allocated field must be a number., The quantity allocated field must be at least 0., The quantity allocated field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_received","value":null,"description":"<p>(Optional), The quantity received field must be a number., The quantity received field must be at least 0., The quantity received field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_released","value":null,"description":"<p>(Optional), The quantity released field must be a number., The quantity released field must be at least 0., The quantity released field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_damaged","value":null,"description":"<p>(Optional), (Nullable), The quantity damaged field must be a number., The quantity damaged field must be at least 0., The quantity damaged field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_not_as_specified","value":null,"description":"<p>(Optional), (Nullable), The quantity not as specified field must be a number., The quantity not as specified field must be at least 0., The quantity not as specified field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"receive_date","value":null,"description":"<p>(Optional), (Nullable), The receive date field must be a valid date., The receive date field must be a date after or equal to release date., The receive date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"relations.tags","value":null,"description":"<p>(Optional), The relations.tags field must be an array.</p>\n","type":"text"},{"key":"relations.groupings","value":null,"description":"<p>(Nullable), (Optional)</p>\n","type":"text"},{"key":"release_date","value":null,"description":"<p>(Optional), (Nullable), The release date field must be a valid date., The release date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"release_order_id","value":null,"description":"<p>(Optional), (Nullable), The release order id field must be an integer.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The selected status is invalid, it must exist in pending, pending_release, fully_released, short_released, over_released, complete, short_receipt, over_received, cancelled.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>(Optional), (Nullable), The to location id field must be an integer.</p>\n","type":"text"},{"key":"update_tags","value":null,"description":"<p>(Optional), The update tags field must be true or false.</p>\n","type":"text"},{"key":"update_groupings","value":null,"description":"<p>(Optional), The update groupings field must be true or false.</p>\n","type":"text"},{"key":"date_forwarded_jm","value":null,"description":"<p>(Optional), (Nullable), The date forwarded jm field must be a valid date.</p>\n","type":"text"},{"key":"date_exited_jm","value":null,"description":"<p>(Optional), (Nullable), The date exited jm field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/allocations/:allocation","description":"<p>Update the specified <code>Allocation</code> .</p>\n","urlObject":{"path":["api","v1","allocations",":allocation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"allocation"}]}},"response":[],"_postman_id":"d4252eae-e839-4701-90d1-e12d1b0bb951"},{"name":"api/v1/allocations/{allocation}","id":"68baec5a-44eb-43e6-a601-ec179719f5e2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allocation_type","value":null,"description":"<p>The allocation type field is required., The selected allocation type is invalid, it must exist in transfer-and-consume, supply-and-consume, supply-and-relinquish, storage, transfer, provided-material, consumption, delivery.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_pre_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order pre release field must be a string., The comment.release order pre release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_post_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order post release field must be a string., The comment.release order post release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.receiving_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.receiving comment field must be a string., The comment.receiving comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_report_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.release report comment field must be a string., The comment.release report comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"expected_release_date","value":null,"description":"<p>(Optional), The expected release date field must be a valid date.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>(Optional), The expected receive date field must be a valid date., The expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>(Optional), The from location id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), (Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Optional), (Nullable), The order item id field must be an integer.</p>\n","type":"text"},{"key":"to_order_item_id","value":null,"description":"<p>(Optional), (Nullable), The to order item id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity_allocated","value":null,"description":"<p>(Optional), The quantity allocated field must be a number., The quantity allocated field must be at least 0., The quantity allocated field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_received","value":null,"description":"<p>(Optional), The quantity received field must be a number., The quantity received field must be at least 0., The quantity received field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_released","value":null,"description":"<p>(Optional), The quantity released field must be a number., The quantity released field must be at least 0., The quantity released field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_damaged","value":null,"description":"<p>(Optional), (Nullable), The quantity damaged field must be a number., The quantity damaged field must be at least 0., The quantity damaged field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_not_as_specified","value":null,"description":"<p>(Optional), (Nullable), The quantity not as specified field must be a number., The quantity not as specified field must be at least 0., The quantity not as specified field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"receive_date","value":null,"description":"<p>(Optional), (Nullable), The receive date field must be a valid date., The receive date field must be a date after or equal to release date., The receive date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"relations.tags","value":null,"description":"<p>(Optional), The relations.tags field must be an array.</p>\n","type":"text"},{"key":"relations.groupings","value":null,"description":"<p>(Nullable), (Optional)</p>\n","type":"text"},{"key":"release_date","value":null,"description":"<p>(Optional), (Nullable), The release date field must be a valid date., The release date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"release_order_id","value":null,"description":"<p>(Optional), (Nullable), The release order id field must be an integer.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The selected status is invalid, it must exist in pending, pending_release, fully_released, short_released, over_released, complete, short_receipt, over_received, cancelled.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>(Optional), (Nullable), The to location id field must be an integer.</p>\n","type":"text"},{"key":"update_tags","value":null,"description":"<p>(Optional), The update tags field must be true or false.</p>\n","type":"text"},{"key":"update_groupings","value":null,"description":"<p>(Optional), The update groupings field must be true or false.</p>\n","type":"text"},{"key":"date_forwarded_jm","value":null,"description":"<p>(Optional), (Nullable), The date forwarded jm field must be a valid date.</p>\n","type":"text"},{"key":"date_exited_jm","value":null,"description":"<p>(Optional), (Nullable), The date exited jm field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/allocations/:allocation","description":"<p>Update the specified <code>Allocation</code> .</p>\n","urlObject":{"path":["api","v1","allocations",":allocation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"allocation"}]}},"response":[],"_postman_id":"68baec5a-44eb-43e6-a601-ec179719f5e2"}],"id":"2fdb121d-9305-42c0-88ed-5b6366ef455a","_postman_id":"2fdb121d-9305-42c0-88ed-5b6366ef455a","description":""}],"id":"7d68764c-7317-47c7-86ff-fec3ef2c79da","description":"<p><code>Allocations</code> are used to plan, and then to execute material management activities.</p>\n<p>Allocations take place under the context of an <code>Order</code> within a <code>Project</code></p>\n<p>Allocations are a complex entity that both plan, then execute the movement of goods and materials into, out of, or between <code>Locations</code> in the context of a specific <code>Order</code> or <code>SalesOrder</code>.</p>\n<p>Upon execution one or many <code>Allocations</code> are attached to a <code>ReleaseOrder</code>.</p>\n<p><code>Allocations</code> are additionally utilized in the systems inventory projection functionality.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> allocation_type</code>,<code> catalog_item_id</code>,<code> comment</code>,<code> date_exited_jm</code>,<code> date_forwarded_jm</code>,<code> expected_receive_date</code>,<code> expected_release_date</code>,<code> from_location_id</code>,<code> order_id</code>,<code> order_item_id</code>,<code> project_id</code>,<code> quantity_allocated</code>,<code> quantity_received</code>,<code> quantity_received</code>,<code> quantity_released</code>,<code> receive_date</code>,<code> release_date</code>,<code> release_order_id</code>,<code> status</code>,<code> team_id</code>,<code> to_location_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fromLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransactions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>shipGroups</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toOrderItem</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>current_ship_group</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>float</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>last_received_ship_group</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>last_ship_group</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>next_ship_group</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>planned_shipping_duration</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>shipping_duration</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7d68764c-7317-47c7-86ff-fec3ef2c79da"},{"name":"Asset Movements","item":[{"name":"Destroy","item":[{"name":"api/v1/asset_movements/{asset_movement}","id":"9807004d-cba9-4f3c-bdb6-a4df4de376fc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/asset_movements/:asset_movement","description":"<p>Remove the specified <code>AssetMovement</code> from storage. DELETE /assetMovements/{id}.</p>\n","urlObject":{"path":["api","v1","asset_movements",":asset_movement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset_movement"}]}},"response":[],"_postman_id":"9807004d-cba9-4f3c-bdb6-a4df4de376fc"}],"id":"1b030ff3-a2f7-4436-8a45-1acba9aaf022","_postman_id":"1b030ff3-a2f7-4436-8a45-1acba9aaf022","description":""},{"name":"Index","item":[{"name":"api/v1/asset_movements","id":"a96db37a-2337-47e8-8daa-556f00a122fa","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/asset_movements","description":"<p>Returns a list of multiple <code>AssetMovement</code> objects based on optional criteria. GET|HEAD /assetMovements.</p>\n","urlObject":{"path":["api","v1","asset_movements"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a96db37a-2337-47e8-8daa-556f00a122fa"}],"id":"c506bebb-7a1d-4aa9-9a2f-efb9fcad92e7","_postman_id":"c506bebb-7a1d-4aa9-9a2f-efb9fcad92e7","description":""},{"name":"Show","item":[{"name":"api/v1/asset_movements/{asset_movement}","id":"2dc3d06d-c85f-49fd-a23a-aeddece5cd22","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/asset_movements/:asset_movement","description":"<p>Display the specified <code>AssetMovement</code>. GET|HEAD /assetMovements/{id}.</p>\n","urlObject":{"path":["api","v1","asset_movements",":asset_movement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset_movement"}]}},"response":[],"_postman_id":"2dc3d06d-c85f-49fd-a23a-aeddece5cd22"}],"id":"ffa66c21-006e-4f0e-960a-08525ee7a141","_postman_id":"ffa66c21-006e-4f0e-960a-08525ee7a141","description":""},{"name":"Store","item":[{"name":"api/v1/asset_movements","id":"a6cf6e2c-ad13-4412-9484-a4fb800fad3c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"asset_id","value":null,"description":"<p>The asset id field is required., The asset id field must be an integer.</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>The location id field is required., The location id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"is_billable","value":null,"description":"<p>The is billable field is required., The is billable field must be true or false.</p>\n","type":"text"},{"key":"is_maintenance","value":null,"description":"<p>The is maintenance field is required., The is maintenance field must be true or false.</p>\n","type":"text"},{"key":"is_idle","value":null,"description":"<p>The is idle field is required., The is idle field must be true or false.</p>\n","type":"text"},{"key":"billing_order_id","value":null,"description":"<p>(Nullable), The billing order id field must be an integer.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The selected status is invalid, it must exist in purchased, entered_service, planned, cancelled, complete, disposed.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/asset_movements","description":"<p>Create a new <code>AssetMovement</code> object. POST /assetMovements.</p>\n","urlObject":{"path":["api","v1","asset_movements"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6cf6e2c-ad13-4412-9484-a4fb800fad3c"}],"id":"dcf6f3b1-aaa1-416c-ba2b-bb3add0467db","_postman_id":"dcf6f3b1-aaa1-416c-ba2b-bb3add0467db","description":""},{"name":"Update","item":[{"name":"api/v1/asset_movements/{asset_movement}","id":"2e42d42e-f451-4f86-bebb-e8ef3fe24099","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"asset_id","value":null,"description":"<p>The asset id field is required., The asset id field must be an integer.</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>The location id field is required., The location id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"is_billable","value":null,"description":"<p>The is billable field is required., The is billable field must be true or false.</p>\n","type":"text"},{"key":"is_maintenance","value":null,"description":"<p>The is maintenance field is required., The is maintenance field must be true or false.</p>\n","type":"text"},{"key":"is_idle","value":null,"description":"<p>The is idle field is required., The is idle field must be true or false.</p>\n","type":"text"},{"key":"billing_order_id","value":null,"description":"<p>(Nullable), The billing order id field must be an integer.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The selected status is invalid, it must exist in purchased, entered_service, planned, cancelled, complete, disposed.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/asset_movements/:asset_movement","description":"<p>Update the specified <code>AssetMovement</code> . PUT/PATCH /assetMovements/{id}.</p>\n","urlObject":{"path":["api","v1","asset_movements",":asset_movement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset_movement"}]}},"response":[],"_postman_id":"2e42d42e-f451-4f86-bebb-e8ef3fe24099"},{"name":"api/v1/asset_movements/{asset_movement}","id":"7c34852d-77da-48e5-8b07-a27c7cab39e2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"asset_id","value":null,"description":"<p>The asset id field is required., The asset id field must be an integer.</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>The location id field is required., The location id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"is_billable","value":null,"description":"<p>The is billable field is required., The is billable field must be true or false.</p>\n","type":"text"},{"key":"is_maintenance","value":null,"description":"<p>The is maintenance field is required., The is maintenance field must be true or false.</p>\n","type":"text"},{"key":"is_idle","value":null,"description":"<p>The is idle field is required., The is idle field must be true or false.</p>\n","type":"text"},{"key":"billing_order_id","value":null,"description":"<p>(Nullable), The billing order id field must be an integer.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The selected status is invalid, it must exist in purchased, entered_service, planned, cancelled, complete, disposed.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/asset_movements/:asset_movement","description":"<p>Update the specified <code>AssetMovement</code> . PUT/PATCH /assetMovements/{id}.</p>\n","urlObject":{"path":["api","v1","asset_movements",":asset_movement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset_movement"}]}},"response":[],"_postman_id":"7c34852d-77da-48e5-8b07-a27c7cab39e2"}],"id":"1c6298f1-6c6a-49a3-b18f-982f114ca8df","_postman_id":"1c6298f1-6c6a-49a3-b18f-982f114ca8df","description":""}],"id":"1c4bef65-d004-4b7f-bf84-d44eb03c668b","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> asset_id</code>,<code> billing_order_id</code>,<code> business_id</code>,<code> comment</code>,<code> date</code>,<code> description</code>,<code> is_billable</code>,<code> is_idle</code>,<code> is_maintenance</code>,<code> location_id</code>,<code> metadata</code>,<code> status</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>asset</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billingOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1c4bef65-d004-4b7f-bf84-d44eb03c668b"},{"name":"Assets","item":[{"name":"Destroy","item":[{"name":"api/v1/assets/{asset}","id":"1e4f9389-bf6c-4963-92f7-c441ad00a5a0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/assets/:asset","description":"<p>Remove the specified <code>Asset</code> from storage. DELETE /assets/{id}.</p>\n","urlObject":{"path":["api","v1","assets",":asset"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"1e4f9389-bf6c-4963-92f7-c441ad00a5a0"}],"id":"91477349-76ec-40f0-a4aa-6237890a0a69","_postman_id":"91477349-76ec-40f0-a4aa-6237890a0a69","description":""},{"name":"Dispose","item":[{"name":"api/v1/assets/{asset}/dispose","id":"4ef9db8d-3bda-40d3-801c-3c84067ecd51","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>The description field is required., The description field must be a string., The description field must not be greater than 500 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/assets/:asset/dispose","description":"<p>Handles the disposal of a specified <code>Asset</code>.</p>\n","urlObject":{"path":["api","v1","assets",":asset","dispose"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"4ef9db8d-3bda-40d3-801c-3c84067ecd51"}],"id":"20cf32c7-3f3f-44e0-a808-e36487ae8e8c","_postman_id":"20cf32c7-3f3f-44e0-a808-e36487ae8e8c","description":""},{"name":"Index","item":[{"name":"api/v1/assets","id":"cb783110-ff75-4667-a5ea-c1dece327bc1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/assets","description":"<p>Returns a list of multiple <code>Asset</code> objects based on optional criteria. GET|HEAD /assets.</p>\n","urlObject":{"path":["api","v1","assets"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb783110-ff75-4667-a5ea-c1dece327bc1"}],"id":"adf30d4a-b127-4f42-8706-50df22df9a2a","_postman_id":"adf30d4a-b127-4f42-8706-50df22df9a2a","description":""},{"name":"Locate","item":[{"name":"api/v1/assets/{asset}/locate","id":"b22d0940-31fc-4593-b003-96ef2515109a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/assets/:asset/locate?date","description":"<p>Provides the actual or planned location of a specified <code>Asset</code> on a specified date.</p>\n","urlObject":{"path":["api","v1","assets",":asset","locate"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The date field is required., The date field must be a valid date., The date field must be a date after or equal to today.</p>\n","type":"text/plain"},"key":"date","value":null}],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"b22d0940-31fc-4593-b003-96ef2515109a"}],"id":"cbee2820-933a-4399-ad1a-f271601a313b","_postman_id":"cbee2820-933a-4399-ad1a-f271601a313b","description":""},{"name":"Movement Listing","item":[{"name":"api/v1/assets/{asset}/movement_listing","id":"7407b597-ec77-4ede-8dca-c1c012c8d3a8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/assets/:asset/movement_listing","description":"<p>Provides a listing of <code>AssetMovements</code> with their related returning movement in a nested form.</p>\n","urlObject":{"path":["api","v1","assets",":asset","movement_listing"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"7407b597-ec77-4ede-8dca-c1c012c8d3a8"}],"id":"edb873ea-b62e-4fa8-bfd1-4cb9d4075a3a","_postman_id":"edb873ea-b62e-4fa8-bfd1-4cb9d4075a3a","description":""},{"name":"Next Availability","item":[{"name":"api/v1/assets/{asset}/next_availability","id":"526f6f88-ab3e-4915-84ff-cee174f100d7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/assets/:asset/next_availability?date","description":"<p>Provides the next availability of a specified <code>Asset</code> on or after a specified <code>Date</code>.</p>\n","urlObject":{"path":["api","v1","assets",":asset","next_availability"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The date field is required., The date field must be a valid date., The date field must be a date after or equal to today.</p>\n","type":"text/plain"},"key":"date","value":null}],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"526f6f88-ab3e-4915-84ff-cee174f100d7"}],"id":"9d7eaf54-1aaf-496a-a171-f02f9154cd85","_postman_id":"9d7eaf54-1aaf-496a-a171-f02f9154cd85","description":""},{"name":"Show","item":[{"name":"api/v1/assets/{asset}","id":"b3f1a6f5-747e-496f-bd7b-e2090105cadd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/assets/:asset","description":"<p>Display the specified <code>Asset</code>. GET|HEAD /assets/{id}.</p>\n","urlObject":{"path":["api","v1","assets",":asset"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"b3f1a6f5-747e-496f-bd7b-e2090105cadd"}],"id":"20e607b3-05fe-4e11-b72d-70adc0dddaaf","_postman_id":"20e607b3-05fe-4e11-b72d-70adc0dddaaf","description":""},{"name":"Status On Date","item":[{"name":"api/v1/assets/{asset}/status_on_date","id":"02999fb2-74ff-41ef-876e-dcaf6164d37b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/assets/:asset/status_on_date?date","description":"<p>Provides the actual location of a specified <code>Asset</code> on a specified date as well as next asset movement.</p>\n","urlObject":{"path":["api","v1","assets",":asset","status_on_date"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Nullable), The date field must be a valid date., The date field must be a date after or equal to today.</p>\n","type":"text/plain"},"key":"date","value":null}],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"02999fb2-74ff-41ef-876e-dcaf6164d37b"}],"id":"64a3a67a-d1b6-460d-bfd2-f30adb7707f2","_postman_id":"64a3a67a-d1b6-460d-bfd2-f30adb7707f2","description":""},{"name":"Store","item":[{"name":"api/v1/assets","id":"26e76e6e-cf94-4f4b-8d7c-33de864a5f70","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 96 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"owner_business_id","value":null,"description":"<p>The owner business id field is required., The owner business id field must be an integer.</p>\n","type":"text"},{"key":"storage_location_id","value":null,"description":"<p>The storage location id field is required., The storage location id field must be an integer.</p>\n","type":"text"},{"key":"source_order_id","value":null,"description":"<p>(Nullable), The source order id field must be an integer.</p>\n","type":"text"},{"key":"purchase_value","value":null,"description":"<p>The purchase value field is required., The purchase value field must be a number.</p>\n","type":"text"},{"key":"book_value","value":null,"description":"<p>The book value field is required., The book value field must be a number.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>The currency code field is required., The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"purchase_date","value":null,"description":"<p>The purchase date field is required., The purchase date field must be a valid date., The purchase date field must be a date before now.</p>\n","type":"text"},{"key":"in_service_date","value":null,"description":"<p>(Nullable), The in service date field must be a valid date., The in service date field must be a date after or equal to purchase date.</p>\n","type":"text"},{"key":"disposal_date","value":null,"description":"<p>(Nullable), The disposal date field must be a valid date., The disposal date field must be a date after or equal to in service date.</p>\n","type":"text"},{"key":"useful_life_months","value":null,"description":"<p>The useful life months field is required., The useful life months field must be an integer., The useful life months field must be at least 0., The useful life months field must not be greater than 999.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/assets","description":"<p>Create a new <code>Asset</code> object. POST /assets.</p>\n","urlObject":{"path":["api","v1","assets"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"26e76e6e-cf94-4f4b-8d7c-33de864a5f70"}],"id":"23c7c9ad-0d18-440e-a911-0fdddd2b53fb","_postman_id":"23c7c9ad-0d18-440e-a911-0fdddd2b53fb","description":""},{"name":"Update","item":[{"name":"api/v1/assets/{asset}","id":"993ca9d6-feb3-49d6-90bc-1141e79121fe","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 96 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"owner_business_id","value":null,"description":"<p>The owner business id field is required., The owner business id field must be an integer.</p>\n","type":"text"},{"key":"storage_location_id","value":null,"description":"<p>The storage location id field is required., The storage location id field must be an integer.</p>\n","type":"text"},{"key":"source_order_id","value":null,"description":"<p>(Nullable), The source order id field must be an integer.</p>\n","type":"text"},{"key":"purchase_value","value":null,"description":"<p>The purchase value field is required., The purchase value field must be a number.</p>\n","type":"text"},{"key":"book_value","value":null,"description":"<p>The book value field is required., The book value field must be a number.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>The currency code field is required., The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"purchase_date","value":null,"description":"<p>The purchase date field is required., The purchase date field must be a valid date., The purchase date field must be a date before now.</p>\n","type":"text"},{"key":"in_service_date","value":null,"description":"<p>(Nullable), The in service date field must be a valid date., The in service date field must be a date after or equal to purchase date.</p>\n","type":"text"},{"key":"disposal_date","value":null,"description":"<p>(Nullable), The disposal date field must be a valid date., The disposal date field must be a date after or equal to in service date.</p>\n","type":"text"},{"key":"useful_life_months","value":null,"description":"<p>The useful life months field is required., The useful life months field must be an integer., The useful life months field must be at least 0., The useful life months field must not be greater than 999.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/assets/:asset","description":"<p>Update the specified <code>Asset</code> . PUT/PATCH /assets/{id}.</p>\n","urlObject":{"path":["api","v1","assets",":asset"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"993ca9d6-feb3-49d6-90bc-1141e79121fe"},{"name":"api/v1/assets/{asset}","id":"32e18a3f-5cd6-4343-8f26-ca08707ead1f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 96 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"owner_business_id","value":null,"description":"<p>The owner business id field is required., The owner business id field must be an integer.</p>\n","type":"text"},{"key":"storage_location_id","value":null,"description":"<p>The storage location id field is required., The storage location id field must be an integer.</p>\n","type":"text"},{"key":"source_order_id","value":null,"description":"<p>(Nullable), The source order id field must be an integer.</p>\n","type":"text"},{"key":"purchase_value","value":null,"description":"<p>The purchase value field is required., The purchase value field must be a number.</p>\n","type":"text"},{"key":"book_value","value":null,"description":"<p>The book value field is required., The book value field must be a number.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>The currency code field is required., The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"purchase_date","value":null,"description":"<p>The purchase date field is required., The purchase date field must be a valid date., The purchase date field must be a date before now.</p>\n","type":"text"},{"key":"in_service_date","value":null,"description":"<p>(Nullable), The in service date field must be a valid date., The in service date field must be a date after or equal to purchase date.</p>\n","type":"text"},{"key":"disposal_date","value":null,"description":"<p>(Nullable), The disposal date field must be a valid date., The disposal date field must be a date after or equal to in service date.</p>\n","type":"text"},{"key":"useful_life_months","value":null,"description":"<p>The useful life months field is required., The useful life months field must be an integer., The useful life months field must be at least 0., The useful life months field must not be greater than 999.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/assets/:asset","description":"<p>Update the specified <code>Asset</code> . PUT/PATCH /assets/{id}.</p>\n","urlObject":{"path":["api","v1","assets",":asset"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"32e18a3f-5cd6-4343-8f26-ca08707ead1f"}],"id":"43b1af85-d751-436d-a72f-90068512a89d","_postman_id":"43b1af85-d751-436d-a72f-90068512a89d","description":""},{"name":"Validate Disposal","item":[{"name":"api/v1/assets/{asset}/confirm_disposal","id":"a819d5f6-2547-4e34-997c-2d809e689cdb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/assets/:asset/confirm_disposal","description":"<p>Checks if an <code>Asset</code> can be validated as of today.</p>\n","urlObject":{"path":["api","v1","assets",":asset","confirm_disposal"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset"}]}},"response":[],"_postman_id":"a819d5f6-2547-4e34-997c-2d809e689cdb"}],"id":"1c8a514f-589c-4923-82eb-958fdfb8683e","_postman_id":"1c8a514f-589c-4923-82eb-958fdfb8683e","description":""}],"id":"ed45bb8e-948b-4d93-919c-3f67bcb42989","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> book_value</code>,<code> catalog_item_id</code>,<code> currency_code</code>,<code> description</code>,<code> disposal_date</code>,<code> identifier</code>,<code> in_service_date</code>,<code> metadata</code>,<code> name</code>,<code> owner_business_id</code>,<code> purchase_date</code>,<code> purchase_value</code>,<code> source_order_id</code>,<code> status</code>,<code> storage_location_id</code>,<code> team_id</code>,<code> useful_life_months</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentMovement</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastMaintenance</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>nextMaintenance</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>nextMovement</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>ownerBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>sourceOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storageLocation</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ed45bb8e-948b-4d93-919c-3f67bcb42989"},{"name":"Assets Movements","item":[{"name":"Cancel Movement","item":[{"name":"api/v1/asset_movements/{asset_movement}/cancel","id":"88051c14-03d7-4507-86a9-40958d364bc2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/asset_movements/:asset_movement/cancel","description":"<p>Marks the specified <code>AssetMovement</code> as Cancelled.</p>\n","urlObject":{"path":["api","v1","asset_movements",":asset_movement","cancel"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset_movement"}]}},"response":[],"_postman_id":"88051c14-03d7-4507-86a9-40958d364bc2"}],"id":"84bb1cd4-2cdf-46d2-a14c-d6d17f0590d9","_postman_id":"84bb1cd4-2cdf-46d2-a14c-d6d17f0590d9","description":""},{"name":"Complete Movement","item":[{"name":"api/v1/asset_movements/{asset_movement}/complete","id":"ea97ca92-1377-4d1a-a234-bd2ff7755158","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/asset_movements/:asset_movement/complete","description":"<p>Marks the specified <code>AssetMovement</code> as Complete.</p>\n","urlObject":{"path":["api","v1","asset_movements",":asset_movement","complete"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"asset_movement"}]}},"response":[],"_postman_id":"ea97ca92-1377-4d1a-a234-bd2ff7755158"}],"id":"285fa032-eb1b-4f23-ac14-f53be966a00f","_postman_id":"285fa032-eb1b-4f23-ac14-f53be966a00f","description":""},{"name":"Make Movement Pair","item":[{"name":"api/v1/asset_movements/make_pair","id":"95841c5a-b41a-4831-86a3-c2248eb33d1f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"asset_id","value":null,"description":"<p>The asset id field is required., The asset id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>The location id field is required., The location id field must be an integer.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"is_billable","value":null,"description":"<p>The is billable field is required., The is billable field must be true or false.</p>\n","type":"text"},{"key":"is_idle","value":null,"description":"<p>The is idle field is required., The is idle field must be true or false.</p>\n","type":"text"},{"key":"is_maintenance","value":null,"description":"<p>The is maintenance field is required., The is maintenance field must be true or false.</p>\n","type":"text"},{"key":"related_movement","value":null,"description":"<p>The related movement field is required., The related movement field must be an array.</p>\n","type":"text"},{"key":"related_movement.date","value":null,"description":"<p>The related movement.date field is required., The related movement.date field must be a valid date., The related movement.date field must be a date after date.</p>\n","type":"text"},{"key":"related_movement.business_id","value":null,"description":"<p>The related movement.business id field is required., The related movement.business id field must be an integer.</p>\n","type":"text"},{"key":"related_movement.description","value":null,"description":"<p>(Nullable), The related movement.description field must be a string., The related movement.description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"related_movement.location_id","value":null,"description":"<p>The related movement.location id field is required., The related movement.location id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/asset_movements/make_pair","description":"<p>Creates two <code>AssetMovement</code> entries in order to start and end a planned movement.</p>\n","urlObject":{"path":["api","v1","asset_movements","make_pair"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"95841c5a-b41a-4831-86a3-c2248eb33d1f"}],"id":"2cd6740c-3f07-4272-8bb6-d00fa20ac3c3","_postman_id":"2cd6740c-3f07-4272-8bb6-d00fa20ac3c3","description":""},{"name":"Update Movement Pair","item":[{"name":"api/v1/asset_movements/update_pair","id":"4a949367-80bf-489e-9a2f-13d9adb91dd1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"asset_id","value":null,"description":"<p>The asset id field is required., The asset id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>The location id field is required., The location id field must be an integer.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"is_billable","value":null,"description":"<p>The is billable field is required., The is billable field must be true or false.</p>\n","type":"text"},{"key":"is_idle","value":null,"description":"<p>The is idle field is required., The is idle field must be true or false.</p>\n","type":"text"},{"key":"is_maintenance","value":null,"description":"<p>The is maintenance field is required., The is maintenance field must be true or false.</p>\n","type":"text"},{"key":"related_movement","value":null,"description":"<p>The related movement field is required., The related movement field must be an array.</p>\n","type":"text"},{"key":"related_movement.date","value":null,"description":"<p>The related movement.date field is required., The related movement.date field must be a valid date., The related movement.date field must be a date after date.</p>\n","type":"text"},{"key":"related_movement.business_id","value":null,"description":"<p>The related movement.business id field is required., The related movement.business id field must be an integer.</p>\n","type":"text"},{"key":"related_movement.description","value":null,"description":"<p>(Nullable), The related movement.description field must be a string., The related movement.description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"related_movement.location_id","value":null,"description":"<p>The related movement.location id field is required., The related movement.location id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/asset_movements/update_pair","description":"<p>Updates the existing pair of <code>AssetMovements</code> in order to start and end a planned movement.</p>\n","urlObject":{"path":["api","v1","asset_movements","update_pair"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a949367-80bf-489e-9a2f-13d9adb91dd1"}],"id":"cdd043e4-4d00-42f2-b411-b96091b9d1e8","_postman_id":"cdd043e4-4d00-42f2-b411-b96091b9d1e8","description":""}],"id":"59ea7cd6-04cd-460f-8a52-b593b5b1ed5d","_postman_id":"59ea7cd6-04cd-460f-8a52-b593b5b1ed5d","description":""},{"name":"Attachable Shares","item":[{"name":"Destroy","item":[{"name":"api/v1/attachable_shares/{attachable_share}","id":"843a2500-ea23-4c36-81e1-95955cb24b5d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachable_shares/:attachable_share","description":"<p>Remove the specified <code>AttachableShare</code> from storage.</p>\n","urlObject":{"path":["api","v1","attachable_shares",":attachable_share"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachable_share"}]}},"response":[],"_postman_id":"843a2500-ea23-4c36-81e1-95955cb24b5d"}],"id":"805a8a59-6b45-46d0-bf64-a50b7d03c9f1","_postman_id":"805a8a59-6b45-46d0-bf64-a50b7d03c9f1","description":""},{"name":"Index","item":[{"name":"api/v1/attachable_shares","id":"577274d9-abeb-4f9e-8801-60b8630f93d9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachable_shares","description":"<p>Returns a list of multiple <code>AttachableShare</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","attachable_shares"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"577274d9-abeb-4f9e-8801-60b8630f93d9"}],"id":"c416bc77-58a1-41d9-844a-43bb8a7b0621","_postman_id":"c416bc77-58a1-41d9-844a-43bb8a7b0621","description":""},{"name":"Show","item":[{"name":"api/v1/attachable_shares/{attachable_share}","id":"bf84fe6e-6500-4ee8-9521-0093e433dae3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachable_shares/:attachable_share","description":"<p>Display the specified <code>AttachableShare</code>.</p>\n","urlObject":{"path":["api","v1","attachable_shares",":attachable_share"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachable_share"}]}},"response":[],"_postman_id":"bf84fe6e-6500-4ee8-9521-0093e433dae3"}],"id":"b19eb3ae-f33d-4a3d-a054-85a2776db5c0","_postman_id":"b19eb3ae-f33d-4a3d-a054-85a2776db5c0","description":""},{"name":"Store","item":[{"name":"api/v1/attachable_shares","id":"e8c1b466-beb4-47d0-bc8b-82db573e3c4d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attachable_id","value":null,"description":"<p>The attachable id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"email","value":null,"description":"<p>The email field is required., The email field must be a valid email address.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachable_shares","description":"<p>Create a new <code>AttachableShare</code> object.</p>\n","urlObject":{"path":["api","v1","attachable_shares"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8c1b466-beb4-47d0-bc8b-82db573e3c4d"}],"id":"38baf3dd-3101-4955-90b3-01119f3219fe","_postman_id":"38baf3dd-3101-4955-90b3-01119f3219fe","description":""},{"name":"Update","item":[{"name":"api/v1/attachable_shares/{attachable_share}","id":"eff4e658-1f6c-40e0-9dd4-7d9117190e8f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachable_shares/:attachable_share","description":"<p>Update the specified <code>AttachableShare</code> .</p>\n","urlObject":{"path":["api","v1","attachable_shares",":attachable_share"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachable_share"}]}},"response":[],"_postman_id":"eff4e658-1f6c-40e0-9dd4-7d9117190e8f"},{"name":"api/v1/attachable_shares/{attachable_share}","id":"de03707d-9977-49f7-897e-7867ec80af1d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachable_shares/:attachable_share","description":"<p>Update the specified <code>AttachableShare</code> .</p>\n","urlObject":{"path":["api","v1","attachable_shares",":attachable_share"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachable_share"}]}},"response":[],"_postman_id":"de03707d-9977-49f7-897e-7867ec80af1d"}],"id":"f9638954-a1c2-4478-bcd4-02feeef12c31","_postman_id":"f9638954-a1c2-4478-bcd4-02feeef12c31","description":""}],"id":"0d4bd928-b76e-46b7-9b73-621cbc1979b1","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> attachable_id</code>,<code> description</code>,<code> email</code>,<code> is_active</code>,<code> project_id</code>,<code> user_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachment</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>enterprise</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>link</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0d4bd928-b76e-46b7-9b73-621cbc1979b1"},{"name":"Attachables","item":[{"name":"Destroy","item":[{"name":"api/v1/attachables/{attachable}","id":"d0659733-86e3-4f13-96ad-a9bfe2795461","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachables/:attachable","description":"<p>Remove the specified <code>Attachable</code> from storage.</p>\n","urlObject":{"path":["api","v1","attachables",":attachable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachable"}]}},"response":[],"_postman_id":"d0659733-86e3-4f13-96ad-a9bfe2795461"}],"id":"5c94c849-5830-4962-976d-824fe77855c7","_postman_id":"5c94c849-5830-4962-976d-824fe77855c7","description":""},{"name":"Index","item":[{"name":"api/v1/attachables","id":"00558483-389e-413e-8ad3-16f5e26f061c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachables","description":"<p>Returns a list of multiple <code>Attachable</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","attachables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"00558483-389e-413e-8ad3-16f5e26f061c"}],"id":"aac1135e-dec7-4d70-9375-421baaa38241","_postman_id":"aac1135e-dec7-4d70-9375-421baaa38241","description":""},{"name":"Show","item":[{"name":"api/v1/attachables/{attachable}","id":"61895e8a-d042-4175-b2c9-35a6ca86174f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachables/:attachable","description":"<p>Display the specified <code>Attachable</code>.</p>\n","urlObject":{"path":["api","v1","attachables",":attachable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachable"}]}},"response":[],"_postman_id":"61895e8a-d042-4175-b2c9-35a6ca86174f"}],"id":"89b4eb1f-be93-406b-9f52-bdc08f891d63","_postman_id":"89b4eb1f-be93-406b-9f52-bdc08f891d63","description":""},{"name":"Store","item":[{"name":"api/v1/attachables","id":"b5e54aea-355a-414e-8a4b-bb3473c8beb7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attachable_id","value":null,"description":"<p>The attachable id field is required., The attachable id field must be an integer., The attachable id field must be at least 0., The attachable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"attachable_type","value":null,"description":"<p>The attachable type field is required., The attachable type field must be a string.</p>\n","type":"text"},{"key":"attachment_id","value":null,"description":"<p>(Nullable), The attachment id field must be an integer.</p>\n","type":"text"},{"key":"attachable_name","value":null,"description":"<p>(Optional), (Nullable), The attachable name field must be a string., The attachable name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"type_attachment","value":null,"description":"<p>(Optional), (Nullable), The type attachment field must be a string., The type attachment field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"attachable_description","value":null,"description":"<p>(Optional), (Nullable), The attachable description field must be a string., The attachable description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachables","description":"<p>Create a new <code>Attachable</code> object.</p>\n","urlObject":{"path":["api","v1","attachables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5e54aea-355a-414e-8a4b-bb3473c8beb7"}],"id":"b5621421-ce84-421e-b440-8e4c3facf7a0","_postman_id":"b5621421-ce84-421e-b440-8e4c3facf7a0","description":""},{"name":"Update","item":[{"name":"api/v1/attachables/{attachable}","id":"54d7a09b-cee5-466f-aa2e-ef0da7f8503d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attachable_id","value":null,"description":"<p>(Optional), (Nullable), The attachable id field must be an integer., The attachable id field must be at least 0., The attachable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"attachable_type","value":null,"description":"<p>(Optional), (Nullable), The attachable type field must be a string.</p>\n","type":"text"},{"key":"attachment_id","value":null,"description":"<p>(Optional), (Nullable), The attachment id field must be an integer.</p>\n","type":"text"},{"key":"attachable_name","value":null,"description":"<p>(Optional), (Nullable), The attachable name field must be a string., The attachable name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"type_attachment","value":null,"description":"<p>(Optional), (Nullable), The type attachment field must be a string., The type attachment field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"attachable_description","value":null,"description":"<p>(Optional), (Nullable), The attachable description field must be a string., The attachable description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachables/:attachable","description":"<p>Update the specified <code>Attachable</code> .</p>\n","urlObject":{"path":["api","v1","attachables",":attachable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachable"}]}},"response":[],"_postman_id":"54d7a09b-cee5-466f-aa2e-ef0da7f8503d"},{"name":"api/v1/attachables/{attachable}","id":"c8d920c2-dd56-47a9-9891-3c1ca178bf43","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attachable_id","value":null,"description":"<p>(Optional), (Nullable), The attachable id field must be an integer., The attachable id field must be at least 0., The attachable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"attachable_type","value":null,"description":"<p>(Optional), (Nullable), The attachable type field must be a string.</p>\n","type":"text"},{"key":"attachment_id","value":null,"description":"<p>(Optional), (Nullable), The attachment id field must be an integer.</p>\n","type":"text"},{"key":"attachable_name","value":null,"description":"<p>(Optional), (Nullable), The attachable name field must be a string., The attachable name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"type_attachment","value":null,"description":"<p>(Optional), (Nullable), The type attachment field must be a string., The type attachment field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"attachable_description","value":null,"description":"<p>(Optional), (Nullable), The attachable description field must be a string., The attachable description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachables/:attachable","description":"<p>Update the specified <code>Attachable</code> .</p>\n","urlObject":{"path":["api","v1","attachables",":attachable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachable"}]}},"response":[],"_postman_id":"c8d920c2-dd56-47a9-9891-3c1ca178bf43"}],"id":"e82d8328-48ce-4da5-8d67-c9fd4419f03c","_postman_id":"e82d8328-48ce-4da5-8d67-c9fd4419f03c","description":""},{"name":"User List","item":[{"name":"api/v1/attachables/user_list","id":"e2020ff8-af20-491e-aad6-42ab1b2b6004","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachables/user_list?user_id","description":"<p>Provides a list of files associated with a specified <code>User</code> within the context of this <code>Team</code>.</p>\n","urlObject":{"path":["api","v1","attachables","user_list"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text/plain"},"key":"user_id","value":null}],"variable":[]}},"response":[],"_postman_id":"e2020ff8-af20-491e-aad6-42ab1b2b6004"}],"id":"be72dad5-4025-4103-970f-9ad9ea952ff6","_postman_id":"be72dad5-4025-4103-970f-9ad9ea952ff6","description":""}],"id":"48c7f311-cad6-4f84-a593-9d92a4af99a4","description":"<p><code>Attachables</code> create a link between an <code>Attachment</code> and other objects within CurrentSCM.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> attachable_id</code>,<code> attachable_type</code>,<code> attachment_id</code>,<code> attachment|user_id</code>,<code> extension</code>,<code> project_id</code>,<code> system_generated</code>,<code> team_id</code>,<code> user_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>activeShares</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachment</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>shares</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"48c7f311-cad6-4f84-a593-9d92a4af99a4"},{"name":"Attachments","item":[{"name":"Destroy","item":[{"name":"api/v1/attachments/{attachment}","id":"e3921219-4f6a-468c-9ac8-50278938e319","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachments/:attachment","description":"<p>Remove the specified <code>Attachment</code> from storage.</p>\n","urlObject":{"path":["api","v1","attachments",":attachment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachment"}]}},"response":[],"_postman_id":"e3921219-4f6a-468c-9ac8-50278938e319"}],"id":"59115eb1-80fa-42c4-9ce0-b4982bbcdc55","_postman_id":"59115eb1-80fa-42c4-9ce0-b4982bbcdc55","description":""},{"name":"Download","item":[{"name":"api/v1/attachments/{attachment}/download","id":"57202a79-63e0-46f9-b712-25f275a9561a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachments/:attachment/download","description":"<p>Serves (downloads) the associated file from Storage.</p>\n","urlObject":{"path":["api","v1","attachments",":attachment","download"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachment"}]}},"response":[],"_postman_id":"57202a79-63e0-46f9-b712-25f275a9561a"}],"id":"1d41e3af-6bf7-46ca-b4c6-94f64883869a","_postman_id":"1d41e3af-6bf7-46ca-b4c6-94f64883869a","description":""},{"name":"Index","item":[{"name":"api/v1/attachments","id":"1477e968-e12f-4026-8dd3-6f3a14b60b63","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachments","description":"<p>Returns a list of multiple <code>Attachment</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","attachments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1477e968-e12f-4026-8dd3-6f3a14b60b63"}],"id":"3b08c061-3524-4ecc-9f1b-a45bbe8aa509","_postman_id":"3b08c061-3524-4ecc-9f1b-a45bbe8aa509","description":""},{"name":"Show","item":[{"name":"api/v1/attachments/{attachment}","id":"2bbb859e-a985-4480-a746-bfac37683714","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/attachments/:attachment","description":"<p>Display the specified <code>Attachment</code>.</p>\n","urlObject":{"path":["api","v1","attachments",":attachment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachment"}]}},"response":[],"_postman_id":"2bbb859e-a985-4480-a746-bfac37683714"}],"id":"17922099-26db-4e78-a1b3-9c804db5e274","_postman_id":"17922099-26db-4e78-a1b3-9c804db5e274","description":""},{"name":"Store","item":[{"name":"api/v1/attachments","id":"a3b0dcde-8094-4da8-8445-ded600afb56c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"file","value":null,"description":"<p>The file field is required., The file field must be a file of type: jpg, jpeg, bmp, png, doc, docx, csv, rtf, xlsx, xls, txt, pdf, msg, eml., The file field must not be greater than 102400 characters.</p>\n","type":"text"},{"key":"change_name","value":null,"description":"<p>(Optional), (Nullable), The change name field must be a string., The change name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attachment_type","value":null,"description":"<p>The attachment type field must be a string., The attachment type field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"original_name","value":null,"description":"<p>(Optional), The original name field must be a string., The original name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"extension","value":null,"description":"<p>(Optional), The extension field must be a string., The extension field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"size","value":null,"description":"<p>(Optional), The size field must be an integer., The size field must not be greater than 99999999.</p>\n","type":"text"},{"key":"storage_path","value":null,"description":"<p>(Optional), The storage path field must be a string., The storage path field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"checksum","value":null,"description":"<p>(Optional), The checksum field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachments","description":"<p>Handles the upload of a file, and then creates a new <code>Attachment</code> object.</p>\n","urlObject":{"path":["api","v1","attachments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a3b0dcde-8094-4da8-8445-ded600afb56c"}],"id":"4e66d696-c8f5-4b45-a0e5-3f6b27875a8d","_postman_id":"4e66d696-c8f5-4b45-a0e5-3f6b27875a8d","description":""},{"name":"Update","item":[{"name":"api/v1/attachments/{attachment}","id":"00dc1ab0-b339-41e9-98c0-8a35b2dd89f1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"change_name","value":null,"description":"<p>(Optional), (Nullable), The change name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachments/:attachment","description":"<p>Update the specified <code>Attachment</code> . This process only handles the document data and will not modify the underlying file.</p>\n","urlObject":{"path":["api","v1","attachments",":attachment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachment"}]}},"response":[],"_postman_id":"00dc1ab0-b339-41e9-98c0-8a35b2dd89f1"},{"name":"api/v1/attachments/{attachment}","id":"4b56c35a-e281-44bf-b0a7-8bae2d6088cf","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"change_name","value":null,"description":"<p>(Optional), (Nullable), The change name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachments/:attachment","description":"<p>Update the specified <code>Attachment</code> . This process only handles the document data and will not modify the underlying file.</p>\n","urlObject":{"path":["api","v1","attachments",":attachment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"attachment"}]}},"response":[],"_postman_id":"4b56c35a-e281-44bf-b0a7-8bae2d6088cf"}],"id":"856a3109-edca-4d92-86c8-0667ed3ce857","_postman_id":"856a3109-edca-4d92-86c8-0667ed3ce857","description":""},{"name":"Upload And Link","item":[{"name":"api/v1/attachments/upload_and_link","id":"20fa3664-8cfe-4486-8815-ef13fda09963","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attachable_id","value":null,"description":"<p>The attachable id field is required., The attachable id field must be an integer., The attachable id field must be at least 0., The attachable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"attachable_type","value":null,"description":"<p>The attachable type field is required., The attachable type field must be a string.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"file","value":null,"description":"<p>The file field is required., The file field must be a file of type: jpg, jpeg, bmp, png, doc, docx, csv, rtf, xlsx, xls, txt, pdf, msg, eml., The file field must not be greater than 102400 characters.</p>\n","type":"text"},{"key":"change_name","value":null,"description":"<p>(Optional), (Nullable), The change name field must be a string., The change name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attachment_type","value":null,"description":"<p>The attachment type field must be a string., The attachment type field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"original_name","value":null,"description":"<p>(Optional), The original name field must be a string., The original name field must not be greater than 144 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/attachments/upload_and_link","description":"<p>The upload_and_link endpoint is used to upload a file (an Attachment) and attach it to an Attachable (ie: a Bid, BidItem,Business, CatalogItem etc - see Attachable::createRules for more).</p>\n","urlObject":{"path":["api","v1","attachments","upload_and_link"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"20fa3664-8cfe-4486-8815-ef13fda09963"}],"id":"6fe8d654-de9e-4294-9a39-d3223d151744","_postman_id":"6fe8d654-de9e-4294-9a39-d3223d151744","description":""},{"name":"Upload Image","item":[{"name":"api/v1/imageupload","id":"453b2797-4848-4385-afbf-f7a4ab0f3938","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"image","value":null,"description":"<p>The image field is required., The image field must be a file of type: jpg, jpeg, bmp, png, gif., The image field must not be greater than 1024 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/imageupload","description":"<p>Processes the attachment of a image file.</p>\n","urlObject":{"path":["api","v1","imageupload"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"453b2797-4848-4385-afbf-f7a4ab0f3938"}],"id":"55788321-c783-4118-8a0b-4663c173e74f","_postman_id":"55788321-c783-4118-8a0b-4663c173e74f","description":""}],"id":"74e66fd3-b6cf-4eff-ad28-fc954b0a3207","description":"<p><code>Attachments</code> store the records about uploaded files. These are linked to different entities using an <code>Attachable</code> entity.</p>\n<p>Note: the same <code>Attachment</code> item can be used in many <code>Attachables</code> within the same <code>Team</code></p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> attachment_type</code>,<code> checksum</code>,<code> description</code>,<code> disk</code>,<code> extension</code>,<code> id</code>,<code> original_name</code>,<code> size</code>,<code> storage_path</code>,<code> team_id</code>,<code> user_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"74e66fd3-b6cf-4eff-ad28-fc954b0a3207"},{"name":"Bid Items","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_bid_items","id":"e41011d9-c009-47c9-88e1-41b9a8a11603","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_bid_items","description":"<p>Destroy multiple <code>BidItem</code> objects Items must be within the same <code>Project</code></p>\n","urlObject":{"path":["api","v1","bulk_bid_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e41011d9-c009-47c9-88e1-41b9a8a11603"}],"id":"f93ec88b-6460-44f9-a657-874b3098a7d5","_postman_id":"f93ec88b-6460-44f9-a657-874b3098a7d5","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_bid_items","id":"5d611370-232c-4c2e-87b6-8d29cc51cb0c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.bid_id","value":null,"description":"<p>The data.<em>.bid id field is required., The data.</em>.bid id field must be an integer.</p>\n","type":"text"},{"key":"data.*.budget","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.budget field must be a number., The data.</em>.budget field must be at least 0 characters., The data.*.budget field must not be greater than 999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>The data.<em>.catalog item id field is required., The data.</em>.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.bid_document","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.bid document field must be a string., The data.</em>.comment.bid document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.inspection_level","value":null,"description":"<p>(Nullable), The data.<em>.inspection level field must be a string., The data.</em>.inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>The data.<em>.item type field is required., The data.</em>.item type field must be a string., The data.<em>.item type field must not be greater than 15 characters., The selected data.</em>.item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Nullable), The data.*.line number field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>The data.<em>.quantity field is required., The data.</em>.quantity field must be a number., The data.<em>.quantity field must be at least 0 characters., The data.</em>.quantity field must not be greater than 999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.required_by_date","value":null,"description":"<p>(Nullable), The data.*.required by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.requisition_item_id","value":null,"description":"<p>(Nullable), The data.*.requisition item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.revision","value":null,"description":"<p>(Optional), (Nullable), The data.*.revision field must be an integer.</p>\n","type":"text"},{"key":"data.*.selected_offer_id","value":null,"description":"<p>(Nullable), The data.*.selected offer id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_bid_items","description":"<p>Store multiple <code>BidItem</code> objects</p>\n","urlObject":{"path":["api","v1","bulk_bid_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d611370-232c-4c2e-87b6-8d29cc51cb0c"}],"id":"f273c1d0-3aeb-4cf7-91bd-5fdbc310aa80","_postman_id":"f273c1d0-3aeb-4cf7-91bd-5fdbc310aa80","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_bid_items","id":"3e7b8e33-c54b-4e3d-b5ec-869381014d98","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.bid_id","value":null,"description":"<p>(Optional), The data.*.bid id field must be an integer.</p>\n","type":"text"},{"key":"data.*.budget","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.budget field must be a number., The data.</em>.budget field must be at least 0 characters., The data.*.budget field must not be greater than 999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>(Optional), The data.*.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Optional), (Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.bid_document","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.bid document field must be a string., The data.</em>.comment.bid document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.inspection_level","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.inspection level field must be a string., The data.</em>.inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>(Optional), The data.<em>.item type field must be a string., The data.</em>.item type field must not be greater than 15 characters., The selected data.*.item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Optional), (Nullable), The data.*.line number field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>(Optional), The data.<em>.quantity field must be a number., The data.</em>.quantity field must be at least 0 characters., The data.*.quantity field must not be greater than 999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.required_by_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.required by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.requisition item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.revision","value":null,"description":"<p>(Optional), (Nullable), The data.*.revision field must be an integer.</p>\n","type":"text"},{"key":"data.*.selected_offer_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.selected offer id field must be an integer.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_bid_items","description":"<p>Update multiple <code>BidItem</code> objects</p>\n","urlObject":{"path":["api","v1","bulk_bid_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e7b8e33-c54b-4e3d-b5ec-869381014d98"}],"id":"083b6c53-40dc-4798-90ac-845c11e2f250","_postman_id":"083b6c53-40dc-4798-90ac-845c11e2f250","description":""},{"name":"Destroy","item":[{"name":"api/v1/bid_items/{bid_item}","id":"3e2b0821-903f-4288-8616-e58c42061989","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bid_items/:bid_item","description":"<p>Remove the specified <code>BidItem</code> from storage.</p>\n","urlObject":{"path":["api","v1","bid_items",":bid_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid_item"}]}},"response":[],"_postman_id":"3e2b0821-903f-4288-8616-e58c42061989"}],"id":"2958e971-a450-483e-9bc2-6e211884990a","_postman_id":"2958e971-a450-483e-9bc2-6e211884990a","description":""},{"name":"Index","item":[{"name":"api/v1/bid_items","id":"90c5fa77-662b-4024-b6ab-778b2298a828","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bid_items","description":"<p>Returns a list of multiple <code>BidItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","bid_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"90c5fa77-662b-4024-b6ab-778b2298a828"}],"id":"6ec31732-869f-4687-a328-63f6d84cdfb0","_postman_id":"6ec31732-869f-4687-a328-63f6d84cdfb0","description":""},{"name":"Show","item":[{"name":"api/v1/bid_items/{bid_item}","id":"2846b282-54dd-4534-9c50-f5fa175a860c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bid_items/:bid_item","description":"<p>Display the specified <code>BidItem</code>.</p>\n","urlObject":{"path":["api","v1","bid_items",":bid_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid_item"}]}},"response":[],"_postman_id":"2846b282-54dd-4534-9c50-f5fa175a860c"}],"id":"cb1ce03e-381c-4b18-b7f2-f0e5929bb50e","_postman_id":"cb1ce03e-381c-4b18-b7f2-f0e5929bb50e","description":""},{"name":"Store","item":[{"name":"api/v1/bid_items","id":"1d49a2b0-1d61-4443-a2ac-79a37ba48fcb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>The bid id field is required., The bid id field must be an integer.</p>\n","type":"text"},{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.bid_document","value":null,"description":"<p>(Optional), (Nullable), The comment.bid document field must be a string., The comment.bid document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>The item type field is required., The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Nullable), The line number field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>(Optional), (Nullable), The revision field must be an integer.</p>\n","type":"text"},{"key":"selected_offer_id","value":null,"description":"<p>(Nullable), The selected offer id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bid_items","description":"<p>Create a new <code>BidItem</code> object.</p>\n","urlObject":{"path":["api","v1","bid_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d49a2b0-1d61-4443-a2ac-79a37ba48fcb"}],"id":"831e6e3b-a9c1-42c8-947d-9b0ded065a08","_postman_id":"831e6e3b-a9c1-42c8-947d-9b0ded065a08","description":""},{"name":"Update","item":[{"name":"api/v1/bid_items/{bid_item}","id":"2c1a7a9b-61d2-461e-945c-4a4847460f8d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Optional), The bid id field must be an integer.</p>\n","type":"text"},{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.bid_document","value":null,"description":"<p>(Optional), (Nullable), The comment.bid document field must be a string., The comment.bid document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Optional), (Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Optional), (Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>(Optional), (Nullable), The revision field must be an integer.</p>\n","type":"text"},{"key":"selected_offer_id","value":null,"description":"<p>(Optional), (Nullable), The selected offer id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bid_items/:bid_item","description":"<p>Update the specified <code>BidItem</code> .</p>\n","urlObject":{"path":["api","v1","bid_items",":bid_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid_item"}]}},"response":[],"_postman_id":"2c1a7a9b-61d2-461e-945c-4a4847460f8d"},{"name":"api/v1/bid_items/{bid_item}","id":"a7646cfb-f291-4482-98f1-bc5553d1b51a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Optional), The bid id field must be an integer.</p>\n","type":"text"},{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.bid_document","value":null,"description":"<p>(Optional), (Nullable), The comment.bid document field must be a string., The comment.bid document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Optional), (Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Optional), (Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>(Optional), (Nullable), The revision field must be an integer.</p>\n","type":"text"},{"key":"selected_offer_id","value":null,"description":"<p>(Optional), (Nullable), The selected offer id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bid_items/:bid_item","description":"<p>Update the specified <code>BidItem</code> .</p>\n","urlObject":{"path":["api","v1","bid_items",":bid_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid_item"}]}},"response":[],"_postman_id":"a7646cfb-f291-4482-98f1-bc5553d1b51a"}],"id":"4865d83a-e135-4b7b-b3a2-204a6a9273bb","_postman_id":"4865d83a-e135-4b7b-b3a2-204a6a9273bb","description":""}],"id":"fe08d593-3e27-411f-835d-9e20a391a37e","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> bid_id</code>,<code> budget</code>,<code> catalog_item_id</code>,<code> comment</code>,<code> inspection_level</code>,<code> item_type</code>,<code> project_id</code>,<code> requisition_item_id</code>,<code> selected_offer_id</code>,<code> status</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bid</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offerItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitionItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>selectedOffer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>selectedOfferVendor</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fe08d593-3e27-411f-835d-9e20a391a37e"},{"name":"Bids","item":[{"name":"Check Detailed Ready For Issue","item":[{"name":"api/v1/bids/{bid}/readyforissuedetailed","id":"2c34f9e9-616a-40a2-8742-257974cd6c06","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid/readyforissuedetailed","description":"<p>Checks if an Bid can be issued with detailed explanation. * @route GET /bids/{id}/readyforpurchasedetailed.</p>\n","urlObject":{"path":["api","v1","bids",":bid","readyforissuedetailed"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"2c34f9e9-616a-40a2-8742-257974cd6c06"}],"id":"793a6d50-6363-4595-9ea7-96d8a980fb53","_postman_id":"793a6d50-6363-4595-9ea7-96d8a980fb53","description":""},{"name":"Check Ready For Issue","item":[{"name":"api/v1/bids/{bid}/readyforissue","id":"19f7b398-9f32-4dbd-ab85-92d69aabb637","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid/readyforissue","description":"<p>Checks if an Bid can be issued.</p>\n","urlObject":{"path":["api","v1","bids",":bid","readyforissue"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"19f7b398-9f32-4dbd-ab85-92d69aabb637"}],"id":"ee6fca30-859f-4533-9b28-cf56f5b68a45","_postman_id":"ee6fca30-859f-4533-9b28-cf56f5b68a45","description":""},{"name":"Create Bid From Bid","item":[{"name":"api/v1/bids/createfrombid","id":"9c5c1535-8ac7-478a-b5c0-5fa7a6ce8fb4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/createfrombid","description":"<p>Create a new <code>Bid</code> based off a specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","bids","createfrombid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c5c1535-8ac7-478a-b5c0-5fa7a6ce8fb4"}],"id":"e4c3eae4-32c6-4cda-8ad0-bafbe3c26c39","_postman_id":"e4c3eae4-32c6-4cda-8ad0-bafbe3c26c39","description":""},{"name":"Create Bid From Order","item":[{"name":"api/v1/bids/createfromorder","id":"01822dec-3d49-42b2-b51d-96d0ff593449","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/createfromorder","description":"<p>Create a new Bid based off a specified Order.</p>\n","urlObject":{"path":["api","v1","bids","createfromorder"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"01822dec-3d49-42b2-b51d-96d0ff593449"}],"id":"937ed2e4-21e0-4c0f-905d-8806e36af805","_postman_id":"937ed2e4-21e0-4c0f-905d-8806e36af805","description":""},{"name":"Create Bid From Requisition","item":[{"name":"api/v1/bids/createfromrequisition","id":"32ff0625-4941-4661-b533-9eb0096f8dd4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/createfromrequisition","description":"<p>Create a new <code>Bid</code> based off a specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","bids","createfromrequisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"32ff0625-4941-4661-b533-9eb0096f8dd4"}],"id":"06507797-f613-4613-baf8-cdfca999d98e","_postman_id":"06507797-f613-4613-baf8-cdfca999d98e","description":""},{"name":"Destroy","item":[{"name":"api/v1/bids/{bid}","id":"9becab8f-a525-409c-a860-185ff77b1696","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid","description":"<p>Remove the specified <code>Bid</code> from storage.</p>\n","urlObject":{"path":["api","v1","bids",":bid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"9becab8f-a525-409c-a860-185ff77b1696"}],"id":"e2be8727-276d-44df-9999-23ba61104ee8","_postman_id":"e2be8727-276d-44df-9999-23ba61104ee8","description":""},{"name":"Fill Bid From Bid","item":[{"name":"api/v1/bids/{bidId}/fillfrombid","id":"e52c530f-ff5f-4a70-b888-bbced22e78c9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>(Optional), The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"create_offers","value":null,"description":"<p>The create offers field is required., The create offers field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"bom_options.delete_existing","value":null,"description":"<p>The bom options.delete existing field is required when import bom is empty., The bom options.delete existing field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bids/:bidId/fillfrombid","description":"<p>Update an existing <code>Bid</code> with data from a specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","bids",":bidId","fillfrombid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bidId"}]}},"response":[],"_postman_id":"e52c530f-ff5f-4a70-b888-bbced22e78c9"}],"id":"e8e806bd-be75-4318-b286-b2afcfb203d8","_postman_id":"e8e806bd-be75-4318-b286-b2afcfb203d8","description":""},{"name":"Fill Bid From Order","item":[{"name":"api/v1/bids/{bidId}/fillfromorder","id":"140a564e-4ce2-4c59-982a-11266c962e75","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>(Optional), The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"create_offers","value":null,"description":"<p>The create offers field is required., The create offers field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"bom_options.delete_existing","value":null,"description":"<p>The bom options.delete existing field is required when import bom is empty., The bom options.delete existing field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bids/:bidId/fillfromorder","description":"<p>Imports data into the specified <code>Bid</code> from a specified <code>Order</code> based on the provided configuration.</p>\n","urlObject":{"path":["api","v1","bids",":bidId","fillfromorder"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bidId"}]}},"response":[],"_postman_id":"140a564e-4ce2-4c59-982a-11266c962e75"}],"id":"3a2d2476-f4bb-4efd-bf54-818be05bf750","_postman_id":"3a2d2476-f4bb-4efd-bf54-818be05bf750","description":""},{"name":"Fill Bid From Requisition","item":[{"name":"api/v1/bids/{bidId}/fillfromrequisition","id":"ce592533-17c0-4d97-a854-f43b2612b387","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>(Optional), The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"create_offers","value":null,"description":"<p>The create offers field is required., The create offers field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"bom_options.delete_existing","value":null,"description":"<p>The bom options.delete existing field is required when import bom is empty., The bom options.delete existing field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bids/:bidId/fillfromrequisition","description":"<p>Update an existing <code>Bid</code> with data from a specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","bids",":bidId","fillfromrequisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bidId"}]}},"response":[],"_postman_id":"ce592533-17c0-4d97-a854-f43b2612b387"}],"id":"cd930e79-9dc7-4923-bdd5-59f672ac2159","_postman_id":"cd930e79-9dc7-4923-bdd5-59f672ac2159","description":""},{"name":"Generated::onpilefend8F1Weh","item":[{"name":"api/v1/bids/{bidId}/bomfromrequisition/{requisitionId}","id":"feb199a5-4ac1-48c3-a3da-555a8aee7e2e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bidId/bomfromrequisition/:requisitionId","description":"<p>Calculate a possible Bid BOM from a given requisition in the context of a project. Shows the aggregate amount of a given item that has been bid on this bid and also on the project in general.</p>\n","urlObject":{"path":["api","v1","bids",":bidId","bomfromrequisition",":requisitionId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bidId"},{"type":"any","key":"requisitionId"}]}},"response":[],"_postman_id":"feb199a5-4ac1-48c3-a3da-555a8aee7e2e"}],"id":"ddbef96d-7447-4888-8ff1-8cc564d19cdb","_postman_id":"ddbef96d-7447-4888-8ff1-8cc564d19cdb","description":""},{"name":"Generated::zccpgpu9Vkwuv8Ly","item":[{"name":"api/v1/bids/{bidId}/childrenandparentattachables","id":"985243f8-80d3-4756-98a3-7c4bf959f4d5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bidId/childrenandparentattachables","urlObject":{"path":["api","v1","bids",":bidId","childrenandparentattachables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bidId"}]}},"response":[],"_postman_id":"985243f8-80d3-4756-98a3-7c4bf959f4d5"}],"id":"5d58cb4f-6e84-432c-b251-9e47bf11dc75","_postman_id":"5d58cb4f-6e84-432c-b251-9e47bf11dc75","description":""},{"name":"Index","item":[{"name":"api/v1/bids","id":"111d5013-020a-44eb-a1b1-e765085e5fed","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids","description":"<p>Returns a list of multiple <code>Bid</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","bids"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"111d5013-020a-44eb-a1b1-e765085e5fed"}],"id":"89181f13-6701-4096-8c5f-dc1a05140d25","_postman_id":"89181f13-6701-4096-8c5f-dc1a05140d25","description":""},{"name":"Issue Bid","item":[{"name":"api/v1/bids/{bid}/issuebid","id":"ef29a35e-abe0-4e82-8386-d2b19b5f7533","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid/issuebid","description":"<p>Marks bid as issued. * @route POST /bids/{id}/issue.</p>\n","urlObject":{"path":["api","v1","bids",":bid","issuebid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"ef29a35e-abe0-4e82-8386-d2b19b5f7533"}],"id":"837d816d-35cc-4e14-8a3c-0df5032cab4c","_postman_id":"837d816d-35cc-4e14-8a3c-0df5032cab4c","description":""},{"name":"Show","item":[{"name":"api/v1/bids/{bid}","id":"c6016e00-639f-4e39-8b63-616ebe944019","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid","description":"<p>Display the specified <code>Bid</code>.</p>\n","urlObject":{"path":["api","v1","bids",":bid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"c6016e00-639f-4e39-8b63-616ebe944019"}],"id":"54f60780-09a7-4201-87c2-040c4a2ec357","_postman_id":"54f60780-09a7-4201-87c2-040c4a2ec357","description":""},{"name":"Store","item":[{"name":"api/v1/bids","id":"58115b5b-eb3e-4d30-8073-96d36bc94ae7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"awarded_offer_id","value":null,"description":"<p>(Nullable), The awarded offer id field must be an integer.</p>\n","type":"text"},{"key":"bid_description","value":null,"description":"<p>(Nullable), The bid description field must be a string., The bid description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bid_header","value":null,"description":"<p>(Nullable), The bid header field must be an array.</p>\n","type":"text"},{"key":"bid_identifier","value":null,"description":"<p>(Nullable), The bid identifier field must be a string., The bid identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"bid_title","value":null,"description":"<p>(Nullable), The bid title field must be a string., The bid title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bid_type","value":null,"description":"<p>(Nullable), The bid type field must be a string., The selected bid type is invalid, it must exist in Request for Budgetary Quotation, Request for Proposal, Request for Information, Request for Quotation, Request for Offer, Request for Tender, Request for Expression of Interest.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>The default taxes id field is required., (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Nullable), The requisition id field must be an integer.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bids","description":"<p>Create a new <code>Bid</code> object.</p>\n","urlObject":{"path":["api","v1","bids"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"58115b5b-eb3e-4d30-8073-96d36bc94ae7"}],"id":"05ec4e96-6f8e-45c2-bb54-befb7dece404","_postman_id":"05ec4e96-6f8e-45c2-bb54-befb7dece404","description":""},{"name":"Update","item":[{"name":"api/v1/bids/{bid}","id":"583714cc-779c-4725-96d4-3bdd066143a4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"awarded_offer_id","value":null,"description":"<p>(Optional), (Nullable), The awarded offer id field must be an integer.</p>\n","type":"text"},{"key":"bid_description","value":null,"description":"<p>(Optional), (Nullable), The bid description field must be a string., The bid description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bid_header","value":null,"description":"<p>(Optional), (Nullable), The bid header field must be an array.</p>\n","type":"text"},{"key":"bid_identifier","value":null,"description":"<p>(Optional), (Nullable), The bid identifier field must be a string., The bid identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"bid_title","value":null,"description":"<p>(Optional), (Nullable), The bid title field must be a string., The bid title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bid_type","value":null,"description":"<p>(Optional), (Nullable), The bid type field must be a string., The selected bid type is invalid, it must exist in Request for Budgetary Quotation, Request for Proposal, Request for Information, Request for Quotation, Request for Offer, Request for Tender, Request for Expression of Interest.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), (Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Optional), (Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Optional), (Nullable), The requisition id field must be an integer.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bids/:bid","description":"<p>Update the specified <code>Bid</code> .</p>\n","urlObject":{"path":["api","v1","bids",":bid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"583714cc-779c-4725-96d4-3bdd066143a4"},{"name":"api/v1/bids/{bid}","id":"ac505a11-96a4-4edf-bfb4-778f1d24ad39","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"awarded_offer_id","value":null,"description":"<p>(Optional), (Nullable), The awarded offer id field must be an integer.</p>\n","type":"text"},{"key":"bid_description","value":null,"description":"<p>(Optional), (Nullable), The bid description field must be a string., The bid description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bid_header","value":null,"description":"<p>(Optional), (Nullable), The bid header field must be an array.</p>\n","type":"text"},{"key":"bid_identifier","value":null,"description":"<p>(Optional), (Nullable), The bid identifier field must be a string., The bid identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"bid_title","value":null,"description":"<p>(Optional), (Nullable), The bid title field must be a string., The bid title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bid_type","value":null,"description":"<p>(Optional), (Nullable), The bid type field must be a string., The selected bid type is invalid, it must exist in Request for Budgetary Quotation, Request for Proposal, Request for Information, Request for Quotation, Request for Offer, Request for Tender, Request for Expression of Interest.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), (Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Optional), (Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Optional), (Nullable), The requisition id field must be an integer.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bids/:bid","description":"<p>Update the specified <code>Bid</code> .</p>\n","urlObject":{"path":["api","v1","bids",":bid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"ac505a11-96a4-4edf-bfb4-778f1d24ad39"}],"id":"cfc34a67-66a9-4fbf-bbce-d2c8df63de2f","_postman_id":"cfc34a67-66a9-4fbf-bbce-d2c8df63de2f","description":""},{"name":"View Bom Data","item":[{"name":"api/v1/bids/{bid}/displaybom","id":"576d65d6-a3a2-4605-a9a3-50692af7d715","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid/displaybom","description":"<p>Returns a complex data package used to render the BOM for the specified <code>Bid</code>.</p>\n","urlObject":{"path":["api","v1","bids",":bid","displaybom"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"576d65d6-a3a2-4605-a9a3-50692af7d715"}],"id":"cc836cae-19b8-4d2b-a4dd-4bd6f117bb4c","_postman_id":"cc836cae-19b8-4d2b-a4dd-4bd6f117bb4c","description":""},{"name":"View Chain","item":[{"name":"api/v1/bids/{bid}/chain","id":"df89f534-9d91-4deb-9ab5-347194cd75d8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid/chain","description":"<p>Gets the Orderable Chain of the specified <code>Bid</code>.</p>\n","urlObject":{"path":["api","v1","bids",":bid","chain"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"df89f534-9d91-4deb-9ab5-347194cd75d8"}],"id":"7cfd1aba-b7ec-4336-baa8-968b918c5838","_postman_id":"7cfd1aba-b7ec-4336-baa8-968b918c5838","description":""},{"name":"View Comparison Data","item":[{"name":"api/v1/bids/{bid}/comparison","id":"5b0565df-ecbb-4b1a-bcd8-8ac32ab0a0f3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid/comparison","description":"<p>Returns a compiled data package of Bid Comparison data. * @route GET /api/v1/bids/{bidId}/comparison.</p>\n","urlObject":{"path":["api","v1","bids",":bid","comparison"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"5b0565df-ecbb-4b1a-bcd8-8ac32ab0a0f3"}],"id":"2edbad03-70c0-4a48-ad99-1d1222df9d4e","_postman_id":"2edbad03-70c0-4a48-ad99-1d1222df9d4e","description":""},{"name":"Api/V1/Bids/{Bid}/Bomfromrequisition/{Requisition}","id":"d0b0ab5d-f284-4bc9-8d71-25acf4f680df","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bids/:bid/bomfromrequisition/:requisition","description":"<p>Calculate a possible Bid BOM from a given requisition in the context of a project. Shows the aggregate amount of a given item that has been bid on this bid and also on the project in general.</p>\n","urlObject":{"path":["api","v1","bids",":bid","bomfromrequisition",":requisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bid"},{"type":"any","key":"requisition"}]}},"response":[],"_postman_id":"d0b0ab5d-f284-4bc9-8d71-25acf4f680df"}],"id":"e09b48ce-e55d-4676-a106-acaa994819b8","description":"<p><code>Bids</code> are used to store parent level data about the Bid process.<br /><code>Bids</code> have one or many <code>BidItems</code> which are what Vendors provide offers for.</p>\n<p>A <code>Bid</code> is issued to specified proponent <code>Businesses</code> by creating <code>Offer</code> entites.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> awarded_offer_id</code>,<code> bid_description</code>,<code> bid_header</code>,<code> bid_identifier</code>,<code> bid_title</code>,<code> bid_type</code>,<code> buyer_user_id</code>,<code> currency_code</code>,<code> id</code>,<code> incoterm_id</code>,<code> manager_user_id</code>,<code> metadata</code>,<code> paymentterm_id</code>,<code> project_id</code>,<code> project_team_user_id</code>,<code> requisition_id</code>,<code> responsible_engineer_user_id</code>,<code> status</code>,<code> team_id</code>,<code> validation_graph_uuid</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bidItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientSuppliedItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>defaultTax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>drawings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dueDate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>evaluations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>feedThroughItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>incoTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>managerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>openTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>overdueTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTeamRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specifications</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userDefinedFieldValues</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusinesses</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusinessesList</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorSuppliedItems</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>chain_dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project_access</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user_permissions</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e09b48ce-e55d-4676-a106-acaa994819b8"},{"name":"Bill Of Material Items","item":[{"name":"Destroy","item":[{"name":"api/v1/bill_of_material_items/{bill_of_material_item}","id":"0c8cc3c2-c673-48f8-a0b4-7ec846dbc9e1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_material_items/:bill_of_material_item","description":"<p>Remove the specified <code>BillOfMaterialItem</code> from storage.</p>\n","urlObject":{"path":["api","v1","bill_of_material_items",":bill_of_material_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material_item"}]}},"response":[],"_postman_id":"0c8cc3c2-c673-48f8-a0b4-7ec846dbc9e1"}],"id":"5889de94-3248-4070-97f2-91a52b0add6b","_postman_id":"5889de94-3248-4070-97f2-91a52b0add6b","description":""},{"name":"Index","item":[{"name":"api/v1/bill_of_material_items","id":"31ce7883-7b1b-4aee-b162-e456021d6424","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_material_items","description":"<p>Returns a list of multiple <code>BillOfMaterialItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","bill_of_material_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"31ce7883-7b1b-4aee-b162-e456021d6424"}],"id":"3de4570c-237a-41f2-bcbb-b82bf1b2eb70","_postman_id":"3de4570c-237a-41f2-bcbb-b82bf1b2eb70","description":""},{"name":"Show","item":[{"name":"api/v1/bill_of_material_items/{bill_of_material_item}","id":"61ff2c10-0531-4f30-b212-d443d7e6599c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_material_items/:bill_of_material_item","description":"<p>Display the specified <code>BillOfMaterialItem</code>.</p>\n","urlObject":{"path":["api","v1","bill_of_material_items",":bill_of_material_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material_item"}]}},"response":[],"_postman_id":"61ff2c10-0531-4f30-b212-d443d7e6599c"}],"id":"635ee2ba-7133-40f7-8ab5-0c0357370c97","_postman_id":"635ee2ba-7133-40f7-8ab5-0c0357370c97","description":""},{"name":"Store","item":[{"name":"api/v1/bill_of_material_items","id":"204218ad-79de-439a-a12c-fa670febc73f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attribute_1","value":null,"description":"<p>(Nullable), The attribute 1 field must be a string., The attribute 1 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_1_key","value":null,"description":"<p>(Nullable), The attribute 1 key field must be a string., The attribute 1 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_2","value":null,"description":"<p>(Nullable), The attribute 2 field must be a string., The attribute 2 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_2_key","value":null,"description":"<p>(Nullable), The attribute 2 key field must be a string., The attribute 2 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_3","value":null,"description":"<p>(Nullable), The attribute 3 field must be a string., The attribute 3 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_3_key","value":null,"description":"<p>(Nullable), The attribute 3 key field must be a string., The attribute 3 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_4","value":null,"description":"<p>(Nullable), The attribute 4 field must be a string., The attribute 4 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_4_key","value":null,"description":"<p>(Nullable), The attribute 4 key field must be a string., The attribute 4 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_5","value":null,"description":"<p>(Nullable), The attribute 5 field must be a string., The attribute 5 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_5_key","value":null,"description":"<p>(Nullable), The attribute 5 key field must be a string., The attribute 5 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bill_of_material_id","value":null,"description":"<p>The bill of material id field is required., The bill of material id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Nullable), The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"component_identifier","value":null,"description":"<p>(Nullable), The component identifier field must be a string., The component identifier field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"cost_code","value":null,"description":"<p>(Nullable), The cost code field must be a string., The cost code field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>The description field is required., The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_1_key","value":null,"description":"<p>(Nullable), The grouping 1 key field must be a string., The grouping 1 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_1","value":null,"description":"<p>(Nullable), The grouping 1 field must be a string., The grouping 1 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_2_key","value":null,"description":"<p>(Nullable), The grouping 2 key field must be a string., The grouping 2 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_2","value":null,"description":"<p>(Nullable), The grouping 2 field must be a string., The grouping 2 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_3_key","value":null,"description":"<p>(Nullable), The grouping 3 key field must be a string., The grouping 3 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_3","value":null,"description":"<p>(Nullable), The grouping 3 field must be a string., The grouping 3 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_4_key","value":null,"description":"<p>(Nullable), The grouping 4 key field must be a string., The grouping 4 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_4","value":null,"description":"<p>(Nullable), The grouping 4 field must be a string., The grouping 4 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_5_key","value":null,"description":"<p>(Nullable), The grouping 5 key field must be a string., The grouping 5 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_5","value":null,"description":"<p>(Nullable), The grouping 5 field must be a string., The grouping 5 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"import_catalog_id","value":null,"description":"<p>The import catalog id field is required., The import catalog id field must be a string., The import catalog id field must not be greater than 63 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>The item type field is required., The item type field must be a string., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item, sales_item, customer_provided, internal_supplied, pass_on.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number., The quantity field must be at least -99999999.9999., The quantity field must not be greater than 99999999.9999.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>(Nullable), The revision field must be an integer., The revision field must be at least 0., The revision field must not be greater than 100.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Nullable), The status field must be a string., The status field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"unit_of_measure","value":null,"description":"<p>The unit of measure field is required., The selected unit of measure must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"usage_notes","value":null,"description":"<p>(Optional), (Nullable), The usage notes field must be a string., The usage notes field must not be greater than 500 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bill_of_material_items","description":"<p>Create a new <code>BillOfMaterialItem</code> object.</p>\n","urlObject":{"path":["api","v1","bill_of_material_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"204218ad-79de-439a-a12c-fa670febc73f"}],"id":"caf9e877-b23f-494e-9978-eb766a4906a6","_postman_id":"caf9e877-b23f-494e-9978-eb766a4906a6","description":""},{"name":"Update","item":[{"name":"api/v1/bill_of_material_items/{bill_of_material_item}","id":"326ace43-34a8-4b34-962c-04707062ae1c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attribute_1","value":null,"description":"<p>(Optional), (Nullable), The attribute 1 field must be a string., The attribute 1 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_1_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 1 key field must be a string., The attribute 1 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_2","value":null,"description":"<p>(Optional), (Nullable), The attribute 2 field must be a string., The attribute 2 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_2_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 2 key field must be a string., The attribute 2 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_3","value":null,"description":"<p>(Optional), (Nullable), The attribute 3 field must be a string., The attribute 3 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_3_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 3 key field must be a string., The attribute 3 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_4","value":null,"description":"<p>(Optional), (Nullable), The attribute 4 field must be a string., The attribute 4 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_4_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 4 key field must be a string., The attribute 4 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_5","value":null,"description":"<p>(Optional), (Nullable), The attribute 5 field must be a string., The attribute 5 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_5_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 5 key field must be a string., The attribute 5 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bill_of_material_id","value":null,"description":"<p>(Optional), The bill of material id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), (Nullable), The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"component_identifier","value":null,"description":"<p>(Optional), (Nullable), The component identifier field must be a string., The component identifier field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"cost_code","value":null,"description":"<p>(Optional), (Nullable), The cost code field must be a string., The cost code field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"usage_notes","value":null,"description":"<p>(Optional), (Nullable), The usage notes field must be a string., The usage notes field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"grouping_1_key","value":null,"description":"<p>(Nullable), The grouping 1 key field must be a string., The grouping 1 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_1","value":null,"description":"<p>(Optional), (Nullable), The grouping 1 field must be a string., The grouping 1 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_2_key","value":null,"description":"<p>(Nullable), The grouping 2 key field must be a string., The grouping 2 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_2","value":null,"description":"<p>(Optional), (Nullable), The grouping 2 field must be a string., The grouping 2 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_3_key","value":null,"description":"<p>(Nullable), The grouping 3 key field must be a string., The grouping 3 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_3","value":null,"description":"<p>(Optional), (Nullable), The grouping 3 field must be a string., The grouping 3 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_4_key","value":null,"description":"<p>(Nullable), The grouping 4 key field must be a string., The grouping 4 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_4","value":null,"description":"<p>(Optional), (Nullable), The grouping 4 field must be a string., The grouping 4 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_5_key","value":null,"description":"<p>(Nullable), The grouping 5 key field must be a string., The grouping 5 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_5","value":null,"description":"<p>(Optional), (Nullable), The grouping 5 field must be a string., The grouping 5 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"import_catalog_id","value":null,"description":"<p>(Optional), The import catalog id field must be a string., The import catalog id field must not be greater than 63 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item, sales_item, customer_provided, internal_supplied, pass_on.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least -99999999.9999., The quantity field must not be greater than 99999999.9999.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>(Optional), (Nullable), The revision field must be an integer., The revision field must be at least 0., The revision field must not be greater than 100.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), (Nullable), The status field must be a string., The status field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"unit_of_measure","value":null,"description":"<p>The unit of measure field is required., The selected unit of measure must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bill_of_material_items/:bill_of_material_item","description":"<p>Update the specified <code>BillOfMaterialItem</code> .</p>\n","urlObject":{"path":["api","v1","bill_of_material_items",":bill_of_material_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material_item"}]}},"response":[],"_postman_id":"326ace43-34a8-4b34-962c-04707062ae1c"},{"name":"api/v1/bill_of_material_items/{bill_of_material_item}","id":"a84e8b9e-48f7-4e27-ac19-6cbc9d8297a8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attribute_1","value":null,"description":"<p>(Optional), (Nullable), The attribute 1 field must be a string., The attribute 1 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_1_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 1 key field must be a string., The attribute 1 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_2","value":null,"description":"<p>(Optional), (Nullable), The attribute 2 field must be a string., The attribute 2 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_2_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 2 key field must be a string., The attribute 2 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_3","value":null,"description":"<p>(Optional), (Nullable), The attribute 3 field must be a string., The attribute 3 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_3_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 3 key field must be a string., The attribute 3 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_4","value":null,"description":"<p>(Optional), (Nullable), The attribute 4 field must be a string., The attribute 4 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_4_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 4 key field must be a string., The attribute 4 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_5","value":null,"description":"<p>(Optional), (Nullable), The attribute 5 field must be a string., The attribute 5 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attribute_5_key","value":null,"description":"<p>(Optional), (Nullable), The attribute 5 key field must be a string., The attribute 5 key field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"bill_of_material_id","value":null,"description":"<p>(Optional), The bill of material id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), (Nullable), The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"component_identifier","value":null,"description":"<p>(Optional), (Nullable), The component identifier field must be a string., The component identifier field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"cost_code","value":null,"description":"<p>(Optional), (Nullable), The cost code field must be a string., The cost code field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"usage_notes","value":null,"description":"<p>(Optional), (Nullable), The usage notes field must be a string., The usage notes field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"grouping_1_key","value":null,"description":"<p>(Nullable), The grouping 1 key field must be a string., The grouping 1 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_1","value":null,"description":"<p>(Optional), (Nullable), The grouping 1 field must be a string., The grouping 1 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_2_key","value":null,"description":"<p>(Nullable), The grouping 2 key field must be a string., The grouping 2 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_2","value":null,"description":"<p>(Optional), (Nullable), The grouping 2 field must be a string., The grouping 2 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_3_key","value":null,"description":"<p>(Nullable), The grouping 3 key field must be a string., The grouping 3 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_3","value":null,"description":"<p>(Optional), (Nullable), The grouping 3 field must be a string., The grouping 3 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_4_key","value":null,"description":"<p>(Nullable), The grouping 4 key field must be a string., The grouping 4 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_4","value":null,"description":"<p>(Optional), (Nullable), The grouping 4 field must be a string., The grouping 4 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"grouping_5_key","value":null,"description":"<p>(Nullable), The grouping 5 key field must be a string., The grouping 5 key field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"grouping_5","value":null,"description":"<p>(Optional), (Nullable), The grouping 5 field must be a string., The grouping 5 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"import_catalog_id","value":null,"description":"<p>(Optional), The import catalog id field must be a string., The import catalog id field must not be greater than 63 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item, sales_item, customer_provided, internal_supplied, pass_on.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least -99999999.9999., The quantity field must not be greater than 99999999.9999.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>(Optional), (Nullable), The revision field must be an integer., The revision field must be at least 0., The revision field must not be greater than 100.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), (Nullable), The status field must be a string., The status field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"unit_of_measure","value":null,"description":"<p>The unit of measure field is required., The selected unit of measure must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bill_of_material_items/:bill_of_material_item","description":"<p>Update the specified <code>BillOfMaterialItem</code> .</p>\n","urlObject":{"path":["api","v1","bill_of_material_items",":bill_of_material_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material_item"}]}},"response":[],"_postman_id":"a84e8b9e-48f7-4e27-ac19-6cbc9d8297a8"}],"id":"03aaa5d2-3b0a-4271-a182-cdef8dcea0a2","_postman_id":"03aaa5d2-3b0a-4271-a182-cdef8dcea0a2","description":""}],"id":"5d219305-e86f-43b8-9c6e-d6ddca64d8cd","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> attribute_1</code>,<code> attribute_1_key</code>,<code> attribute_2</code>,<code> attribute_2_key</code>,<code> attribute_3</code>,<code> attribute_3_key</code>,<code> attribute_4</code>,<code> attribute_4_key</code>,<code> attribute_5</code>,<code> attribute_5_key</code>,<code> bill_of_material_id</code>,<code> catalog_item_id</code>,<code> component_identifier</code>,<code> cost_code</code>,<code> description</code>,<code> grouping_1</code>,<code> grouping_2</code>,<code> grouping_3</code>,<code> grouping_4</code>,<code> grouping_5</code>,<code> import_catalog_id</code>,<code> quantity</code>,<code> status</code>,<code> team_id</code>,<code> unit_of_measure</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>billOfMaterial</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogImportSource</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5d219305-e86f-43b8-9c6e-d6ddca64d8cd"},{"name":"Bill Of Materials","item":[{"name":"Create Groupings","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/groupings/create","id":"d1627fed-34d2-4468-9cc1-794819ea605e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/groupings/create","description":"<p>Create groupings for an existing BOM.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","groupings","create"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"d1627fed-34d2-4468-9cc1-794819ea605e"}],"id":"1ce7c318-1a6a-4b6d-96d5-58a4cb27e0bd","_postman_id":"1ce7c318-1a6a-4b6d-96d5-58a4cb27e0bd","description":""},{"name":"Create Tags","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/tags/create","id":"449869c7-7940-4386-ba37-55b7e60ddf2e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/tags/create","description":"<p>Create tags for an existing BOM.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","tags","create"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"449869c7-7940-4386-ba37-55b7e60ddf2e"}],"id":"06611ebd-702e-47cb-b8d7-ea51ea5927bd","_postman_id":"06611ebd-702e-47cb-b8d7-ea51ea5927bd","description":""},{"name":"Destroy","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}","id":"55dfe1df-d5b2-435b-95a3-b7192654639b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material","description":"<p>Remove the specified <code>BillOfMaterial</code> from storage.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"55dfe1df-d5b2-435b-95a3-b7192654639b"}],"id":"8d405660-bec1-4c19-9801-fb0ceaac1838","_postman_id":"8d405660-bec1-4c19-9801-fb0ceaac1838","description":""},{"name":"Disable","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/disable","id":"a6d1a7a0-611c-4680-b82f-a6a5b98c82fa","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/disable","description":"<p>Disables the <code>BillOfMaterial</code> from the current data set for the <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","disable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"a6d1a7a0-611c-4680-b82f-a6a5b98c82fa"}],"id":"140d48dc-082e-46a0-bcc1-0e4f984a4ded","_postman_id":"140d48dc-082e-46a0-bcc1-0e4f984a4ded","description":""},{"name":"Enable","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/enable","id":"81bab7b4-304e-4f92-b3a2-065a8979cbef","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/enable","description":"<p>Set specific BOM as the active Project Data Set and Disable Other Versions from Source.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","enable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"81bab7b4-304e-4f92-b3a2-065a8979cbef"}],"id":"c790c080-4a48-4e7b-96d4-721b30746a2e","_postman_id":"c790c080-4a48-4e7b-96d4-721b30746a2e","description":""},{"name":"Enable Many","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/enablemany","id":"4e661083-7f76-4075-bcf6-751d95ac68de","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/enablemany","description":"<p>Set specific BOM as the active Project Data Set and Disable Other Versions from Source.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","enablemany"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"4e661083-7f76-4075-bcf6-751d95ac68de"}],"id":"426f8fce-63f6-498f-a32a-26de1418cc6e","_postman_id":"426f8fce-63f6-498f-a32a-26de1418cc6e","description":""},{"name":"From Bid","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/from/bid/{bid}","id":"7ba03349-e87f-4647-996e-89e56a12eea2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/from/bid/:bid","description":"<p>Prepares a bill of material listing in comparison to a <code>Bid</code> and its <code>Projects</code> <code>BillOfMaterial</code>.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","from","bid",":bid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"},{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"7ba03349-e87f-4647-996e-89e56a12eea2"}],"id":"7ee3c6b8-a2a8-40af-9666-7f78b2076a1d","_postman_id":"7ee3c6b8-a2a8-40af-9666-7f78b2076a1d","description":""},{"name":"From Bid Detailed","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/from/bid/detailed","id":"6a2d0358-f52e-47b3-addb-174571cecf63","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/from/bid/detailed","description":"<p>Prepares a bill of material listing in comparison to the <code>Projects</code> total <code>Bid</code> Quantities.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","from","bid","detailed"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"6a2d0358-f52e-47b3-addb-174571cecf63"}],"id":"92335cde-0caf-400b-b9dc-9fc198aa7835","_postman_id":"92335cde-0caf-400b-b9dc-9fc198aa7835","description":""},{"name":"From Order","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/from/order/{order}","id":"0966b028-b323-41e4-960c-0596347cdd47","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/from/order/:order","description":"<p>Prepares a bill of material listing in comparison to a <code>Order</code> and its <code>Projects</code> <code>BillOfMaterial</code>.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","from","order",":order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"},{"type":"any","key":"order"}]}},"response":[],"_postman_id":"0966b028-b323-41e4-960c-0596347cdd47"}],"id":"e8eb2c9e-4a21-44fd-8b2e-4b46aa0c6acb","_postman_id":"e8eb2c9e-4a21-44fd-8b2e-4b46aa0c6acb","description":""},{"name":"From Order Detailed","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/from/order/detailed","id":"d020cb45-3e37-452e-ba28-43c2dc0b2f40","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/from/order/detailed","description":"<p>Prepares a bill of material listing in comparison to the <code>Projects</code> total <code>Order</code> Quantities.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","from","order","detailed"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"d020cb45-3e37-452e-ba28-43c2dc0b2f40"}],"id":"01c034e9-d7c8-4a58-8c79-a56296b17c7b","_postman_id":"01c034e9-d7c8-4a58-8c79-a56296b17c7b","description":""},{"name":"From Requisition","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/from/requisition/{requisition}","id":"c0b2dcac-05ad-4ea6-93f6-d327c7391378","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/from/requisition/:requisition","description":"<p>Prepares a rolled up bill of material listing in comparison to a <code>Requisition</code> and its <code>Projects</code> <code>BillOfMaterial</code>.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","from","requisition",":requisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"},{"type":"any","key":"requisition"}]}},"response":[],"_postman_id":"c0b2dcac-05ad-4ea6-93f6-d327c7391378"}],"id":"bfd79683-931f-423a-a6b8-f032d48e70a9","_postman_id":"bfd79683-931f-423a-a6b8-f032d48e70a9","description":""},{"name":"From Requisition Detailed","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/from/requisition/detailed","id":"aa24e5ed-a999-4dce-8e4e-9ab6a59eb327","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/from/requisition/detailed","description":"<p>Prepares a bill of material listing in comparison to the <code>Projects</code> total Requisition Quantities.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","from","requisition","detailed"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"aa24e5ed-a999-4dce-8e4e-9ab6a59eb327"}],"id":"afc74a99-be9c-4a2b-bae6-6757b7bdcd7b","_postman_id":"afc74a99-be9c-4a2b-bae6-6757b7bdcd7b","description":""},{"name":"Index","item":[{"name":"api/v1/bill_of_materials","id":"9c29490b-b66d-4f58-a1c8-fc828cdca812","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials","description":"<p>Returns a list of multiple <code>BillOfMaterial</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","bill_of_materials"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c29490b-b66d-4f58-a1c8-fc828cdca812"}],"id":"c4a125ce-442b-4aeb-bc6e-fc5c0022d1e2","_postman_id":"c4a125ce-442b-4aeb-bc6e-fc5c0022d1e2","description":""},{"name":"Map Groupings","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/groupings/map","id":"bdecc626-c6c1-4097-abdd-f22bdb47eedb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/groupings/map","description":"<p>Attach groupings for an existing BOM.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","groupings","map"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"bdecc626-c6c1-4097-abdd-f22bdb47eedb"}],"id":"29ae5a75-019d-410a-be26-a4b85e7915d2","_postman_id":"29ae5a75-019d-410a-be26-a4b85e7915d2","description":""},{"name":"Map Tags","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/tags/map","id":"5670f3b5-bc80-4ba2-b19e-8a3ab2c7bf4d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/tags/map","description":"<p>Attach tags for an existing BOM.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","tags","map"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"5670f3b5-bc80-4ba2-b19e-8a3ab2c7bf4d"}],"id":"bb584f31-b0ef-4a2d-9255-b7ad32065f35","_postman_id":"bb584f31-b0ef-4a2d-9255-b7ad32065f35","description":""},{"name":"Preview Groupings","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/groupings/preview","id":"ff38bd24-d6a6-4561-bad7-441dc3d8a87c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/groupings/preview","description":"<p>Preview imported groupings.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","groupings","preview"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"ff38bd24-d6a6-4561-bad7-441dc3d8a87c"}],"id":"26bcd34b-35a9-42e9-adae-3588f09505a9","_postman_id":"26bcd34b-35a9-42e9-adae-3588f09505a9","description":""},{"name":"Preview Tags","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}/tags/preview","id":"6b42adbd-e6bb-4612-a6a9-1957eb265fa2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material/tags/preview","description":"<p>Preview tagging activities.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material","tags","preview"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"6b42adbd-e6bb-4612-a6a9-1957eb265fa2"}],"id":"32e0c16a-9596-4534-86a8-ffe62c776bf2","_postman_id":"32e0c16a-9596-4534-86a8-ffe62c776bf2","description":""},{"name":"Show","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}","id":"3bf9ca9b-e188-4d39-9422-5ecdf561797b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material","description":"<p>Display the specified <code>BillOfMaterial</code>.</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"3bf9ca9b-e188-4d39-9422-5ecdf561797b"}],"id":"d653435b-e5c5-4863-80ef-1969597793f0","_postman_id":"d653435b-e5c5-4863-80ef-1969597793f0","description":""},{"name":"Store","item":[{"name":"api/v1/bill_of_materials","id":"79bbe635-a29f-4602-aee8-b715f8592899","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_import_source_id","value":null,"description":"<p>The catalog import source id field is required., The catalog import source id field must be an integer., The catalog import source id field must be at least 0., The catalog import source id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"current_revision","value":null,"description":"<p>(Nullable), The current revision field must be true or false.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field must be a string., The selected status is invalid, it must exist in draft, Partially Mapped, Mapped.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bill_of_materials","description":"<p>Create a new <code>BillOfMaterial</code> object.</p>\n","urlObject":{"path":["api","v1","bill_of_materials"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"79bbe635-a29f-4602-aee8-b715f8592899"}],"id":"878e122a-f266-4429-9a26-198b11c097d0","_postman_id":"878e122a-f266-4429-9a26-198b11c097d0","description":""},{"name":"Update","item":[{"name":"api/v1/bill_of_materials/{bill_of_material}","id":"a14d58d0-5f08-4f85-bb84-ebf11d2be54e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_import_source_id","value":null,"description":"<p>(Optional), The catalog import source id field must be an integer., The catalog import source id field must be at least 0., The catalog import source id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"current_revision","value":null,"description":"<p>(Optional), (Nullable), The current revision field must be true or false.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The selected status is invalid, it must exist in draft, Partially Mapped, Mapped.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material","description":"<p>Update the specified <code>BillOfMaterial</code> .</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"a14d58d0-5f08-4f85-bb84-ebf11d2be54e"},{"name":"api/v1/bill_of_materials/{bill_of_material}","id":"0bf2b693-f1f0-4c26-98e6-0b8e4c262bd5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_import_source_id","value":null,"description":"<p>(Optional), The catalog import source id field must be an integer., The catalog import source id field must be at least 0., The catalog import source id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"current_revision","value":null,"description":"<p>(Optional), (Nullable), The current revision field must be true or false.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The selected status is invalid, it must exist in draft, Partially Mapped, Mapped.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bill_of_materials/:bill_of_material","description":"<p>Update the specified <code>BillOfMaterial</code> .</p>\n","urlObject":{"path":["api","v1","bill_of_materials",":bill_of_material"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"bill_of_material"}]}},"response":[],"_postman_id":"0bf2b693-f1f0-4c26-98e6-0b8e4c262bd5"}],"id":"2b7fc4a7-4bc2-4be7-8739-e47c3c2cf4e4","_postman_id":"2b7fc4a7-4bc2-4be7-8739-e47c3c2cf4e4","description":""}],"id":"25ef584c-0d85-4506-81d2-206568cd4e36","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_import_source_id</code>,<code> current_revision</code>,<code> description</code>,<code> project_id</code>,<code> status</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>bomItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogImportSource</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"25ef584c-0d85-4506-81d2-206568cd4e36"},{"name":"Bulk Shipping Allocations","item":[{"name":"Generated::islt6W0Fppsrjwfw","item":[{"name":"api/v1/bulk_shipping_allocations/receive","id":"07c7ead8-6f6a-4d22-9ed7-6ff91180f2ab","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"shipping_allocations","value":null,"description":"<p>The shipping allocations field is required., The shipping allocations field must be an array.</p>\n","type":"text"},{"key":"shipping_allocations.*.allocation_id","value":null,"description":"<p>The shipping allocations.<em>.allocation id field is required., The shipping allocations.</em>.allocation id field must be an integer.</p>\n","type":"text"},{"key":"shipping_allocations.*.ship_group_id","value":null,"description":"<p>The shipping allocations.<em>.ship group id field is required., The shipping allocations.</em>.ship group id field must be an integer.</p>\n","type":"text"},{"key":"shipping_allocations.*.quantity_received","value":null,"description":"<p>The shipping allocations.<em>.quantity received field is required., The shipping allocations.</em>.quantity received field must be a number., The shipping allocations.*.quantity received field must be at least 0.0001 characters.</p>\n","type":"text"},{"key":"receive_date","value":null,"description":"<p>The receive date field is required., The receive date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_shipping_allocations/receive","description":"<p>Receive multiple <code>ShippingAllocation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_shipping_allocations","receive"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"07c7ead8-6f6a-4d22-9ed7-6ff91180f2ab"}],"id":"53276efe-8f00-4598-98bc-3e33fbe8ec02","_postman_id":"53276efe-8f00-4598-98bc-3e33fbe8ec02","description":""},{"name":"Api/V1/Bulk Shipping Allocations/Release","id":"1cdb6f53-c35e-4344-b81c-9fed30de9b67","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"shipping_allocations","value":null,"description":"<p>The shipping allocations field is required., The shipping allocations field must be an array.</p>\n","type":"text"},{"key":"shipping_allocations.*.allocation_id","value":null,"description":"<p>The shipping allocations.<em>.allocation id field is required., The shipping allocations.</em>.allocation id field must be an integer.</p>\n","type":"text"},{"key":"shipping_allocations.*.ship_group_id","value":null,"description":"<p>The shipping allocations.<em>.ship group id field is required., The shipping allocations.</em>.ship group id field must be an integer.</p>\n","type":"text"},{"key":"shipping_allocations.*.quantity_released","value":null,"description":"<p>The shipping allocations.<em>.quantity released field is required., The shipping allocations.</em>.quantity released field must be a number., The shipping allocations.*.quantity released field must be at least 0.0001 characters.</p>\n","type":"text"},{"key":"release_date","value":null,"description":"<p>The release date field is required., The release date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_shipping_allocations/release","description":"<p>Release multiple <code>ShippingAllocation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_shipping_allocations","release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1cdb6f53-c35e-4344-b81c-9fed30de9b67"}],"id":"f6a7484e-f2db-4398-a1c7-565f46d9d4db","_postman_id":"f6a7484e-f2db-4398-a1c7-565f46d9d4db","description":""},{"name":"Business Diversity Types","item":[{"name":"Destroy","item":[{"name":"api/v1/business_diversity_types/{business_diversity_type}","id":"89917e9b-6438-4ef8-baba-52ba1cb99bae","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_diversity_types/:business_diversity_type","description":"<p>Remove the specified Business Diversity Type from storage.</p>\n","urlObject":{"path":["api","v1","business_diversity_types",":business_diversity_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_diversity_type"}]}},"response":[],"_postman_id":"89917e9b-6438-4ef8-baba-52ba1cb99bae"}],"id":"e06073f0-1fa3-4c34-9f8d-be234704848b","_postman_id":"e06073f0-1fa3-4c34-9f8d-be234704848b","description":""},{"name":"Index","item":[{"name":"api/v1/business_diversity_types","id":"1d04a5ba-d53f-4577-98f8-4e28a14926fd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_diversity_types","description":"<p>Returns a list of multiple Business Diversity Type objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","business_diversity_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d04a5ba-d53f-4577-98f8-4e28a14926fd"}],"id":"a7aba7da-547d-4301-ad87-a6ba02954ada","_postman_id":"a7aba7da-547d-4301-ad87-a6ba02954ada","description":""},{"name":"Show","item":[{"name":"api/v1/business_diversity_types/{business_diversity_type}","id":"d3776ca8-c96d-49a6-87f9-8c43c40681f0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_diversity_types/:business_diversity_type","description":"<p>Display the specified Business Diversity Type.</p>\n","urlObject":{"path":["api","v1","business_diversity_types",":business_diversity_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_diversity_type"}]}},"response":[],"_postman_id":"d3776ca8-c96d-49a6-87f9-8c43c40681f0"}],"id":"9ec32a66-84b4-4d60-ab6f-c9b082888258","_postman_id":"9ec32a66-84b4-4d60-ab6f-c9b082888258","description":""},{"name":"Store","item":[{"name":"api/v1/business_diversity_types","id":"6d808e77-61d5-4dd4-ad4c-a4b4e8ec8432","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"diversity_type_id","value":null,"description":"<p>The diversity type id field is required., The diversity type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_diversity_types","description":"<p>Create a new <code>Business</code> object.</p>\n","urlObject":{"path":["api","v1","business_diversity_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d808e77-61d5-4dd4-ad4c-a4b4e8ec8432"}],"id":"b3e13f5f-a2c4-41c4-be63-a31233166371","_postman_id":"b3e13f5f-a2c4-41c4-be63-a31233166371","description":""},{"name":"Update","item":[{"name":"api/v1/business_diversity_types/{business_diversity_type}","id":"142e7efd-a348-4040-9bea-6160359203d6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"diversity_type_id","value":null,"description":"<p>The diversity type id field is required., The diversity type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_diversity_types/:business_diversity_type","description":"<p>Update the specified Business Diversity Type .</p>\n","urlObject":{"path":["api","v1","business_diversity_types",":business_diversity_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_diversity_type"}]}},"response":[],"_postman_id":"142e7efd-a348-4040-9bea-6160359203d6"},{"name":"api/v1/business_diversity_types/{business_diversity_type}","id":"8238dcf6-0713-4f23-9d31-d60f70132f8d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"diversity_type_id","value":null,"description":"<p>The diversity type id field is required., The diversity type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_diversity_types/:business_diversity_type","description":"<p>Update the specified Business Diversity Type .</p>\n","urlObject":{"path":["api","v1","business_diversity_types",":business_diversity_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_diversity_type"}]}},"response":[],"_postman_id":"8238dcf6-0713-4f23-9d31-d60f70132f8d"}],"id":"ad030723-b579-49da-bf46-63ee9bd4fe03","_postman_id":"ad030723-b579-49da-bf46-63ee9bd4fe03","description":""}],"id":"0136d597-a962-4d09-86e5-5ca27728c9df","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_id</code>,<code> diversity_type_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>diversityType</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0136d597-a962-4d09-86e5-5ca27728c9df"},{"name":"Business Evaluations","item":[{"name":"Destroy","item":[{"name":"api/v1/business_evaluations/{business_evaluation}","id":"955b0317-e0d9-4438-be16-1496ffc6ae1d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_evaluations/:business_evaluation","description":"<p>Remove the specified <code>BusinessEvaluation</code> from storage.</p>\n","urlObject":{"path":["api","v1","business_evaluations",":business_evaluation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_evaluation"}]}},"response":[],"_postman_id":"955b0317-e0d9-4438-be16-1496ffc6ae1d"}],"id":"48006e21-f34b-43fd-9841-6a1b9e0a66f5","_postman_id":"48006e21-f34b-43fd-9841-6a1b9e0a66f5","description":""},{"name":"Index","item":[{"name":"api/v1/business_evaluations","id":"5cca49ee-76f9-4e20-8900-0ff59f9119c0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_evaluations","description":"<p>Returns a list of multiple <code>BusinessEvaluation</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","business_evaluations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cca49ee-76f9-4e20-8900-0ff59f9119c0"}],"id":"29e42520-c00c-410a-8022-d54945637075","_postman_id":"29e42520-c00c-410a-8022-d54945637075","description":""},{"name":"Show","item":[{"name":"api/v1/business_evaluations/{business_evaluation}","id":"37503bf9-a078-4505-959e-406841b6215f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_evaluations/:business_evaluation","description":"<p>Display the specified <code>BusinessEvaluation</code>.</p>\n","urlObject":{"path":["api","v1","business_evaluations",":business_evaluation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_evaluation"}]}},"response":[],"_postman_id":"37503bf9-a078-4505-959e-406841b6215f"}],"id":"0b958d1a-dc7e-4771-8cd5-8577df72e847","_postman_id":"0b958d1a-dc7e-4771-8cd5-8577df72e847","description":""},{"name":"Store","item":[{"name":"api/v1/business_evaluations","id":"bbdbe82b-1d0d-4f9a-b239-22f1b7508f2f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"result","value":null,"description":"<p>(Optional), (Nullable), The result field must be a string., The result field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"start_date","value":null,"description":"<p>(Nullable), The start date field must be a valid date.</p>\n","type":"text"},{"key":"end_date","value":null,"description":"<p>(Nullable), The end date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_evaluations","description":"<p>Create a new <code>BusinessEvaluation</code> object.</p>\n","urlObject":{"path":["api","v1","business_evaluations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbdbe82b-1d0d-4f9a-b239-22f1b7508f2f"}],"id":"b268ccfb-a81d-4e6c-8b12-4905cd5935a3","_postman_id":"b268ccfb-a81d-4e6c-8b12-4905cd5935a3","description":""},{"name":"Update","item":[{"name":"api/v1/business_evaluations/{business_evaluation}","id":"491d0554-d512-4d7f-bdfb-0b0835b252fd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"result","value":null,"description":"<p>(Optional), (Nullable), The result field must be a string., The result field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"start_date","value":null,"description":"<p>(Optional), (Nullable), The start date field must be a valid date.</p>\n","type":"text"},{"key":"end_date","value":null,"description":"<p>(Optional), (Nullable), The end date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_evaluations/:business_evaluation","description":"<p>Update the specified <code>BusinessEvaluation</code> .</p>\n","urlObject":{"path":["api","v1","business_evaluations",":business_evaluation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_evaluation"}]}},"response":[],"_postman_id":"491d0554-d512-4d7f-bdfb-0b0835b252fd"},{"name":"api/v1/business_evaluations/{business_evaluation}","id":"979d2415-6e75-4e83-af1e-18e79e1d6d9b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"result","value":null,"description":"<p>(Optional), (Nullable), The result field must be a string., The result field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"start_date","value":null,"description":"<p>(Optional), (Nullable), The start date field must be a valid date.</p>\n","type":"text"},{"key":"end_date","value":null,"description":"<p>(Optional), (Nullable), The end date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_evaluations/:business_evaluation","description":"<p>Update the specified <code>BusinessEvaluation</code> .</p>\n","urlObject":{"path":["api","v1","business_evaluations",":business_evaluation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_evaluation"}]}},"response":[],"_postman_id":"979d2415-6e75-4e83-af1e-18e79e1d6d9b"}],"id":"46a1aafd-78a5-47f1-9305-3cc1af35bfe6","_postman_id":"46a1aafd-78a5-47f1-9305-3cc1af35bfe6","description":""}],"id":"f854a98c-e6fb-4377-9c01-4499a13ed653","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_id</code>,<code> end_date</code>,<code> name</code>,<code> project_id</code>,<code> result</code>,<code> start_date</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>evaluations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fillableEvaluations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>filledEvaluations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f854a98c-e6fb-4377-9c01-4499a13ed653"},{"name":"Business Identifier Overrides","item":[{"name":"Destroy","item":[{"name":"api/v1/business_identifier_overrides/{business_identifier_override}","id":"cd3c0628-1b24-4431-92a0-d482f725d803","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_identifier_overrides/:business_identifier_override","description":"<p>Remove the specified <code>BusinessIdentifierOverride</code> from storage.</p>\n","urlObject":{"path":["api","v1","business_identifier_overrides",":business_identifier_override"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_identifier_override"}]}},"response":[],"_postman_id":"cd3c0628-1b24-4431-92a0-d482f725d803"}],"id":"c3e79251-df85-4912-b83c-2826eff6d07d","_postman_id":"c3e79251-df85-4912-b83c-2826eff6d07d","description":""},{"name":"Index","item":[{"name":"api/v1/business_identifier_overrides","id":"c125a747-b21e-48e5-be03-02e17567a00f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_identifier_overrides","description":"<p>Returns a list of multiple <code>BusinessIdentifierOverride</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","business_identifier_overrides"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c125a747-b21e-48e5-be03-02e17567a00f"}],"id":"7388bd54-b038-4ae3-8ba8-360af6df0903","_postman_id":"7388bd54-b038-4ae3-8ba8-360af6df0903","description":""},{"name":"Show","item":[{"name":"api/v1/business_identifier_overrides/{business_identifier_override}","id":"f78c9a90-2e86-4647-a494-0b40f8d9097e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_identifier_overrides/:business_identifier_override","description":"<p>Display the specified <code>BusinessIdentifierOverride</code>.</p>\n","urlObject":{"path":["api","v1","business_identifier_overrides",":business_identifier_override"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_identifier_override"}]}},"response":[],"_postman_id":"f78c9a90-2e86-4647-a494-0b40f8d9097e"}],"id":"cabad5e0-ece8-4dc5-9d1a-c094f88d2694","_postman_id":"cabad5e0-ece8-4dc5-9d1a-c094f88d2694","description":""},{"name":"Update Or Create","item":[{"name":"api/v1/business_identifier_overrides","id":"cdeccf70-e593-4443-bef1-23fec360114f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"team_id","value":null,"description":"<p>(Optional), The team id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"identifiable_id","value":null,"description":"<p>(Optional), The identifiable id field must be an integer.</p>\n","type":"text"},{"key":"identifiable_type","value":null,"description":"<p>(Optional), The identifiable type field must be a string., The identifiable type field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>(Optional), The value field must be a string., The value field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_identifier_overrides","description":"<p>Update the specified <code>BusinessIdentifierOverride</code> .</p>\n","urlObject":{"path":["api","v1","business_identifier_overrides"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"cdeccf70-e593-4443-bef1-23fec360114f"}],"id":"de5e5bde-dcc5-4dd4-a730-62224aa2ccd2","_postman_id":"de5e5bde-dcc5-4dd4-a730-62224aa2ccd2","description":""}],"id":"0cde674b-7860-474a-91ed-5fcf7a3e2e32","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_id</code>,<code> identifiable_id</code>,<code> identifiable_type</code>,<code> team_id</code>,<code> value</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>identifiable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0cde674b-7860-474a-91ed-5fcf7a3e2e32"},{"name":"Business Settings","item":[{"name":"Destroy","item":[{"name":"api/v1/business_settings/{business_setting}","id":"f2ed6a1b-8c6d-4a19-81df-bdff98e5e427","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_settings/:business_setting","description":"<p>Remove the specified <code>Business Setting</code> from storage.</p>\n","urlObject":{"path":["api","v1","business_settings",":business_setting"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_setting"}]}},"response":[],"_postman_id":"f2ed6a1b-8c6d-4a19-81df-bdff98e5e427"}],"id":"c440d0ae-e64f-4924-9b59-e5eb1fe1bcc8","_postman_id":"c440d0ae-e64f-4924-9b59-e5eb1fe1bcc8","description":""},{"name":"Index","item":[{"name":"api/v1/business_settings","id":"d9f1e1bf-bb75-481a-960d-a38079d39e8e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_settings","description":"<p>Returns a list of multiple <code>Business Setting</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","business_settings"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9f1e1bf-bb75-481a-960d-a38079d39e8e"}],"id":"173d1a69-fab4-48f1-9527-9ae199d92b23","_postman_id":"173d1a69-fab4-48f1-9527-9ae199d92b23","description":""},{"name":"Show","item":[{"name":"api/v1/business_settings/{business_setting}","id":"db7f9c11-9f2f-4e96-b205-a8726097041e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/business_settings/:business_setting","description":"<p>Display the specified <code>Business Setting</code>.</p>\n","urlObject":{"path":["api","v1","business_settings",":business_setting"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_setting"}]}},"response":[],"_postman_id":"db7f9c11-9f2f-4e96-b205-a8726097041e"}],"id":"48a0a309-9c82-4e1e-8377-ce04de7ecb24","_postman_id":"48a0a309-9c82-4e1e-8377-ce04de7ecb24","description":""},{"name":"Store","item":[{"name":"api/v1/business_settings","id":"d211e67b-76f5-4151-a033-8cc39b389be7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"next_number_sales_order","value":null,"description":"<p>The next number sales order field is required when auto number sales order is empty., The next number sales order field must be a string., The next number sales order field must not be greater than 20 characters., The next number sales order field must be at least 1 characters., The next number sales order field format is invalid.</p>\n","type":"text"},{"key":"next_number_requisition","value":null,"description":"<p>The next number requisition field is required when auto number requisition is empty., The next number requisition field must be a string., The next number requisition field must not be greater than 20 characters., The next number requisition field must be at least 1 characters., The next number requisition field format is invalid.</p>\n","type":"text"},{"key":"next_number_order","value":null,"description":"<p>The next number order field is required when auto number order is empty., The next number order field must be a string., The next number order field must not be greater than 20 characters., The next number order field must be at least 1 characters., The next number order field format is invalid.</p>\n","type":"text"},{"key":"next_number_bid","value":null,"description":"<p>The next number bid field is required when auto number bid is empty., The next number bid field must be a string., The next number bid field must not be greater than 20 characters., The next number bid field must be at least 1 characters., The next number bid field format is invalid.</p>\n","type":"text"},{"key":"auto_number_sales_order","value":null,"description":"<p>(Optional), The auto number sales order field must be true or false.</p>\n","type":"text"},{"key":"auto_number_requisition","value":null,"description":"<p>(Optional), The auto number requisition field must be true or false.</p>\n","type":"text"},{"key":"auto_number_order","value":null,"description":"<p>(Optional), The auto number order field must be true or false.</p>\n","type":"text"},{"key":"auto_number_bid","value":null,"description":"<p>(Optional), The auto number bid field must be true or false.</p>\n","type":"text"},{"key":"large_order_threshold","value":null,"description":"<p>(Optional), (Nullable), The large order threshold field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_terms","value":null,"description":"<p>(Nullable), The inspection requirement terms field must be a string., The inspection requirement terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"release_order_terms","value":null,"description":"<p>(Nullable), The release order terms field must be a string., The release order terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"receiving_report_terms","value":null,"description":"<p>(Nullable), The receiving report terms field must be a string., The receiving report terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"service_release_terms","value":null,"description":"<p>(Nullable), The service release terms field must be a string., The service release terms field must not be greater than 65535 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_settings","description":"<p>Create a new <code>Business Setting</code> object.</p>\n","urlObject":{"path":["api","v1","business_settings"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d211e67b-76f5-4151-a033-8cc39b389be7"}],"id":"fa74face-b9d7-4b43-af3e-08f42e202435","_postman_id":"fa74face-b9d7-4b43-af3e-08f42e202435","description":""},{"name":"Update","item":[{"name":"api/v1/business_settings/{business_setting}","id":"d8395675-ecb5-4a32-b3d4-12532a1f7f25","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"next_number_sales_order","value":null,"description":"<p>(Optional), The next number sales order field must be a string., The next number sales order field must not be greater than 20 characters., The next number sales order field must be at least 1 characters., The next number sales order field format is invalid.</p>\n","type":"text"},{"key":"next_number_requisition","value":null,"description":"<p>(Optional), The next number requisition field must be a string., The next number requisition field must not be greater than 20 characters., The next number requisition field must be at least 1 characters., The next number requisition field format is invalid.</p>\n","type":"text"},{"key":"next_number_order","value":null,"description":"<p>(Optional), The next number order field must be a string., The next number order field must not be greater than 20 characters., The next number order field must be at least 1 characters., The next number order field format is invalid.</p>\n","type":"text"},{"key":"next_number_bid","value":null,"description":"<p>(Optional), The next number bid field must be a string., The next number bid field must not be greater than 20 characters., The next number bid field must be at least 1 characters., The next number bid field format is invalid.</p>\n","type":"text"},{"key":"auto_number_sales_order","value":null,"description":"<p>(Optional), The auto number sales order field must be true or false.</p>\n","type":"text"},{"key":"auto_number_requisition","value":null,"description":"<p>(Optional), The auto number requisition field must be true or false.</p>\n","type":"text"},{"key":"auto_number_order","value":null,"description":"<p>(Optional), The auto number order field must be true or false.</p>\n","type":"text"},{"key":"auto_number_bid","value":null,"description":"<p>(Optional), The auto number bid field must be true or false.</p>\n","type":"text"},{"key":"large_order_threshold","value":null,"description":"<p>(Optional), (Nullable), The large order threshold field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_terms","value":null,"description":"<p>(Nullable), The inspection requirement terms field must be a string., The inspection requirement terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"release_order_terms","value":null,"description":"<p>(Nullable), The release order terms field must be a string., The release order terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"receiving_report_terms","value":null,"description":"<p>(Nullable), The receiving report terms field must be a string., The receiving report terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"service_release_terms","value":null,"description":"<p>(Nullable), The service release terms field must be a string., The service release terms field must not be greater than 65535 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_settings/:business_setting","description":"<p>Update the specified <code>Business Setting</code> .</p>\n","urlObject":{"path":["api","v1","business_settings",":business_setting"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_setting"}]}},"response":[],"_postman_id":"d8395675-ecb5-4a32-b3d4-12532a1f7f25"},{"name":"api/v1/business_settings/{business_setting}","id":"7803075f-6d93-475a-9908-dc4bacaab795","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"next_number_sales_order","value":null,"description":"<p>(Optional), The next number sales order field must be a string., The next number sales order field must not be greater than 20 characters., The next number sales order field must be at least 1 characters., The next number sales order field format is invalid.</p>\n","type":"text"},{"key":"next_number_requisition","value":null,"description":"<p>(Optional), The next number requisition field must be a string., The next number requisition field must not be greater than 20 characters., The next number requisition field must be at least 1 characters., The next number requisition field format is invalid.</p>\n","type":"text"},{"key":"next_number_order","value":null,"description":"<p>(Optional), The next number order field must be a string., The next number order field must not be greater than 20 characters., The next number order field must be at least 1 characters., The next number order field format is invalid.</p>\n","type":"text"},{"key":"next_number_bid","value":null,"description":"<p>(Optional), The next number bid field must be a string., The next number bid field must not be greater than 20 characters., The next number bid field must be at least 1 characters., The next number bid field format is invalid.</p>\n","type":"text"},{"key":"auto_number_sales_order","value":null,"description":"<p>(Optional), The auto number sales order field must be true or false.</p>\n","type":"text"},{"key":"auto_number_requisition","value":null,"description":"<p>(Optional), The auto number requisition field must be true or false.</p>\n","type":"text"},{"key":"auto_number_order","value":null,"description":"<p>(Optional), The auto number order field must be true or false.</p>\n","type":"text"},{"key":"auto_number_bid","value":null,"description":"<p>(Optional), The auto number bid field must be true or false.</p>\n","type":"text"},{"key":"large_order_threshold","value":null,"description":"<p>(Optional), (Nullable), The large order threshold field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_terms","value":null,"description":"<p>(Nullable), The inspection requirement terms field must be a string., The inspection requirement terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"release_order_terms","value":null,"description":"<p>(Nullable), The release order terms field must be a string., The release order terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"receiving_report_terms","value":null,"description":"<p>(Nullable), The receiving report terms field must be a string., The receiving report terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"service_release_terms","value":null,"description":"<p>(Nullable), The service release terms field must be a string., The service release terms field must not be greater than 65535 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/business_settings/:business_setting","description":"<p>Update the specified <code>Business Setting</code> .</p>\n","urlObject":{"path":["api","v1","business_settings",":business_setting"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business_setting"}]}},"response":[],"_postman_id":"7803075f-6d93-475a-9908-dc4bacaab795"}],"id":"4a6ab9cd-e9b5-473a-86ab-2f0a4d3ba394","_postman_id":"4a6ab9cd-e9b5-473a-86ab-2f0a4d3ba394","description":""}],"id":"fec9dd39-f9d4-47c8-953a-2e4de9502976","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_id</code>,<code> inspection_requirement_terms</code>,<code> receiving_report_terms</code>,<code> release_order_terms</code>,<code> service_release_terms</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"fec9dd39-f9d4-47c8-953a-2e4de9502976"},{"name":"Businesses","item":[{"name":"Destroy","item":[{"name":"api/v1/businesses/{business}","id":"7adaa9ac-d62b-4db1-a886-caae54038cf2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/businesses/:business","description":"<p>Remove the specified <code>Business</code> from storage.</p>\n","urlObject":{"path":["api","v1","businesses",":business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business"}]}},"response":[],"_postman_id":"7adaa9ac-d62b-4db1-a886-caae54038cf2"}],"id":"05850ffc-e45d-4596-932f-852a114acb0c","_postman_id":"05850ffc-e45d-4596-932f-852a114acb0c","description":""},{"name":"Index","item":[{"name":"api/v1/businesses","id":"d4053fd3-508d-4add-9d7a-f31f2a250c9e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/businesses","description":"<p>Returns a list of multiple <code>Business</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","businesses"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4053fd3-508d-4add-9d7a-f31f2a250c9e"}],"id":"3f02b635-c038-46cb-895d-ed917b77e20e","_postman_id":"3f02b635-c038-46cb-895d-ed917b77e20e","description":""},{"name":"Show","item":[{"name":"api/v1/businesses/{business}","id":"12dfea39-9a2c-4019-ac31-589115f1c031","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/businesses/:business","description":"<p>Display the specified <code>Business</code>.</p>\n","urlObject":{"path":["api","v1","businesses",":business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business"}]}},"response":[],"_postman_id":"12dfea39-9a2c-4019-ac31-589115f1c031"}],"id":"6b13d99b-54f3-4e85-8be7-e3f61937c0bb","_postman_id":"6b13d99b-54f3-4e85-8be7-e3f61937c0bb","description":""},{"name":"Store","item":[{"name":"api/v1/businesses","id":"f61eb9b4-fc7f-453a-a608-c8af40e6dce0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"agreements","value":null,"description":"<p>(Nullable), The agreements field must be an array.</p>\n","type":"text"},{"key":"agreements.*","value":null,"description":"<p>(Optional), The agreements.* field must be a string., The agreements.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"business_name","value":null,"description":"<p>The business name field is required., The business name field must be a string., The business name field must be at least 2 characters., The business name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"icon_logo_url","value":null,"description":"<p>(Nullable), The icon logo url field must be a string., The icon logo url field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_carrier","value":null,"description":"<p>(Nullable), The is carrier field must be true or false.</p>\n","type":"text"},{"key":"is_inspector","value":null,"description":"<p>(Nullable), The is inspector field must be true or false.</p>\n","type":"text"},{"key":"is_client","value":null,"description":"<p>(Nullable), The is client field must be true or false.</p>\n","type":"text"},{"key":"is_fabricator","value":null,"description":"<p>(Nullable), The is fabricator field must be true or false.</p>\n","type":"text"},{"key":"is_other","value":null,"description":"<p>(Nullable), The is other field must be an array.</p>\n","type":"text"},{"key":"is_other.*","value":null,"description":"<p>(Optional), The is other.* field must be a string., The is other.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_service_provider","value":null,"description":"<p>(Nullable), The is service provider field must be true or false.</p>\n","type":"text"},{"key":"is_storage","value":null,"description":"<p>(Nullable), The is storage field must be true or false.</p>\n","type":"text"},{"key":"is_supplier","value":null,"description":"<p>(Nullable), The is supplier field must be true or false.</p>\n","type":"text"},{"key":"legal_name","value":null,"description":"<p>(Nullable), The legal name field must be a string., The legal name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"letter_logo_url","value":null,"description":"<p>(Nullable), The letter logo url field must be a string., The letter logo url field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"tax_reference","value":null,"description":"<p>(Nullable), The tax reference field must be a string., The tax reference field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Nullable), The telephone field must be a string., The telephone field must be at least 7 characters., The telephone field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Optional), The timezone field must be a valid timezone.</p>\n","type":"text"},{"key":"website","value":null,"description":"<p>(Nullable), The website field must be a string., The website field must be a valid URL., The website field must not be greater than 144 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/businesses","description":"<p>Create a new <code>Business</code> object.</p>\n","urlObject":{"path":["api","v1","businesses"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f61eb9b4-fc7f-453a-a608-c8af40e6dce0"}],"id":"efd43fde-b155-4f9a-be02-89a5f55553b9","_postman_id":"efd43fde-b155-4f9a-be02-89a5f55553b9","description":""},{"name":"Update","item":[{"name":"api/v1/businesses/{business}","id":"cbf2189e-8086-4269-9c20-dd77d8f26aec","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"agreements","value":null,"description":"<p>(Nullable), The agreements field must be an array.</p>\n","type":"text"},{"key":"agreements.*","value":null,"description":"<p>(Optional), The agreements.* field must be a string., The agreements.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"business_name","value":null,"description":"<p>The business name field is required., The business name field must be a string., The business name field must be at least 2 characters., The business name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"icon_logo_url","value":null,"description":"<p>(Nullable), The icon logo url field must be a string., The icon logo url field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_carrier","value":null,"description":"<p>(Optional), (Nullable), The is carrier field must be true or false.</p>\n","type":"text"},{"key":"is_inspector","value":null,"description":"<p>(Optional), (Nullable), The is inspector field must be true or false.</p>\n","type":"text"},{"key":"is_client","value":null,"description":"<p>(Optional), (Nullable), The is client field must be true or false.</p>\n","type":"text"},{"key":"is_fabricator","value":null,"description":"<p>(Optional), (Nullable), The is fabricator field must be true or false.</p>\n","type":"text"},{"key":"is_other","value":null,"description":"<p>(Optional), (Nullable), The is other field must be an array.</p>\n","type":"text"},{"key":"is_other.*","value":null,"description":"<p>(Optional), The is other.* field must be a string., The is other.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_service_provider","value":null,"description":"<p>(Optional), (Nullable), The is service provider field must be true or false.</p>\n","type":"text"},{"key":"is_storage","value":null,"description":"<p>(Optional), (Nullable), The is storage field must be true or false.</p>\n","type":"text"},{"key":"is_supplier","value":null,"description":"<p>(Optional), (Nullable), The is supplier field must be true or false.</p>\n","type":"text"},{"key":"legal_name","value":null,"description":"<p>(Nullable), The legal name field must be a string., The legal name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"letter_logo_url","value":null,"description":"<p>(Nullable), The letter logo url field must be a string., The letter logo url field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"tax_reference","value":null,"description":"<p>(Nullable), The tax reference field must be a string., The tax reference field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Optional), (Nullable), The telephone field must be a string., The telephone field must be at least 7 characters., The telephone field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Optional), The timezone field must be a valid timezone.</p>\n","type":"text"},{"key":"website","value":null,"description":"<p>(Nullable), The website field must be a string., The website field must be a valid URL., The website field must not be greater than 144 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/businesses/:business","description":"<p>Update the specified <code>Business</code> .</p>\n","urlObject":{"path":["api","v1","businesses",":business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business"}]}},"response":[],"_postman_id":"cbf2189e-8086-4269-9c20-dd77d8f26aec"},{"name":"api/v1/businesses/{business}","id":"2f5ee02a-af6b-401f-81ea-0f52d4fb1992","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"agreements","value":null,"description":"<p>(Nullable), The agreements field must be an array.</p>\n","type":"text"},{"key":"agreements.*","value":null,"description":"<p>(Optional), The agreements.* field must be a string., The agreements.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"business_name","value":null,"description":"<p>The business name field is required., The business name field must be a string., The business name field must be at least 2 characters., The business name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"icon_logo_url","value":null,"description":"<p>(Nullable), The icon logo url field must be a string., The icon logo url field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_carrier","value":null,"description":"<p>(Optional), (Nullable), The is carrier field must be true or false.</p>\n","type":"text"},{"key":"is_inspector","value":null,"description":"<p>(Optional), (Nullable), The is inspector field must be true or false.</p>\n","type":"text"},{"key":"is_client","value":null,"description":"<p>(Optional), (Nullable), The is client field must be true or false.</p>\n","type":"text"},{"key":"is_fabricator","value":null,"description":"<p>(Optional), (Nullable), The is fabricator field must be true or false.</p>\n","type":"text"},{"key":"is_other","value":null,"description":"<p>(Optional), (Nullable), The is other field must be an array.</p>\n","type":"text"},{"key":"is_other.*","value":null,"description":"<p>(Optional), The is other.* field must be a string., The is other.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_service_provider","value":null,"description":"<p>(Optional), (Nullable), The is service provider field must be true or false.</p>\n","type":"text"},{"key":"is_storage","value":null,"description":"<p>(Optional), (Nullable), The is storage field must be true or false.</p>\n","type":"text"},{"key":"is_supplier","value":null,"description":"<p>(Optional), (Nullable), The is supplier field must be true or false.</p>\n","type":"text"},{"key":"legal_name","value":null,"description":"<p>(Nullable), The legal name field must be a string., The legal name field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"letter_logo_url","value":null,"description":"<p>(Nullable), The letter logo url field must be a string., The letter logo url field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"tax_reference","value":null,"description":"<p>(Nullable), The tax reference field must be a string., The tax reference field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Optional), (Nullable), The telephone field must be a string., The telephone field must be at least 7 characters., The telephone field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Optional), The timezone field must be a valid timezone.</p>\n","type":"text"},{"key":"website","value":null,"description":"<p>(Nullable), The website field must be a string., The website field must be a valid URL., The website field must not be greater than 144 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/businesses/:business","description":"<p>Update the specified <code>Business</code> .</p>\n","urlObject":{"path":["api","v1","businesses",":business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business"}]}},"response":[],"_postman_id":"2f5ee02a-af6b-401f-81ea-0f52d4fb1992"}],"id":"011fe458-6c3b-45e3-b8af-85866bcbfb48","_postman_id":"011fe458-6c3b-45e3-b8af-85866bcbfb48","description":""},{"name":"Update Avatar","item":[{"name":"api/v1/businesses/{business}/imageupload","id":"99f62336-1047-4bb4-b9f9-4ee8dc12b807","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"image","value":null,"description":"<p>The image field is required., The image field must be a file of type: jpg, jpeg, png, gif, svg., The image field must not be greater than 4096 characters.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>The type field is required., The selected type is invalid, it must exist in logo, letter.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/businesses/:business/imageupload","description":"<p>Uploads an <code>Business</code>.</p>\n","urlObject":{"path":["api","v1","businesses",":business","imageupload"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"business"}]}},"response":[],"_postman_id":"99f62336-1047-4bb4-b9f9-4ee8dc12b807"}],"id":"4ab25b08-c8c3-4859-b1ca-6edec4859170","_postman_id":"4ab25b08-c8c3-4859-b1ca-6edec4859170","description":""}],"id":"f9dd05eb-28d9-4edf-a1ba-9d77397ce4d9","description":"<p><code>Businesses</code> are used to store data about Businesses. Businesses can be Clients, Suppliers, Service Providers etc...</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_name</code>,<code> currency_code</code>,<code> default_taxes_id</code>,<code> icon_logo_url</code>,<code> incoterm_id</code>,<code> is_active</code>,<code> is_carrier</code>,<code> is_client</code>,<code> is_fabricator</code>,<code> is_inspector</code>,<code> is_other</code>,<code> is_storage</code>,<code> is_supplier</code>,<code> legal_name</code>,<code> letter_logo_url</code>,<code> metadata</code>,<code> paymentterm_id</code>,<code> tax_reference</code>,<code> team_id</code>,<code> telephone</code>,<code> timezone</code>,<code> website</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>approvedProjects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billingPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>businessDiversityTypes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>businessSetting</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>defaultTax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>destination</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>diversityTypes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>evaluations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fabricationPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>incoTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastEvaluation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>locations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>origin</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>people</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectBusinesses</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitionVendors</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storagePlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>string_types</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f9dd05eb-28d9-4edf-a1ba-9d77397ce4d9"},{"name":"Catalog Classes","item":[{"name":"Destroy","item":[{"name":"api/v1/catalog_classes/{catalog_class}","id":"402da9b9-c20d-499a-83ed-c0fcecb4ae65","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_classes/:catalog_class","description":"<p>Remove the specified <code>CatalogClass</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalog_classes",":catalog_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_class"}]}},"response":[],"_postman_id":"402da9b9-c20d-499a-83ed-c0fcecb4ae65"}],"id":"404927f3-096b-4373-a01d-37daa3e98908","_postman_id":"404927f3-096b-4373-a01d-37daa3e98908","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_classes","id":"00013f66-3bb6-4a0e-9353-5402f7c46a5a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_classes","description":"<p>Returns a list of multiple <code>CatalogClass</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalog_classes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"00013f66-3bb6-4a0e-9353-5402f7c46a5a"}],"id":"01e2c484-c2dc-462f-93fb-f195003ce142","_postman_id":"01e2c484-c2dc-462f-93fb-f195003ce142","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_classes/{catalog_class}","id":"9a5d6d38-ae7c-4bc8-83c6-8a4b951592ea","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_classes/:catalog_class","description":"<p>Display the specified <code>CatalogClass</code>.</p>\n","urlObject":{"path":["api","v1","catalog_classes",":catalog_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_class"}]}},"response":[],"_postman_id":"9a5d6d38-ae7c-4bc8-83c6-8a4b951592ea"}],"id":"5b06fce3-ea23-4014-919d-6cc83d6e983c","_postman_id":"5b06fce3-ea23-4014-919d-6cc83d6e983c","description":""},{"name":"Store","item":[{"name":"api/v1/catalog_classes","id":"5ef4e3f4-5c90-4f58-991d-0aa74c93a11b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_id","value":null,"description":"<p>The catalog id field is required., The catalog id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_classes","description":"<p>Create a new <code>CatalogClass</code> object.</p>\n","urlObject":{"path":["api","v1","catalog_classes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ef4e3f4-5c90-4f58-991d-0aa74c93a11b"}],"id":"7614806e-5494-43f6-b597-ce10421eb36f","_postman_id":"7614806e-5494-43f6-b597-ce10421eb36f","description":""},{"name":"Update","item":[{"name":"api/v1/catalog_classes/{catalog_class}","id":"5d2b5932-3305-44a5-854b-9bbae7148206","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_id","value":null,"description":"<p>(Optional), The catalog id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_classes/:catalog_class","description":"<p>Update the specified <code>CatalogClass</code> .</p>\n","urlObject":{"path":["api","v1","catalog_classes",":catalog_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_class"}]}},"response":[],"_postman_id":"5d2b5932-3305-44a5-854b-9bbae7148206"},{"name":"api/v1/catalog_classes/{catalog_class}","id":"1be3af35-336b-4e3c-a0e4-26012c9a1936","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_id","value":null,"description":"<p>(Optional), The catalog id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_classes/:catalog_class","description":"<p>Update the specified <code>CatalogClass</code> .</p>\n","urlObject":{"path":["api","v1","catalog_classes",":catalog_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_class"}]}},"response":[],"_postman_id":"1be3af35-336b-4e3c-a0e4-26012c9a1936"}],"id":"b4e3fac8-b458-41c2-991b-f3653580bf08","_postman_id":"b4e3fac8-b458-41c2-991b-f3653580bf08","description":""}],"id":"6316451b-9e60-4fc8-a7ba-336c93c1c2db","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_id</code>,<code> is_active</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>catalog</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogDefinition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogSubClass</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6316451b-9e60-4fc8-a7ba-336c93c1c2db"},{"name":"Catalog Definition Attributes","item":[{"name":"Bulk Store","item":[{"name":"api/v1/bulk_catalog_definition_attributes","id":"532ce070-3aa5-4724-b74e-6f62bebe57ae","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.catalog_definition_id","value":null,"description":"<p>The data.<em>.catalog definition id field is required., The data.</em>.catalog definition id field must be an integer.</p>\n","type":"text"},{"key":"data.*.type","value":null,"description":"<p>The data.<em>.type field is required., The data.</em>.type field must be a string., The selected data.*.type is invalid, it must exist in measurement, attribute.</p>\n","type":"text"},{"key":"data.*.name","value":null,"description":"<p>The data.<em>.name field is required., The data.</em>.name field must be a string., The data.*.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.unit","value":null,"description":"<p>(Nullable), The data.<em>.unit field must be a string., The selected data.</em>.unit must be known to the application, the provided value is invalid, The data.*.unit field is required when type is empty.</p>\n","type":"text"},{"key":"data.*.order","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.order field must be an integer., The data.</em>.order field must not be greater than 99 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_catalog_definition_attributes","description":"<p>Store multiple <code>CatalogDefinitionAttribute</code> objects</p>\n","urlObject":{"path":["api","v1","bulk_catalog_definition_attributes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"532ce070-3aa5-4724-b74e-6f62bebe57ae"}],"id":"5294b259-c255-49a5-a08b-36791af93357","_postman_id":"5294b259-c255-49a5-a08b-36791af93357","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_catalog_definition_attributes","id":"62016cbc-c537-4c5d-bf16-96693815897c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.catalog_definition_id","value":null,"description":"<p>(Optional), The data.*.catalog definition id field must be an integer.</p>\n","type":"text"},{"key":"data.*.type","value":null,"description":"<p>(Optional), The data.<em>.type field must be a string., The selected data.</em>.type is invalid, it must exist in measurement, attribute.</p>\n","type":"text"},{"key":"data.*.name","value":null,"description":"<p>(Optional), The data.<em>.name field must be a string., The data.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.unit","value":null,"description":"<p>(Nullable), The data.<em>.unit field must be a string., The selected data.</em>.unit must be known to the application, the provided value is invalid, The data.*.unit field is required when type is empty.</p>\n","type":"text"},{"key":"data.*.order","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.order field must be an integer., The data.</em>.order field must not be greater than 99 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_catalog_definition_attributes","description":"<p>Update multiple <code>CatalogDefinitionAttribute</code> objects</p>\n","urlObject":{"path":["api","v1","bulk_catalog_definition_attributes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"62016cbc-c537-4c5d-bf16-96693815897c"}],"id":"af0b84b9-b789-4e66-810d-2255c1cdb6af","_postman_id":"af0b84b9-b789-4e66-810d-2255c1cdb6af","description":""},{"name":"Destroy","item":[{"name":"api/v1/catalog_definition_attributes/{catalog_definition_attribute}","id":"7f598c6f-bc37-4e55-89b1-cbed41ad906f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_definition_attributes/:catalog_definition_attribute","description":"<p>Remove the specified <code>CatalogDefinitionAttribute</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalog_definition_attributes",":catalog_definition_attribute"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_definition_attribute"}]}},"response":[],"_postman_id":"7f598c6f-bc37-4e55-89b1-cbed41ad906f"}],"id":"d0b1b68b-b5ae-4077-ae55-e425cf85229d","_postman_id":"d0b1b68b-b5ae-4077-ae55-e425cf85229d","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_definition_attributes","id":"9a8c9b8e-5e92-4eb0-acc8-3c7d4f8c36b7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_definition_attributes","description":"<p>Returns a list of multiple <code>CatalogDefinitionAttribute</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalog_definition_attributes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a8c9b8e-5e92-4eb0-acc8-3c7d4f8c36b7"}],"id":"a96853e7-46e7-4780-ba46-a1b683053eb6","_postman_id":"a96853e7-46e7-4780-ba46-a1b683053eb6","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_definition_attributes/{catalog_definition_attribute}","id":"52663d90-4a66-45e1-a965-9a5bbac24fbf","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_definition_attributes/:catalog_definition_attribute","description":"<p>Display the specified <code>CatalogDefinitionAttribute</code>.</p>\n","urlObject":{"path":["api","v1","catalog_definition_attributes",":catalog_definition_attribute"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_definition_attribute"}]}},"response":[],"_postman_id":"52663d90-4a66-45e1-a965-9a5bbac24fbf"}],"id":"b6b39308-8676-4dd0-836b-13c3d7f13658","_postman_id":"b6b39308-8676-4dd0-836b-13c3d7f13658","description":""},{"name":"Store","item":[{"name":"api/v1/catalog_definition_attributes","id":"f5796415-dbae-4e0a-bd25-40b1602c50d3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_definition_id","value":null,"description":"<p>The catalog definition id field is required., The catalog definition id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>The type field is required., The type field must be a string., The selected type is invalid, it must exist in measurement, attribute.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"unit","value":null,"description":"<p>(Nullable), The unit field must be a string., The selected unit must be known to the application, the provided value is invalid, The unit field is required when type is empty.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), (Nullable), The order field must be an integer., The order field must not be greater than 99.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_definition_attributes","description":"<p>Create a new <code>CatalogDefinitionAttribute</code> object.</p>\n","urlObject":{"path":["api","v1","catalog_definition_attributes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5796415-dbae-4e0a-bd25-40b1602c50d3"}],"id":"34f825ae-eb5d-40de-98db-6d8c4d0ade0a","_postman_id":"34f825ae-eb5d-40de-98db-6d8c4d0ade0a","description":""},{"name":"Update","item":[{"name":"api/v1/catalog_definition_attributes/{catalog_definition_attribute}","id":"a65e7680-4e59-4000-a11d-865c5c006810","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_definition_id","value":null,"description":"<p>(Optional), The catalog definition id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The type field must be a string., The selected type is invalid, it must exist in measurement, attribute.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"unit","value":null,"description":"<p>(Nullable), The unit field must be a string., The selected unit must be known to the application, the provided value is invalid, The unit field is required when type is empty.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), (Nullable), The order field must be an integer., The order field must not be greater than 99.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_definition_attributes/:catalog_definition_attribute","description":"<p>Update the specified <code>CatalogDefinitionAttribute</code> .</p>\n","urlObject":{"path":["api","v1","catalog_definition_attributes",":catalog_definition_attribute"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_definition_attribute"}]}},"response":[],"_postman_id":"a65e7680-4e59-4000-a11d-865c5c006810"},{"name":"api/v1/catalog_definition_attributes/{catalog_definition_attribute}","id":"a8068b17-af99-44e3-a92e-679a0cb24bff","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_definition_id","value":null,"description":"<p>(Optional), The catalog definition id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The type field must be a string., The selected type is invalid, it must exist in measurement, attribute.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"unit","value":null,"description":"<p>(Nullable), The unit field must be a string., The selected unit must be known to the application, the provided value is invalid, The unit field is required when type is empty.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), (Nullable), The order field must be an integer., The order field must not be greater than 99.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_definition_attributes/:catalog_definition_attribute","description":"<p>Update the specified <code>CatalogDefinitionAttribute</code> .</p>\n","urlObject":{"path":["api","v1","catalog_definition_attributes",":catalog_definition_attribute"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_definition_attribute"}]}},"response":[],"_postman_id":"a8068b17-af99-44e3-a92e-679a0cb24bff"}],"id":"dd444cc0-9acc-48a1-8b7a-209b738a94e5","_postman_id":"dd444cc0-9acc-48a1-8b7a-209b738a94e5","description":""}],"id":"780c7e35-4375-45aa-b8c3-29709b0397a0","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_definition_id</code>,<code> id</code>,<code> name</code>,<code> order</code>,<code> team_id</code>,<code> type</code>,<code> unit</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>definition</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"780c7e35-4375-45aa-b8c3-29709b0397a0"},{"name":"Catalog Definitions","item":[{"name":"Destroy","item":[{"name":"api/v1/catalog_definitions/{catalog_definition}","id":"b20ce918-28d3-4064-a6a1-86260c4a255f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_definitions/:catalog_definition","description":"<p>Remove the specified <code>CatalogDefinition</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalog_definitions",":catalog_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_definition"}]}},"response":[],"_postman_id":"b20ce918-28d3-4064-a6a1-86260c4a255f"}],"id":"d247c41b-acf3-49f4-bcd6-e9fb44b9b9a9","_postman_id":"d247c41b-acf3-49f4-bcd6-e9fb44b9b9a9","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_definitions","id":"95b863f6-ac81-4ad4-952c-a8c534da3fde","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_definitions","description":"<p>Returns a list of multiple <code>CatalogDefinition</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalog_definitions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"95b863f6-ac81-4ad4-952c-a8c534da3fde"}],"id":"00ec4c17-17ff-448b-8e1b-45eef8f90442","_postman_id":"00ec4c17-17ff-448b-8e1b-45eef8f90442","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_definitions/{catalog_definition}","id":"fc9492da-8a96-457b-9430-87a6a1856e90","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_definitions/:catalog_definition","description":"<p>Display the specified <code>CatalogDefinition</code>.</p>\n","urlObject":{"path":["api","v1","catalog_definitions",":catalog_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_definition"}]}},"response":[],"_postman_id":"fc9492da-8a96-457b-9430-87a6a1856e90"}],"id":"7b43d369-3aeb-4072-bd41-2245a9efc67c","_postman_id":"7b43d369-3aeb-4072-bd41-2245a9efc67c","description":""},{"name":"Store","item":[{"name":"api/v1/catalog_definitions","id":"e54a66d3-6af5-4343-8766-ae6fed181a83","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"attributes","value":null,"description":"<p>(Optional), (Nullable), The attributes field must be an array.</p>\n","type":"text"},{"key":"attributes.*.type","value":null,"description":"<p>(Optional), The attributes.<em>.type field must be a string., The selected attributes.</em>.type is invalid, it must exist in measurement, attribute.</p>\n","type":"text"},{"key":"attributes.*.name","value":null,"description":"<p>The attributes.<em>.name field must be a string., The attributes.</em>.name field is required., The attributes.*.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"attributes.*.unit","value":null,"description":"<p>(Optional), (Nullable), The attributes.<em>.unit field must be a string., The selected attributes.</em>.unit must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"attributes.*.order","value":null,"description":"<p>(Optional), The attributes.<em>.order field must be an integer., The attributes.</em>.order field must not be greater than 20 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_definitions","description":"<p>Create a new <code>CatalogDefinition</code> object.</p>\n","urlObject":{"path":["api","v1","catalog_definitions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e54a66d3-6af5-4343-8766-ae6fed181a83"}],"id":"87f44e6d-617c-4803-afee-ece385d519da","_postman_id":"87f44e6d-617c-4803-afee-ece385d519da","description":""},{"name":"Update","item":[{"name":"api/v1/catalog_definitions/{catalog_definition}","id":"bfed679c-413c-43ea-864c-196ee7990781","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"attributes","value":null,"description":"<p>(Optional), (Nullable), The attributes field must be an array.</p>\n","type":"text"},{"key":"attributes.*.id","value":null,"description":"<p>(Optional), (Nullable), The attributes.*.id field must be an integer.</p>\n","type":"text"},{"key":"attributes.*.type","value":null,"description":"<p>(Optional), The attributes.<em>.type field must be a string., The selected attributes.</em>.type is invalid, it must exist in measurement, attribute.</p>\n","type":"text"},{"key":"attributes.*.name","value":null,"description":"<p>The attributes.<em>.name field is required when attributes.</em>.delete is not present., The attributes.<em>.name field must not be greater than 50 characters., The attributes.</em>.name field must be a string., (Nullable)</p>\n","type":"text"},{"key":"attributes.*.unit","value":null,"description":"<p>(Optional), (Nullable), The attributes.<em>.unit field must be a string., The selected attributes.</em>.unit must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"attributes.*.order","value":null,"description":"<p>(Optional), The attributes.<em>.order field must be an integer., The attributes.</em>.order field must not be greater than 20 characters.</p>\n","type":"text"},{"key":"attributes.*.delete","value":null,"description":"<p>(Optional), The attributes.*.delete field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_definitions/:catalog_definition","description":"<p>Update the specified <code>CatalogDefinition</code> .</p>\n","urlObject":{"path":["api","v1","catalog_definitions",":catalog_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_definition"}]}},"response":[],"_postman_id":"bfed679c-413c-43ea-864c-196ee7990781"},{"name":"api/v1/catalog_definitions/{catalog_definition}","id":"b347c815-6675-4c32-aa25-612fc2d54417","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"attributes","value":null,"description":"<p>(Optional), (Nullable), The attributes field must be an array.</p>\n","type":"text"},{"key":"attributes.*.id","value":null,"description":"<p>(Optional), (Nullable), The attributes.*.id field must be an integer.</p>\n","type":"text"},{"key":"attributes.*.type","value":null,"description":"<p>(Optional), The attributes.<em>.type field must be a string., The selected attributes.</em>.type is invalid, it must exist in measurement, attribute.</p>\n","type":"text"},{"key":"attributes.*.name","value":null,"description":"<p>The attributes.<em>.name field is required when attributes.</em>.delete is not present., The attributes.<em>.name field must not be greater than 50 characters., The attributes.</em>.name field must be a string., (Nullable)</p>\n","type":"text"},{"key":"attributes.*.unit","value":null,"description":"<p>(Optional), (Nullable), The attributes.<em>.unit field must be a string., The selected attributes.</em>.unit must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"attributes.*.order","value":null,"description":"<p>(Optional), The attributes.<em>.order field must be an integer., The attributes.</em>.order field must not be greater than 20 characters.</p>\n","type":"text"},{"key":"attributes.*.delete","value":null,"description":"<p>(Optional), The attributes.*.delete field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_definitions/:catalog_definition","description":"<p>Update the specified <code>CatalogDefinition</code> .</p>\n","urlObject":{"path":["api","v1","catalog_definitions",":catalog_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_definition"}]}},"response":[],"_postman_id":"b347c815-6675-4c32-aa25-612fc2d54417"}],"id":"e5eee23b-cb22-4b4f-94cc-38182a9b8f9d","_postman_id":"e5eee23b-cb22-4b4f-94cc-38182a9b8f9d","description":""}],"id":"b839d05a-5aff-4df0-9c01-b3b2cd5175da","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> is_active</code>,<code> metadata</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attributes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogSubClasses</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>everUsableCatalogItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b839d05a-5aff-4df0-9c01-b3b2cd5175da"},{"name":"Catalog Import Sources","item":[{"name":"Destroy","item":[{"name":"api/v1/catalog_import_sources/{catalog_import_source}","id":"df44682d-fad0-4ea6-9076-f7be18b5dae3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_import_sources/:catalog_import_source","description":"<p>Remove the specified <code>CatalogImportSource</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalog_import_sources",":catalog_import_source"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_import_source"}]}},"response":[],"_postman_id":"df44682d-fad0-4ea6-9076-f7be18b5dae3"}],"id":"49db6388-aa77-4b6e-8e06-d0821acabc6f","_postman_id":"49db6388-aa77-4b6e-8e06-d0821acabc6f","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_import_sources","id":"72661395-7abc-452a-8483-8f99a41b8d59","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_import_sources","description":"<p>Returns a list of multiple <code>CatalogImportSource</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalog_import_sources"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"72661395-7abc-452a-8483-8f99a41b8d59"}],"id":"a90ee3d9-86ba-405c-9bae-5933f2d7a193","_postman_id":"a90ee3d9-86ba-405c-9bae-5933f2d7a193","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_import_sources/{catalog_import_source}","id":"96cfc710-4a17-4eee-90c7-695c5b9ae203","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_import_sources/:catalog_import_source","description":"<p>Display the specified <code>CatalogImportSource</code>.</p>\n","urlObject":{"path":["api","v1","catalog_import_sources",":catalog_import_source"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_import_source"}]}},"response":[],"_postman_id":"96cfc710-4a17-4eee-90c7-695c5b9ae203"}],"id":"fae7b98c-091c-4799-a7e4-6baeaa26587e","_postman_id":"fae7b98c-091c-4799-a7e4-6baeaa26587e","description":""},{"name":"Store","item":[{"name":"api/v1/catalog_import_sources","id":"308f6009-c5de-423d-9417-7d81f9686652","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_import_sources","description":"<p>Create a new <code>CatalogImportSource</code> object.</p>\n","urlObject":{"path":["api","v1","catalog_import_sources"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"308f6009-c5de-423d-9417-7d81f9686652"}],"id":"033224b3-5cd9-4221-873a-d363c56405a9","_postman_id":"033224b3-5cd9-4221-873a-d363c56405a9","description":""},{"name":"Update","item":[{"name":"api/v1/catalog_import_sources/{catalog_import_source}","id":"d77e9807-cc0e-43aa-97cb-9b13ea3559f0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_import_sources/:catalog_import_source","description":"<p>Update the specified <code>CatalogImportSource</code> .</p>\n","urlObject":{"path":["api","v1","catalog_import_sources",":catalog_import_source"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_import_source"}]}},"response":[],"_postman_id":"d77e9807-cc0e-43aa-97cb-9b13ea3559f0"},{"name":"api/v1/catalog_import_sources/{catalog_import_source}","id":"0c9594df-e2b3-451b-aef3-340773ce2bf8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_import_sources/:catalog_import_source","description":"<p>Update the specified <code>CatalogImportSource</code> .</p>\n","urlObject":{"path":["api","v1","catalog_import_sources",":catalog_import_source"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_import_source"}]}},"response":[],"_postman_id":"0c9594df-e2b3-451b-aef3-340773ce2bf8"}],"id":"5696bee6-13db-4cc9-9e33-9b6f8ccc161d","_postman_id":"5696bee6-13db-4cc9-9e33-9b6f8ccc161d","description":""}],"id":"6f850a51-530d-48ef-b993-a710c93e5349","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> is_active</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>billOfMaterials</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>mappedItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6f850a51-530d-48ef-b993-a710c93e5349"},{"name":"Catalog Item Attributes","item":[{"name":"Bulk Store","item":[{"name":"api/v1/bulk_catalog_item_attributes","id":"064cf961-2bd8-41a6-8afa-e4deaefa4eb8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.catalog_item_id","value":null,"description":"<p>The data.<em>.catalog item id field is required., The data.</em>.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_definition_attribute_id","value":null,"description":"<p>The data.<em>.catalog definition attribute id field is required., The data.</em>.catalog definition attribute id field must be an integer.</p>\n","type":"text"},{"key":"data.*.value","value":null,"description":"<p>The data.<em>.value field is required., The data.</em>.value field must be a string., The data.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.order","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.order field must be an integer., The data.</em>.order field must not be greater than 99 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_catalog_item_attributes","description":"<p>Store multiple <code>CatalogItemAttribute</code> objects</p>\n","urlObject":{"path":["api","v1","bulk_catalog_item_attributes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"064cf961-2bd8-41a6-8afa-e4deaefa4eb8"}],"id":"bf8bd713-71ac-4653-ba75-24c14ecdb496","_postman_id":"bf8bd713-71ac-4653-ba75-24c14ecdb496","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_catalog_item_attributes","id":"e2b7ad88-dbf1-429f-9ca3-9c33caee72fd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.catalog_item_id","value":null,"description":"<p>The data.<em>.catalog item id field is required., The data.</em>.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_definition_attribute_id","value":null,"description":"<p>The data.<em>.catalog definition attribute id field is required., The data.</em>.catalog definition attribute id field must be an integer.</p>\n","type":"text"},{"key":"data.*.value","value":null,"description":"<p>The data.<em>.value field is required., The data.</em>.value field must be a string., The data.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.order","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.order field must be an integer., The data.</em>.order field must not be greater than 99 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_catalog_item_attributes","description":"<p>Update multiple <code>CatalogItemAttribute</code> objects</p>\n","urlObject":{"path":["api","v1","bulk_catalog_item_attributes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2b7ad88-dbf1-429f-9ca3-9c33caee72fd"}],"id":"221e431a-a73d-4de3-87c0-02ac57af2f34","_postman_id":"221e431a-a73d-4de3-87c0-02ac57af2f34","description":""},{"name":"Destroy","item":[{"name":"api/v1/catalog_item_attributes/{catalog_item_attribute}","id":"d7ca2e1d-f3ee-43ad-9e36-a69f8eeb5110","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_item_attributes/:catalog_item_attribute","description":"<p>Remove the specified <code>CatalogItemAttribute</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalog_item_attributes",":catalog_item_attribute"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item_attribute"}]}},"response":[],"_postman_id":"d7ca2e1d-f3ee-43ad-9e36-a69f8eeb5110"}],"id":"7d31bac7-dc69-4a8c-8a40-0ac3df6b6fbd","_postman_id":"7d31bac7-dc69-4a8c-8a40-0ac3df6b6fbd","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_item_attributes","id":"2aa5b659-7c93-43f4-bd03-6e2392b067b1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_item_attributes","description":"<p>Returns a list of multiple <code>CatalogItemAttribute</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalog_item_attributes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2aa5b659-7c93-43f4-bd03-6e2392b067b1"}],"id":"7695ce9f-72b4-4b91-ad1d-8f8b5a2e1771","_postman_id":"7695ce9f-72b4-4b91-ad1d-8f8b5a2e1771","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_item_attributes/{catalog_item_attribute}","id":"44623819-132d-4b7f-9c78-a8975b7f736c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_item_attributes/:catalog_item_attribute","description":"<p>Display the specified <code>CatalogItemAttribute</code>.</p>\n","urlObject":{"path":["api","v1","catalog_item_attributes",":catalog_item_attribute"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item_attribute"}]}},"response":[],"_postman_id":"44623819-132d-4b7f-9c78-a8975b7f736c"}],"id":"6edc8127-998a-41b3-900c-6930ee870c11","_postman_id":"6edc8127-998a-41b3-900c-6930ee870c11","description":""},{"name":"Store","item":[{"name":"api/v1/catalog_item_attributes","id":"1e9a89ad-dc4d-4ec4-9e54-2e50d6a93e09","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_definition_attribute_id","value":null,"description":"<p>The catalog definition attribute id field is required., The catalog definition attribute id field must be an integer.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>The value field is required., The value field must be a string., The value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), (Nullable), The order field must be an integer., The order field must not be greater than 99.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_item_attributes","description":"<p>Create a new <code>CatalogItemAttribute</code> object.</p>\n","urlObject":{"path":["api","v1","catalog_item_attributes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e9a89ad-dc4d-4ec4-9e54-2e50d6a93e09"}],"id":"d40ea4ab-a1e4-4fae-a198-c4bea200c960","_postman_id":"d40ea4ab-a1e4-4fae-a198-c4bea200c960","description":""},{"name":"Update","item":[{"name":"api/v1/catalog_item_attributes/{catalog_item_attribute}","id":"ca2c3068-23d4-47da-9e20-e0db0ad55276","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_definition_attribute_id","value":null,"description":"<p>The catalog definition attribute id field is required., The catalog definition attribute id field must be an integer.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>The value field is required., The value field must be a string., The value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), (Nullable), The order field must be an integer., The order field must not be greater than 99.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_item_attributes/:catalog_item_attribute","description":"<p>Update the specified <code>CatalogItemAttribute</code> .</p>\n","urlObject":{"path":["api","v1","catalog_item_attributes",":catalog_item_attribute"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item_attribute"}]}},"response":[],"_postman_id":"ca2c3068-23d4-47da-9e20-e0db0ad55276"},{"name":"api/v1/catalog_item_attributes/{catalog_item_attribute}","id":"2e99f824-003c-4c47-99ca-4eeebe4d2b14","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_definition_attribute_id","value":null,"description":"<p>The catalog definition attribute id field is required., The catalog definition attribute id field must be an integer.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>The value field is required., The value field must be a string., The value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), (Nullable), The order field must be an integer., The order field must not be greater than 99.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_item_attributes/:catalog_item_attribute","description":"<p>Update the specified <code>CatalogItemAttribute</code> .</p>\n","urlObject":{"path":["api","v1","catalog_item_attributes",":catalog_item_attribute"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item_attribute"}]}},"response":[],"_postman_id":"2e99f824-003c-4c47-99ca-4eeebe4d2b14"}],"id":"30303dad-0991-4134-9a0c-be4cf8896873","_postman_id":"30303dad-0991-4134-9a0c-be4cf8896873","description":""}],"id":"951cec58-6d61-4544-a0fa-a6175cd53954","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_definition_attribute_id</code>,<code> catalog_item_id</code>,<code> team_id</code>,<code> value</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>definition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>item</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"951cec58-6d61-4544-a0fa-a6175cd53954"},{"name":"Catalog Item Listings","item":[{"name":"Approvals","item":[{"name":"api/v1/catalog_item_listings/approvals","id":"11a98e73-5aac-46ae-9fb0-c06cd67e21ba","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_item_listings/approvals","description":"<p>Returns <code>CatalogItems</code> and associated data required for catalog management approvals in a well structured form.</p>\n","urlObject":{"path":["api","v1","catalog_item_listings","approvals"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"11a98e73-5aac-46ae-9fb0-c06cd67e21ba"}],"id":"11a28f51-940d-4c52-b413-02c74587cce2","_postman_id":"11a28f51-940d-4c52-b413-02c74587cce2","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_item_listings","id":"616389f7-7584-4806-9753-eb1041cf8808","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_item_listings","description":"<p>Returns a list of multiple <code>CatalogItem</code> objects based on optional criteria in a structured form..</p>\n","urlObject":{"path":["api","v1","catalog_item_listings"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"616389f7-7584-4806-9753-eb1041cf8808"}],"id":"6f33766a-e368-4f36-bc53-da5f6586529c","_postman_id":"6f33766a-e368-4f36-bc53-da5f6586529c","description":""},{"name":"List Items For Catalog Classes","item":[{"name":"api/v1/class/catalog_item_listings","id":"210e1a40-78c0-423d-9cae-a631bda51a76","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_class_id","value":null,"description":"<p>The catalog class id field is required., The catalog class id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/class/catalog_item_listings","description":"<p>Returns a well structured listing of Active <code>CatalogItems</code> within a specified <code>Class</code>.</p>\n","urlObject":{"path":["api","v1","class","catalog_item_listings"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"210e1a40-78c0-423d-9cae-a631bda51a76"}],"id":"ea97ddd9-3756-4082-aae5-8bd6fa2410f0","_postman_id":"ea97ddd9-3756-4082-aae5-8bd6fa2410f0","description":""},{"name":"List Items For Catalogs","item":[{"name":"api/v1/catalog/catalog_item_listings","id":"37de5c46-dc7e-42fa-b3a8-4f386ac3f13b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_id","value":null,"description":"<p>The catalog id field is required., The catalog id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog/catalog_item_listings","description":"<p>Returns a well structured listing of Active <code>CatalogItems</code> for a specified <code>Catalog</code>.</p>\n","urlObject":{"path":["api","v1","catalog","catalog_item_listings"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"37de5c46-dc7e-42fa-b3a8-4f386ac3f13b"}],"id":"b2c2858c-ac4d-437a-9a05-8925ab892e66","_postman_id":"b2c2858c-ac4d-437a-9a05-8925ab892e66","description":""},{"name":"Search","item":[{"name":"api/v1/search/catalog_item_listings","id":"b5dffd66-e911-4eeb-bc32-d0a9216b008d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"search","value":null,"description":"<p>The search field is required., The search field must be a string., The search field must be at least 3 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/search/catalog_item_listings","description":"<p>Provides a fuzzy search on <code>CatalogItems</code> and returns a custom data package with the full structure data.</p>\n","urlObject":{"path":["api","v1","search","catalog_item_listings"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5dffd66-e911-4eeb-bc32-d0a9216b008d"}],"id":"4336cf24-3925-499a-8344-ce5dbdc6a106","_postman_id":"4336cf24-3925-499a-8344-ce5dbdc6a106","description":""},{"name":"Search Approvals","item":[{"name":"api/v1/search/catalog_item_listings/approvals","id":"6173f74f-6541-4f9d-9e81-42f080005715","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"search","value":null,"description":"<p>The search field is required., The search field must be a string., The search field must be at least 3 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/search/catalog_item_listings/approvals","description":"<p>Performs a search for 1, and the hierarchy to return items that match the description that are not yet reviewed.</p>\n","urlObject":{"path":["api","v1","search","catalog_item_listings","approvals"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6173f74f-6541-4f9d-9e81-42f080005715"}],"id":"86d61532-ed2c-4cda-8bd2-957fdff09698","_postman_id":"86d61532-ed2c-4cda-8bd2-957fdff09698","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_item_listings/{catalog_item_listing}","id":"5db4eb3d-6d65-4ba9-8e65-c8befa98570f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_item_listings/:catalog_item_listing","description":"<p>Display the specified <code>CatalogItem</code> in a structured form.</p>\n","urlObject":{"path":["api","v1","catalog_item_listings",":catalog_item_listing"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item_listing"}]}},"response":[],"_postman_id":"5db4eb3d-6d65-4ba9-8e65-c8befa98570f"}],"id":"d663ce8c-e95e-4c11-b839-b6beb0e329c4","_postman_id":"d663ce8c-e95e-4c11-b839-b6beb0e329c4","description":""}],"id":"c68b7d31-64f9-4093-bc8d-20bb18a17e58","_postman_id":"c68b7d31-64f9-4093-bc8d-20bb18a17e58","description":""},{"name":"Catalog Items","item":[{"name":"Check Exists","item":[{"name":"api/v1/catalog_item_exists","id":"b9fbf558-ed64-48e5-a9b9-22526b50b584","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_item_exists","description":"<p>Used by the frontend to check if a catalog item exists - feature: #6485.</p>\n","urlObject":{"path":["api","v1","catalog_item_exists"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9fbf558-ed64-48e5-a9b9-22526b50b584"}],"id":"cf2e1d7c-a804-409e-ab22-36ce01ce50d8","_postman_id":"cf2e1d7c-a804-409e-ab22-36ce01ce50d8","description":""},{"name":"Cost Per Unit For Orderable","item":[{"name":"api/v1/catalog_items/cost_per_unit_listing_for_orderable","id":"4dd5c75c-a88d-4603-ab42-42acb7f152e1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_items/cost_per_unit_listing_for_orderable","description":"<p>Provides a listing of Catalog Items that have been bid on or purchased for a specified timeframe and a specific currency. The listing is prepared based on the purchase items on the provided <code>Orderable</code> In addition to the item, a number of aggregate price points (min, max, average) is provided.</p>\n","urlObject":{"path":["api","v1","catalog_items","cost_per_unit_listing_for_orderable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4dd5c75c-a88d-4603-ab42-42acb7f152e1"}],"id":"d1e79af6-f57d-4e01-a3dc-76c9cc42a306","_postman_id":"d1e79af6-f57d-4e01-a3dc-76c9cc42a306","description":""},{"name":"Destroy","item":[{"name":"api/v1/catalog_items/{catalog_item}","id":"bc60d234-e3ef-4f87-bf8e-46b9ffb8a992","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_items/:catalog_item","description":"<p>Remove the specified <code>CatalogItem</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalog_items",":catalog_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item"}]}},"response":[],"_postman_id":"bc60d234-e3ef-4f87-bf8e-46b9ffb8a992"}],"id":"280bc0e2-3652-4453-955a-bece803383b7","_postman_id":"280bc0e2-3652-4453-955a-bece803383b7","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_items","id":"c9c29c00-41d3-45d5-a202-8cb194be3eb2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_items","description":"<p>Returns a list of multiple <code>CatalogItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalog_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9c29c00-41d3-45d5-a202-8cb194be3eb2"}],"id":"fc15a192-0ea2-4146-9cdc-dcfc23a09861","_postman_id":"fc15a192-0ea2-4146-9cdc-dcfc23a09861","description":""},{"name":"Price History","item":[{"name":"api/v1/catalog_items/cost_history_listing","id":"900bd64a-0a67-4b48-a542-1df9bd74577d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_items/cost_history_listing?currency_code&start_date&end_date","description":"<p>Provides a listing of Catalog Items that have been bid on or purchased for a specified timeframe and a specific currency. In addition to the item, a number of aggregate price points (min, max, average) is provided.</p>\n","urlObject":{"path":["api","v1","catalog_items","cost_history_listing"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The currency code field is required., The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text/plain"},"key":"currency_code","value":null},{"description":{"content":"<p>The start date field is required., The start date field must be a valid date.</p>\n","type":"text/plain"},"key":"start_date","value":null},{"description":{"content":"<p>The end date field is required., The end date field must be a valid date.</p>\n","type":"text/plain"},"key":"end_date","value":null}],"variable":[]}},"response":[],"_postman_id":"900bd64a-0a67-4b48-a542-1df9bd74577d"}],"id":"fd362372-e3b7-45fb-b997-eae88951b5bc","_postman_id":"fd362372-e3b7-45fb-b997-eae88951b5bc","description":""},{"name":"Price History For Orderable","item":[{"name":"api/v1/catalog_items/cost_history_listing_for_orderable","id":"d093002e-9c91-495f-aab0-2fc4808368a2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_items/cost_history_listing_for_orderable?currency_code&start_date&end_date&orderable_type&orderable_id","description":"<p>Provides a listing of Catalog Items that have been bid on or purchased for a specified timeframe and a specific currency. The listing is prepared based on the purchase items on the provided <code>Orderable</code> In addition to the item, a number of aggregate price points (min, max, average) is provided.</p>\n","urlObject":{"path":["api","v1","catalog_items","cost_history_listing_for_orderable"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The currency code field is required., The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text/plain"},"key":"currency_code","value":null},{"description":{"content":"<p>The start date field is required., The start date field must be a valid date.</p>\n","type":"text/plain"},"key":"start_date","value":null},{"description":{"content":"<p>The end date field is required., The end date field must be a valid date.</p>\n","type":"text/plain"},"key":"end_date","value":null},{"description":{"content":"<p>The orderable type field is required., The orderable type field must be a string., The selected orderable type is invalid, it must exist in bid, offer, order, requisition.</p>\n","type":"text/plain"},"key":"orderable_type","value":null},{"description":{"content":"<p>The orderable id field is required., The orderable id field must be an integer.</p>\n","type":"text/plain"},"key":"orderable_id","value":null}],"variable":[]}},"response":[],"_postman_id":"d093002e-9c91-495f-aab0-2fc4808368a2"}],"id":"21db5bde-2724-4893-a9a6-714b55d812dd","_postman_id":"21db5bde-2724-4893-a9a6-714b55d812dd","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_items/{catalog_item}","id":"6a8a7e20-d485-4a88-aa45-97fccec5a044","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_items/:catalog_item","description":"<p>Display the specified <code>CatalogItem</code>.</p>\n","urlObject":{"path":["api","v1","catalog_items",":catalog_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item"}]}},"response":[],"_postman_id":"6a8a7e20-d485-4a88-aa45-97fccec5a044"}],"id":"f5446df1-fefb-49ff-9925-35e5c84f6de9","_postman_id":"f5446df1-fefb-49ff-9925-35e5c84f6de9","description":""},{"name":"Store","item":[{"name":"api/v1/catalog_items","id":"bdfa1fe8-1a7c-4702-b29d-0bedac47c9bc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_sub_class_id","value":null,"description":"<p>The catalog sub class id field is required., The catalog sub class id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_purchasable","value":null,"description":"<p>(Nullable), The is purchasable field must be true or false.</p>\n","type":"text"},{"key":"is_service","value":null,"description":"<p>(Nullable), The is service field must be true or false.</p>\n","type":"text"},{"key":"requires_documentation","value":null,"description":"<p>(Nullable), The requires documentation field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"purchase_description","value":null,"description":"<p>The purchase description field is required., The purchase description field must be a string., The purchase description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"short_description","value":null,"description":"<p>The short description field is required., The short description field must be a string., The short description field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"sku","value":null,"description":"<p>(Nullable), The sku field must be a string., The sku field must not be greater than 40 characters.</p>\n","type":"text"},{"key":"unit_of_measure","value":null,"description":"<p>The unit of measure field is required., The unit of measure field must be a string.</p>\n","type":"text"},{"key":"weight","value":null,"description":"<p>(Nullable), The weight field must be a number., The weight field must be at least 0., The weight field must not be greater than 9999999.99999.</p>\n","type":"text"},{"key":"attributes","value":null,"description":"<p>(Optional), (Nullable), The attributes field must be an array.</p>\n","type":"text"},{"key":"attributes.*.catalog_definition_attribute_id","value":null,"description":"<p>The attributes.<em>.catalog definition attribute id field is required when attributes is present., The attributes.</em>.catalog definition attribute id field must be an integer.</p>\n","type":"text"},{"key":"attributes.*.value","value":null,"description":"<p>The attributes.<em>.value field is required when attributes is present., (Nullable), The attributes.</em>.value field must be a string., The attributes.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_items","description":"<p>Create a new <code>CatalogItem</code> object.</p>\n","urlObject":{"path":["api","v1","catalog_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bdfa1fe8-1a7c-4702-b29d-0bedac47c9bc"}],"id":"3927bf77-60cf-4ecd-a8a2-9d2b41af4bbf","_postman_id":"3927bf77-60cf-4ecd-a8a2-9d2b41af4bbf","description":""},{"name":"Summary","item":[{"name":"api/v1/catalog_item_summary","id":"e9036f45-4e80-415a-9035-58b5b24bfccb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_item_summary","description":"<p>gets summary of the different counts of catalog items.</p>\n","urlObject":{"path":["api","v1","catalog_item_summary"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9036f45-4e80-415a-9035-58b5b24bfccb"}],"id":"897feb97-61e5-44c9-9767-c4ab69029198","_postman_id":"897feb97-61e5-44c9-9767-c4ab69029198","description":""},{"name":"Update","item":[{"name":"api/v1/catalog_items/{catalog_item}","id":"1b542994-5aed-48cf-b841-8bcdedebea58","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_sub_class_id","value":null,"description":"<p>(Nullable), The catalog sub class id field must be an integer.</p>\n","type":"text"},{"key":"is_purchasable","value":null,"description":"<p>(Nullable), The is purchasable field must be true or false.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_service","value":null,"description":"<p>(Nullable), The is service field must be true or false.</p>\n","type":"text"},{"key":"requires_documentation","value":null,"description":"<p>(Nullable), The requires documentation field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"purchase_description","value":null,"description":"<p>The purchase description field must be a string., The purchase description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"short_description","value":null,"description":"<p>The short description field must be a string., The short description field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"sku","value":null,"description":"<p>(Nullable), The sku field must be a string., The sku field must not be greater than 40 characters.</p>\n","type":"text"},{"key":"unit_of_measure","value":null,"description":"<p>(Nullable), The unit of measure field must be a string., The selected unit of measure must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"weight","value":null,"description":"<p>(Nullable), The weight field must be a number., The weight field must be at least 0., The weight field must not be greater than 9999999.99999.</p>\n","type":"text"},{"key":"attributes","value":null,"description":"<p>(Optional), (Nullable), The attributes field must be an array.</p>\n","type":"text"},{"key":"attributes.*.catalog_definition_attribute_id","value":null,"description":"<p>The attributes.<em>.catalog definition attribute id field is required when attributes is present., The attributes.</em>.catalog definition attribute id field must be an integer.</p>\n","type":"text"},{"key":"attributes.*.value","value":null,"description":"<p>The attributes.<em>.value field is required unless attributes.</em>.delete is in true., (Nullable), The attributes.<em>.value field must be a string., The attributes.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"attributes.*.delete","value":null,"description":"<p>(Optional), The attributes.*.delete field must be true or false.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_items/:catalog_item","description":"<p>Update the specified <code>CatalogItem</code> .</p>\n","urlObject":{"path":["api","v1","catalog_items",":catalog_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item"}]}},"response":[],"_postman_id":"1b542994-5aed-48cf-b841-8bcdedebea58"},{"name":"api/v1/catalog_items/{catalog_item}","id":"42cb4128-437b-477f-b779-158af7214a05","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_sub_class_id","value":null,"description":"<p>(Nullable), The catalog sub class id field must be an integer.</p>\n","type":"text"},{"key":"is_purchasable","value":null,"description":"<p>(Nullable), The is purchasable field must be true or false.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_service","value":null,"description":"<p>(Nullable), The is service field must be true or false.</p>\n","type":"text"},{"key":"requires_documentation","value":null,"description":"<p>(Nullable), The requires documentation field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"purchase_description","value":null,"description":"<p>The purchase description field must be a string., The purchase description field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"short_description","value":null,"description":"<p>The short description field must be a string., The short description field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"sku","value":null,"description":"<p>(Nullable), The sku field must be a string., The sku field must not be greater than 40 characters.</p>\n","type":"text"},{"key":"unit_of_measure","value":null,"description":"<p>(Nullable), The unit of measure field must be a string., The selected unit of measure must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"weight","value":null,"description":"<p>(Nullable), The weight field must be a number., The weight field must be at least 0., The weight field must not be greater than 9999999.99999.</p>\n","type":"text"},{"key":"attributes","value":null,"description":"<p>(Optional), (Nullable), The attributes field must be an array.</p>\n","type":"text"},{"key":"attributes.*.catalog_definition_attribute_id","value":null,"description":"<p>The attributes.<em>.catalog definition attribute id field is required when attributes is present., The attributes.</em>.catalog definition attribute id field must be an integer.</p>\n","type":"text"},{"key":"attributes.*.value","value":null,"description":"<p>The attributes.<em>.value field is required unless attributes.</em>.delete is in true., (Nullable), The attributes.<em>.value field must be a string., The attributes.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"attributes.*.delete","value":null,"description":"<p>(Optional), The attributes.*.delete field must be true or false.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_items/:catalog_item","description":"<p>Update the specified <code>CatalogItem</code> .</p>\n","urlObject":{"path":["api","v1","catalog_items",":catalog_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_item"}]}},"response":[],"_postman_id":"42cb4128-437b-477f-b779-158af7214a05"}],"id":"a70d4c66-fec0-4c66-ba62-c928203ef5e2","_postman_id":"a70d4c66-fec0-4c66-ba62-c928203ef5e2","description":""}],"id":"1bbdbf8d-605f-488c-95c7-7acef58200e7","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_definition_id</code>,<code> catalog_sub_class_id</code>,<code> is_active</code>,<code> metadata</code>,<code> purchase_description</code>,<code> short_description</code>,<code> sku</code>,<code> status</code>,<code> team_id</code>,<code> unit_of_measure</code>,<code> updated_at</code>,<code> validation_graph_uuid</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attributes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bidItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billOfMaterialItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billOfMaterials</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalog</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogDefinition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogMap</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogSubClass</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>classHierarchy</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>definitionAttributes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastEdit</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastTransition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>osds</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitionItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>servicePlans</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>transactions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>unit</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>immutable</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1bbdbf8d-605f-488c-95c7-7acef58200e7"},{"name":"Catalog Maps","item":[{"name":"Destroy","item":[{"name":"api/v1/catalog_maps/{catalog_map}","id":"087363d2-6793-49f3-84f7-f404a77aa2e4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_maps/:catalog_map","description":"<p>Remove the specified <code>CatalogMap</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalog_maps",":catalog_map"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_map"}]}},"response":[],"_postman_id":"087363d2-6793-49f3-84f7-f404a77aa2e4"}],"id":"af3970f8-0596-4c32-a40f-05d8bbc7c7d2","_postman_id":"af3970f8-0596-4c32-a40f-05d8bbc7c7d2","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_maps","id":"58e74f55-3e72-4300-9d58-fc1689d9cb81","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_maps","description":"<p>Returns a list of multiple <code>CatalogMap</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalog_maps"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"58e74f55-3e72-4300-9d58-fc1689d9cb81"}],"id":"586a4507-3ff4-457d-a975-25f49c2237ad","_postman_id":"586a4507-3ff4-457d-a975-25f49c2237ad","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_maps/{catalog_map}","id":"d417ea8c-1eb1-4078-a0d1-e278204f3adf","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_maps/:catalog_map","description":"<p>Display the specified <code>CatalogMap</code>.</p>\n","urlObject":{"path":["api","v1","catalog_maps",":catalog_map"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_map"}]}},"response":[],"_postman_id":"d417ea8c-1eb1-4078-a0d1-e278204f3adf"}],"id":"1b63d596-820a-40b2-a44a-610f9393081a","_postman_id":"1b63d596-820a-40b2-a44a-610f9393081a","description":""},{"name":"Store","item":[{"name":"api/v1/catalog_maps","id":"783887a6-42bb-442f-be92-4ae0932da844","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_import_source_id","value":null,"description":"<p>The catalog import source id field is required., The catalog import source id field must be an integer.</p>\n","type":"text"},{"key":"import_catalog_id","value":null,"description":"<p>The import catalog id field is required., The import catalog id field must be a string., The import catalog id field must not be greater than 63 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_maps","description":"<p>Create a new <code>CatalogMap</code> object.</p>\n","urlObject":{"path":["api","v1","catalog_maps"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"783887a6-42bb-442f-be92-4ae0932da844"}],"id":"26b033d8-7c50-48df-ae82-0b30a0e6a7a8","_postman_id":"26b033d8-7c50-48df-ae82-0b30a0e6a7a8","description":""},{"name":"Update","item":[{"name":"api/v1/catalog_maps/{catalog_map}","id":"5150de5b-885d-47ca-a172-44ccfbbf9232","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_import_source_id","value":null,"description":"<p>(Optional), The catalog import source id field must be an integer.</p>\n","type":"text"},{"key":"import_catalog_id","value":null,"description":"<p>(Optional), The import catalog id field must be a string., The import catalog id field must not be greater than 63 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_maps/:catalog_map","description":"<p>Update the specified <code>CatalogMap</code> .</p>\n","urlObject":{"path":["api","v1","catalog_maps",":catalog_map"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_map"}]}},"response":[],"_postman_id":"5150de5b-885d-47ca-a172-44ccfbbf9232"},{"name":"api/v1/catalog_maps/{catalog_map}","id":"91d4a9db-d73d-4747-8fe1-8dac20c6f066","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_import_source_id","value":null,"description":"<p>(Optional), The catalog import source id field must be an integer.</p>\n","type":"text"},{"key":"import_catalog_id","value":null,"description":"<p>(Optional), The import catalog id field must be a string., The import catalog id field must not be greater than 63 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_maps/:catalog_map","description":"<p>Update the specified <code>CatalogMap</code> .</p>\n","urlObject":{"path":["api","v1","catalog_maps",":catalog_map"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_map"}]}},"response":[],"_postman_id":"91d4a9db-d73d-4747-8fe1-8dac20c6f066"}],"id":"788c9811-3bd7-4ddc-8a52-71336118d0c9","_postman_id":"788c9811-3bd7-4ddc-8a52-71336118d0c9","description":""}],"id":"132f3c27-c760-4951-9be2-a5fbb747ef5f","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_import_source_id</code>,<code> catalog_item_id</code>,<code> import_catalog_id</code>,<code> is_active</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>catalog</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalog_import_source</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"132f3c27-c760-4951-9be2-a5fbb747ef5f"},{"name":"Catalog Sub Classes","item":[{"name":"Destroy","item":[{"name":"api/v1/catalog_sub_classes/{catalog_sub_class}","id":"72ab5e2b-8151-4feb-901e-9c571090c0e6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_sub_classes/:catalog_sub_class","description":"<p>Remove the specified <code>CatalogSubClass</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalog_sub_classes",":catalog_sub_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_sub_class"}]}},"response":[],"_postman_id":"72ab5e2b-8151-4feb-901e-9c571090c0e6"}],"id":"1a32dca0-c6cb-43a5-8116-da1e8527c8c7","_postman_id":"1a32dca0-c6cb-43a5-8116-da1e8527c8c7","description":""},{"name":"Index","item":[{"name":"api/v1/catalog_sub_classes","id":"3055ceb6-2817-4da3-96a1-c7738d1423eb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_sub_classes","description":"<p>Returns a list of multiple <code>CatalogSubClass</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalog_sub_classes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"3055ceb6-2817-4da3-96a1-c7738d1423eb"}],"id":"ef22640d-3024-4b05-bf7d-b6a8499db2f4","_postman_id":"ef22640d-3024-4b05-bf7d-b6a8499db2f4","description":""},{"name":"Show","item":[{"name":"api/v1/catalog_sub_classes/{catalog_sub_class}","id":"fd7aa874-b5f2-41b1-9570-0f575d026552","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalog_sub_classes/:catalog_sub_class","description":"<p>Display the specified <code>CatalogSubClass</code>.</p>\n","urlObject":{"path":["api","v1","catalog_sub_classes",":catalog_sub_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_sub_class"}]}},"response":[],"_postman_id":"fd7aa874-b5f2-41b1-9570-0f575d026552"}],"id":"0c8b8a01-6408-485b-9f77-fdd8c044b735","_postman_id":"0c8b8a01-6408-485b-9f77-fdd8c044b735","description":""},{"name":"Store","item":[{"name":"api/v1/catalog_sub_classes","id":"5fd41acc-d970-4eea-9834-ad9f6e91e966","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_class_id","value":null,"description":"<p>The catalog class id field is required., The catalog class id field must be an integer.</p>\n","type":"text"},{"key":"catalog_definition_id","value":null,"description":"<p>The catalog definition id field is required., The catalog definition id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_sub_classes","description":"<p>Create a new <code>CatalogSubClass</code> object.</p>\n","urlObject":{"path":["api","v1","catalog_sub_classes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"5fd41acc-d970-4eea-9834-ad9f6e91e966"}],"id":"8928cfc2-28fb-4005-a8b4-6da6a93e2e7b","_postman_id":"8928cfc2-28fb-4005-a8b4-6da6a93e2e7b","description":""},{"name":"Update","item":[{"name":"api/v1/catalog_sub_classes/{catalog_sub_class}","id":"45067aaa-b260-4e85-ada4-763c7c849dd5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_class_id","value":null,"description":"<p>(Optional), The catalog class id field must be an integer.</p>\n","type":"text"},{"key":"catalog_definition_id","value":null,"description":"<p>(Optional), The catalog definition id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_sub_classes/:catalog_sub_class","description":"<p>Update the specified <code>CatalogSubClass</code> .</p>\n","urlObject":{"path":["api","v1","catalog_sub_classes",":catalog_sub_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_sub_class"}]}},"response":[],"_postman_id":"45067aaa-b260-4e85-ada4-763c7c849dd5"},{"name":"api/v1/catalog_sub_classes/{catalog_sub_class}","id":"3031484b-baa1-4fcd-9874-074d57e6793c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"catalog_class_id","value":null,"description":"<p>(Optional), The catalog class id field must be an integer.</p>\n","type":"text"},{"key":"catalog_definition_id","value":null,"description":"<p>(Optional), The catalog definition id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalog_sub_classes/:catalog_sub_class","description":"<p>Update the specified <code>CatalogSubClass</code> .</p>\n","urlObject":{"path":["api","v1","catalog_sub_classes",":catalog_sub_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog_sub_class"}]}},"response":[],"_postman_id":"3031484b-baa1-4fcd-9874-074d57e6793c"}],"id":"d542aaff-5a3a-4966-a806-cdf6de8e5c80","_postman_id":"d542aaff-5a3a-4966-a806-cdf6de8e5c80","description":""}],"id":"cfc91906-c4ab-42ea-a277-229a7fdb1719","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_class_id</code>,<code> catalog_definition_id</code>,<code> is_active</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>catalogClass</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogDefinition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>className</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>hierarchial</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"cfc91906-c4ab-42ea-a277-229a7fdb1719"},{"name":"Catalogs","item":[{"name":"Destroy","item":[{"name":"api/v1/catalogs/{catalog}","id":"682afbd8-9b7d-4f5d-936c-c3ff4f492359","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalogs/:catalog","description":"<p>Remove the specified <code>Catalog</code> from storage.</p>\n","urlObject":{"path":["api","v1","catalogs",":catalog"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog"}]}},"response":[],"_postman_id":"682afbd8-9b7d-4f5d-936c-c3ff4f492359"}],"id":"5e9cba02-a831-4fe3-b951-969498376de1","_postman_id":"5e9cba02-a831-4fe3-b951-969498376de1","description":""},{"name":"Index","item":[{"name":"api/v1/catalogs","id":"620a6fc0-a9fa-4585-a988-f48bf2bc67af","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalogs","description":"<p>Returns a list of multiple <code>Catalog</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","catalogs"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"620a6fc0-a9fa-4585-a988-f48bf2bc67af"}],"id":"be09ef5f-1ae6-4b95-8959-f428de47b8da","_postman_id":"be09ef5f-1ae6-4b95-8959-f428de47b8da","description":""},{"name":"Show","item":[{"name":"api/v1/catalogs/{catalog}","id":"a7bf70cd-7383-4a5a-beb1-195460344c2e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/catalogs/:catalog","description":"<p>Display the specified <code>Catalog</code>.</p>\n","urlObject":{"path":["api","v1","catalogs",":catalog"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog"}]}},"response":[],"_postman_id":"a7bf70cd-7383-4a5a-beb1-195460344c2e"}],"id":"065b8312-f129-47b4-9f8d-c87123c704af","_postman_id":"065b8312-f129-47b4-9f8d-c87123c704af","description":""},{"name":"Store","item":[{"name":"api/v1/catalogs","id":"c33893a2-d1ea-41b0-84b0-c916df2e0a89","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalogs","description":"<p>Create a new <code>Catalog</code> object.</p>\n","urlObject":{"path":["api","v1","catalogs"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c33893a2-d1ea-41b0-84b0-c916df2e0a89"}],"id":"90546296-435e-4559-b5d2-bd670a89a9af","_postman_id":"90546296-435e-4559-b5d2-bd670a89a9af","description":""},{"name":"Update","item":[{"name":"api/v1/catalogs/{catalog}","id":"5d6a06c9-40fe-46a5-9af5-72673608c5d1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":null,"description":"<p>The id field is required., The id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalogs/:catalog","description":"<p>Update the specified <code>Catalog</code> .</p>\n","urlObject":{"path":["api","v1","catalogs",":catalog"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog"}]}},"response":[],"_postman_id":"5d6a06c9-40fe-46a5-9af5-72673608c5d1"},{"name":"api/v1/catalogs/{catalog}","id":"3b7fefde-4d18-45d9-a031-e09d1b0f1e5f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":null,"description":"<p>The id field is required., The id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/catalogs/:catalog","description":"<p>Update the specified <code>Catalog</code> .</p>\n","urlObject":{"path":["api","v1","catalogs",":catalog"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"catalog"}]}},"response":[],"_postman_id":"3b7fefde-4d18-45d9-a031-e09d1b0f1e5f"}],"id":"b81892e3-8460-4f9d-88b0-25ebdef27122","_postman_id":"b81892e3-8460-4f9d-88b0-25ebdef27122","description":""}],"id":"61a135d7-4aa6-4d75-9222-98891e479db4","description":"<p><code>Catalogs</code> are the top level of the Catalog Management structure.</p>\n<p><code>Catalogs</code> have one or many <code>CatalogClasses</code></p>\n<p>The API provides full CRUD support for single models.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_definition_id</code>,<code> catalog_sub_class_id</code>,<code> is_active</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>catalogClass</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"61a135d7-4aa6-4d75-9222-98891e479db4"},{"name":"Codables","item":[{"name":"Store","item":[{"name":"api/v1/codables","id":"4ca97db9-6ce2-4f62-83a8-e02d85bcc123","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"cost_code_id","value":null,"description":"<p>(Nullable), The cost code id field must be an integer.</p>\n","type":"text"},{"key":"codable_id","value":null,"description":"<p>The codable id field is required., The codable id field must be an integer.</p>\n","type":"text"},{"key":"codable_type","value":null,"description":"<p>The codable type field is required., The selected codable type is invalid, it must exist in Allocation, BillOfMaterialItem, InventoryTransaction, BidItem, Bid, Offer, OfferItem, Order, OrderItem, SalesOrder, SalesOrderItem, Requisition, RequisitionItem, PurchaseOrderItem.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/codables","description":"<p>Create a new <code>Codable</code> object.</p>\n","urlObject":{"path":["api","v1","codables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ca97db9-6ce2-4f62-83a8-e02d85bcc123"}],"id":"7066c2f6-d926-466a-bfbd-fbdb5fe89179","_postman_id":"7066c2f6-d926-466a-bfbd-fbdb5fe89179","description":""}],"id":"04f6791e-5b0e-4628-ab71-c89d05d39545","description":"<p><code>Codables</code> create a relationship between a codable entity and a <code>CostCode</code>\neg. Requisitions, Bids, Bit Items etc.</p>\n<p>The API provides only the <code>Create</code> support for single model.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> codable_id</code>,<code> codable_type</code>,<code> cost_code_id</code>,<code> is_active</code>,<code> project_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>codable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>costCode</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"04f6791e-5b0e-4628-ab71-c89d05d39545"},{"name":"Comments","item":[{"name":"Destroy","item":[{"name":"api/v1/comments/{comment}","id":"7c2f185a-7e61-4916-9f5c-23a74326be2d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/comments/:comment","description":"<p>Remove the specified <code>Comment</code> from storage.</p>\n","urlObject":{"path":["api","v1","comments",":comment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"comment"}]}},"response":[],"_postman_id":"7c2f185a-7e61-4916-9f5c-23a74326be2d"}],"id":"b495e167-e507-4115-b95f-1ef253110c39","_postman_id":"b495e167-e507-4115-b95f-1ef253110c39","description":""},{"name":"Index","item":[{"name":"api/v1/comments","id":"4a7ca3d2-176d-42f3-aefe-0b3585167264","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/comments","description":"<p>Returns a list of multiple <code>Comment</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","comments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a7ca3d2-176d-42f3-aefe-0b3585167264"}],"id":"663b460b-ff18-4a36-8e5d-da4904b2a801","_postman_id":"663b460b-ff18-4a36-8e5d-da4904b2a801","description":""},{"name":"Show","item":[{"name":"api/v1/comments/{comment}","id":"35919694-81a6-45af-a32d-b8cab107d546","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/comments/:comment","description":"<p>Display the specified <code>Comment</code>.</p>\n","urlObject":{"path":["api","v1","comments",":comment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"comment"}]}},"response":[],"_postman_id":"35919694-81a6-45af-a32d-b8cab107d546"}],"id":"c432769c-d6d2-44df-b8ed-b5ef3f222eed","_postman_id":"c432769c-d6d2-44df-b8ed-b5ef3f222eed","description":""},{"name":"Store","item":[{"name":"api/v1/comments","id":"f7da86a7-4ae9-49f9-807c-7feedf47e27b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>The comment field is required., The comment field must be a string., The comment field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"commentable_id","value":null,"description":"<p>The commentable id field is required., The commentable id field must be an integer., The commentable id field must be at least 0., The commentable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"commentable_type","value":null,"description":"<p>The commentable type field is required., The commentable type field must be a string.</p>\n","type":"text"},{"key":"comment_type","value":null,"description":"<p>The comment type field is required., The comment type field must be a string., The comment type field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/comments","description":"<p>Create a new <code>Comment</code> object.</p>\n","urlObject":{"path":["api","v1","comments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f7da86a7-4ae9-49f9-807c-7feedf47e27b"}],"id":"b39934d2-11f1-4c80-a206-b2df3c65a979","_postman_id":"b39934d2-11f1-4c80-a206-b2df3c65a979","description":""},{"name":"Update","item":[{"name":"api/v1/comments/{comment}","id":"8ed3b335-285d-43d0-aa2e-3f14737bc675","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Optional), The comment field must be a string., The comment field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"commentable_id","value":null,"description":"<p>(Optional), The commentable id field must be an integer., The commentable id field must be at least 0., The commentable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"commentable_type","value":null,"description":"<p>(Optional), The commentable type field must be a string.</p>\n","type":"text"},{"key":"comment_type","value":null,"description":"<p>(Optional), The comment type field must be a string., The comment type field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/comments/:comment","description":"<p>Update the specified <code>Comment</code> .</p>\n","urlObject":{"path":["api","v1","comments",":comment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"comment"}]}},"response":[],"_postman_id":"8ed3b335-285d-43d0-aa2e-3f14737bc675"},{"name":"api/v1/comments/{comment}","id":"487fccfa-f667-453d-b8f8-a17f8f85277b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Optional), The comment field must be a string., The comment field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"commentable_id","value":null,"description":"<p>(Optional), The commentable id field must be an integer., The commentable id field must be at least 0., The commentable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"commentable_type","value":null,"description":"<p>(Optional), The commentable type field must be a string.</p>\n","type":"text"},{"key":"comment_type","value":null,"description":"<p>(Optional), The comment type field must be a string., The comment type field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/comments/:comment","description":"<p>Update the specified <code>Comment</code> .</p>\n","urlObject":{"path":["api","v1","comments",":comment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"comment"}]}},"response":[],"_postman_id":"487fccfa-f667-453d-b8f8-a17f8f85277b"}],"id":"75aa3728-a5af-4824-a311-a536797145d4","_postman_id":"75aa3728-a5af-4824-a311-a536797145d4","description":""}],"id":"6eea3e39-516e-44d9-bf3f-c61e38991415","description":"<p><code>Comments</code> are used to create contextual notes within the application. They can be attached to many different entity types.</p>\n<p><em><strong>Note:</strong></em></p>\n<p><code>Comments</code> support <strong>Markdown</strong> and are sanitized before storage. The application also escapes the content before render in the application. Developers should take care when directly rendering this data in your own applications.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> comment</code>,<code> comment_type</code>,<code> commentable_id</code>,<code> commentable_type</code>,<code> created_at</code>,<code> project_id</code>,<code> team_id</code>,<code> updated_at</code>,<code> user_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>commentable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6eea3e39-516e-44d9-bf3f-c61e38991415"},{"name":"Cost Codes","item":[{"name":"Destroy","item":[{"name":"api/v1/cost_codes/{cost_code}","id":"c6b08315-1abd-46f1-916f-f75fb4c26342","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/cost_codes/:cost_code","description":"<p>Remove the specified <code>CostCode</code> from storage.</p>\n","urlObject":{"path":["api","v1","cost_codes",":cost_code"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"cost_code"}]}},"response":[],"_postman_id":"c6b08315-1abd-46f1-916f-f75fb4c26342"}],"id":"0dc6184b-49d2-4554-aa1c-36e7e45c8f97","_postman_id":"0dc6184b-49d2-4554-aa1c-36e7e45c8f97","description":""},{"name":"Index","item":[{"name":"api/v1/cost_codes","id":"351cd537-ff49-4640-b794-f35c6b4dc048","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/cost_codes","description":"<p>Returns a list of multiple <code>CostCode</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","cost_codes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"351cd537-ff49-4640-b794-f35c6b4dc048"}],"id":"488d668e-cae8-4d16-8224-087163013347","_postman_id":"488d668e-cae8-4d16-8224-087163013347","description":""},{"name":"Show","item":[{"name":"api/v1/cost_codes/{cost_code}","id":"38485738-e8b8-4dae-98d1-4b20f3f1328a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/cost_codes/:cost_code","description":"<p>Display the specified <code>CostCode</code>.</p>\n","urlObject":{"path":["api","v1","cost_codes",":cost_code"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"cost_code"}]}},"response":[],"_postman_id":"38485738-e8b8-4dae-98d1-4b20f3f1328a"}],"id":"a0efd187-25e0-4136-b8f9-2a0dad4174e3","_postman_id":"a0efd187-25e0-4136-b8f9-2a0dad4174e3","description":""},{"name":"Store","item":[{"name":"api/v1/cost_codes","id":"40536367-8374-42c3-8fe5-826ac79293eb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allows_coding","value":null,"description":"<p>The allows coding field is required., The allows coding field must be true or false.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>The cost structure id field is required., The cost structure id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 55 characters.</p>\n","type":"text"},{"key":"code","value":null,"description":"<p>The code field is required., The code field must be a string., The code field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"parent_id","value":null,"description":"<p>(Nullable), The parent id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/cost_codes","description":"<p>Create a new <code>CostCode</code> object.</p>\n","urlObject":{"path":["api","v1","cost_codes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"40536367-8374-42c3-8fe5-826ac79293eb"}],"id":"260ce424-cf81-4ee8-bb7a-d83029191d43","_postman_id":"260ce424-cf81-4ee8-bb7a-d83029191d43","description":""},{"name":"Update","item":[{"name":"api/v1/cost_codes/{cost_code}","id":"d4b37db5-e003-4cc8-a652-ae2912ef7da1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allows_coding","value":null,"description":"<p>The allows coding field is required., The allows coding field must be true or false.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>The cost structure id field is required., The cost structure id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 55 characters.</p>\n","type":"text"},{"key":"code","value":null,"description":"<p>The code field is required., The code field must be a string., The code field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"parent_id","value":null,"description":"<p>(Nullable), The parent id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/cost_codes/:cost_code","description":"<p>Update the specified <code>CostCode</code> .</p>\n","urlObject":{"path":["api","v1","cost_codes",":cost_code"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"cost_code"}]}},"response":[],"_postman_id":"d4b37db5-e003-4cc8-a652-ae2912ef7da1"},{"name":"api/v1/cost_codes/{cost_code}","id":"11614a32-329c-4387-af1d-75dc3540839a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allows_coding","value":null,"description":"<p>The allows coding field is required., The allows coding field must be true or false.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>The cost structure id field is required., The cost structure id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 55 characters.</p>\n","type":"text"},{"key":"code","value":null,"description":"<p>The code field is required., The code field must be a string., The code field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"parent_id","value":null,"description":"<p>(Nullable), The parent id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/cost_codes/:cost_code","description":"<p>Update the specified <code>CostCode</code> .</p>\n","urlObject":{"path":["api","v1","cost_codes",":cost_code"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"cost_code"}]}},"response":[],"_postman_id":"11614a32-329c-4387-af1d-75dc3540839a"}],"id":"140e7881-d7e9-481d-b177-a860cd2c0db1","_postman_id":"140e7881-d7e9-481d-b177-a860cd2c0db1","description":""}],"id":"e209d235-a7de-467b-be02-7a3fe9c1d0d5","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> allows_coding</code>,<code> code</code>,<code> cost_structure_id</code>,<code> full_path_code</code>,<code> full_path_name</code>,<code> id</code>,<code> is_active</code>,<code> name</code>,<code> parent_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allChildren</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allParents</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>children</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e209d235-a7de-467b-be02-7a3fe9c1d0d5"},{"name":"Cost Structure","item":[{"name":"Code Listing","item":[{"name":"api/v1/cost_structures/{costStructureId}/codes","id":"9fe47ad8-4ce8-430e-a30b-2432fe7f3788","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/cost_structures/:costStructureId/codes","description":"<p>Lists all children codes of a specified <code>CostStructure</code>.</p>\n","urlObject":{"path":["api","v1","cost_structures",":costStructureId","codes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"costStructureId"}]}},"response":[],"_postman_id":"9fe47ad8-4ce8-430e-a30b-2432fe7f3788"}],"id":"ea7deec8-d414-446a-83b8-372be9b9eddc","_postman_id":"ea7deec8-d414-446a-83b8-372be9b9eddc","description":""}],"id":"7df20ba1-2cf1-4299-9e86-102e35b37b82","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> id</code>,<code> is_active</code>,<code> notes</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>costCodeStarts</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>costCodes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7df20ba1-2cf1-4299-9e86-102e35b37b82"},{"name":"Cost Structures","item":[{"name":"Destroy","item":[{"name":"api/v1/cost_structures/{cost_structure}","id":"f0af7460-4f10-4f35-9fee-5c71e4df1c3b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/cost_structures/:cost_structure","description":"<p>Remove the specified <code>CostStructure</code> from storage.</p>\n","urlObject":{"path":["api","v1","cost_structures",":cost_structure"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"cost_structure"}]}},"response":[],"_postman_id":"f0af7460-4f10-4f35-9fee-5c71e4df1c3b"}],"id":"ebc33272-5102-42bf-9cf8-b3dba85cb21b","_postman_id":"ebc33272-5102-42bf-9cf8-b3dba85cb21b","description":""},{"name":"Index","item":[{"name":"api/v1/cost_structures","id":"c9e34ebc-4e80-4561-a5af-74c790a371b6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/cost_structures","description":"<p>Returns a list of multiple <code>CostStructure</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","cost_structures"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9e34ebc-4e80-4561-a5af-74c790a371b6"}],"id":"994c2845-4728-4de5-bbda-6a95163d805d","_postman_id":"994c2845-4728-4de5-bbda-6a95163d805d","description":""},{"name":"Show","item":[{"name":"api/v1/cost_structures/{cost_structure}","id":"e3cf48da-10a2-46ee-b426-2a3b38846e9d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/cost_structures/:cost_structure","description":"<p>Display the specified <code>CostStructure</code>.</p>\n","urlObject":{"path":["api","v1","cost_structures",":cost_structure"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"cost_structure"}]}},"response":[],"_postman_id":"e3cf48da-10a2-46ee-b426-2a3b38846e9d"}],"id":"6f131989-39af-4259-abac-caf907237d68","_postman_id":"6f131989-39af-4259-abac-caf907237d68","description":""},{"name":"Store","item":[{"name":"api/v1/cost_structures","id":"2a64afb8-a7eb-4df7-86c0-5950d68ce51e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"notes","value":null,"description":"<p>(Nullable), The notes field must be a string.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"delim_char","value":null,"description":"<p>The delim char field is required., The delim char field must be a string., The delim char field must not be greater than 1 characters., The selected delim char is invalid.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/cost_structures","description":"<p>Create a new <code>CostStructure</code> object.</p>\n","urlObject":{"path":["api","v1","cost_structures"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a64afb8-a7eb-4df7-86c0-5950d68ce51e"}],"id":"67a57f67-f7f6-4eb7-9532-2f5b476874a4","_postman_id":"67a57f67-f7f6-4eb7-9532-2f5b476874a4","description":""},{"name":"Update","item":[{"name":"api/v1/cost_structures/{cost_structure}","id":"37ffdb67-2013-4421-8015-5a3eca2597f8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"notes","value":null,"description":"<p>(Optional), (Nullable), The notes field must be a string.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"delim_char","value":null,"description":"<p>(Optional), The delim char field must be a string., The delim char field must not be greater than 1 characters., The selected delim char is invalid.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/cost_structures/:cost_structure","description":"<p>Update the specified <code>CostStructure</code> .</p>\n","urlObject":{"path":["api","v1","cost_structures",":cost_structure"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"cost_structure"}]}},"response":[],"_postman_id":"37ffdb67-2013-4421-8015-5a3eca2597f8"},{"name":"api/v1/cost_structures/{cost_structure}","id":"21ee8b47-3185-4bc2-a7d6-ee194936f4dc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"notes","value":null,"description":"<p>(Optional), (Nullable), The notes field must be a string.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"delim_char","value":null,"description":"<p>(Optional), The delim char field must be a string., The delim char field must not be greater than 1 characters., The selected delim char is invalid.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/cost_structures/:cost_structure","description":"<p>Update the specified <code>CostStructure</code> .</p>\n","urlObject":{"path":["api","v1","cost_structures",":cost_structure"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"cost_structure"}]}},"response":[],"_postman_id":"21ee8b47-3185-4bc2-a7d6-ee194936f4dc"}],"id":"c944ba29-327a-4dab-9131-550560865751","_postman_id":"c944ba29-327a-4dab-9131-550560865751","description":""}],"id":"6ec62599-dd5a-42d4-a0ac-333959614d69","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> id</code>,<code> is_active</code>,<code> notes</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>costCodeStarts</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>costCodes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6ec62599-dd5a-42d4-a0ac-333959614d69"},{"name":"Currencies","item":[{"name":"Index","item":[{"name":"api/v1/currencies","id":"6d49eab1-27ab-4ab2-9bdc-f7f224966b35","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/currencies","description":"<p>Returns a list of multiple <code>Currency</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","currencies"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d49eab1-27ab-4ab2-9bdc-f7f224966b35"}],"id":"54288e8a-258e-45e5-8623-023cc7026878","_postman_id":"54288e8a-258e-45e5-8623-023cc7026878","description":""},{"name":"Show","item":[{"name":"api/v1/currencies/{currency}","id":"0af35ae7-263d-4a2b-b7d2-2b8bc7788a4e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/currencies/:currency","description":"<p>Display the specified <code>Currency</code>.</p>\n","urlObject":{"path":["api","v1","currencies",":currency"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"currency"}]}},"response":[],"_postman_id":"0af35ae7-263d-4a2b-b7d2-2b8bc7788a4e"}],"id":"83254f28-a6b4-4424-911f-2a32a40bcd9e","_postman_id":"83254f28-a6b4-4424-911f-2a32a40bcd9e","description":""}],"id":"b89db955-de8a-4a47-8ee1-2c70a4521628","description":"<p><code>Currencies</code> are an application controlled entity.</p>\n<p><code>Curriencies</code> are used to describe the transactional currency for orderables.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> code</code>,<code> current_rate</code>,<code> is_active</code>,<code> name</code>,<code> symbol</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>taxes</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b89db955-de8a-4a47-8ee1-2c70a4521628"},{"name":"Dashboards","item":[{"name":"Closeout","item":[{"name":"api/v1/projects/{project}/closeout_dashboard","id":"2e663cc0-709b-4a6d-9cd8-5a396ceb4db2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/closeout_dashboard","description":"<p>Prepares the closeout Dashboard data.</p>\n","urlObject":{"path":["api","v1","projects",":project","closeout_dashboard"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"2e663cc0-709b-4a6d-9cd8-5a396ceb4db2"}],"id":"ea4d64fb-e928-4bca-85e5-d04c503a11a2","_postman_id":"ea4d64fb-e928-4bca-85e5-d04c503a11a2","description":""},{"name":"Material Management","item":[{"name":"api/v1/projects/{project}/mm_dashboard","id":"7f1af1d7-98b8-4f14-880e-350d2bdf3d9a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/mm_dashboard","description":"<p>Prepares the Material Management Dashboard data.</p>\n","urlObject":{"path":["api","v1","projects",":project","mm_dashboard"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"7f1af1d7-98b8-4f14-880e-350d2bdf3d9a"}],"id":"54aaa3bb-63a2-4158-95fc-f669976a00b9","_postman_id":"54aaa3bb-63a2-4158-95fc-f669976a00b9","description":""}],"id":"ca93995b-6908-4d29-8be7-9fa32d0ebc44","_postman_id":"ca93995b-6908-4d29-8be7-9fa32d0ebc44","description":""},{"name":"Date Types","item":[{"name":"Index","item":[{"name":"api/v1/date_types","id":"44a5db79-cffc-465c-afcd-f1222255bc12","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/date_types","description":"<p>Returns a list of multiple <code>DateType</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","date_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"44a5db79-cffc-465c-afcd-f1222255bc12"}],"id":"147f0689-bb26-4cdf-b8bf-378d8ada6d61","_postman_id":"147f0689-bb26-4cdf-b8bf-378d8ada6d61","description":""},{"name":"Show","item":[{"name":"api/v1/date_types/{date_type}","id":"88a4c50c-a705-42e1-91d0-9299a2ca8852","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/date_types/:date_type","description":"<p>Display the specified <code>DateType</code>.</p>\n","urlObject":{"path":["api","v1","date_types",":date_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"date_type"}]}},"response":[],"_postman_id":"88a4c50c-a705-42e1-91d0-9299a2ca8852"}],"id":"808bc40c-8dd6-4efe-8605-667b80979a2a","_postman_id":"808bc40c-8dd6-4efe-8605-667b80979a2a","description":""}],"id":"93a78aa5-2952-459c-bad3-f509252eb4f7","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> id</code>,<code> is_active</code>,<code> meta_state_slug</code>,<code> name</code>,<code> slug</code>,<code> state_slug</code>,</p>\n","_postman_id":"93a78aa5-2952-459c-bad3-f509252eb4f7"},{"name":"Dates","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_dates","id":"562e991b-16b5-4f29-9ccd-30bab2ecf7ec","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_dates","description":"<p>Destroy multiple <code>Date</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"562e991b-16b5-4f29-9ccd-30bab2ecf7ec"}],"id":"2eaae2b0-d502-4f96-8a43-5a1a504a06f2","_postman_id":"2eaae2b0-d502-4f96-8a43-5a1a504a06f2","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_dates","id":"90da9d7d-04ad-4c77-bed9-af1f86342018","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.actual_date","value":null,"description":"<p>(Nullable), The data.*.actual date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.current_date","value":null,"description":"<p>(Nullable), The data.*.current date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.datable_id","value":null,"description":"<p>The data.<em>.datable id field is required., The data.</em>.datable id field must be an integer., The data.<em>.datable id field must be at least 0 characters., The data.</em>.datable id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.datable_type","value":null,"description":"<p>The data.<em>.datable type field is required., The data.</em>.datable type field must be a string.</p>\n","type":"text"},{"key":"data.*.date_name","value":null,"description":"<p>The data.<em>.date name field is required., The data.</em>.date name field must be a string., The data.*.date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.date_type_slug","value":null,"description":"<p>The data.<em>.date type slug field is required., The data.</em>.date type slug field must be a string., The data.<em>.date type slug field must be at least 2 characters., The data.</em>.date type slug field must not be greater than 30 characters., The selected data.*.date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"data.*.is_skipped","value":null,"description":"<p>The data.<em>.is skipped field is required., The data.</em>.is skipped field must be true or false.</p>\n","type":"text"},{"key":"data.*.original_date","value":null,"description":"<p>(Nullable), The data.*.original date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.position","value":null,"description":"<p>The data.<em>.position field is required., The data.</em>.position field must be an integer., The data.*.position field must be at least 1 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_dates","description":"<p>Store multiple <code>Date</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"90da9d7d-04ad-4c77-bed9-af1f86342018"}],"id":"1436fcf9-5e08-47ba-afac-557751863210","_postman_id":"1436fcf9-5e08-47ba-afac-557751863210","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_dates","id":"412d3173-f068-417a-a825-b25ab36e9504","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.actual_date","value":null,"description":"<p>(Nullable), The data.*.actual date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.current_date","value":null,"description":"<p>(Nullable), The data.*.current date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.datable_id","value":null,"description":"<p>(Optional), The data.<em>.datable id field must be an integer., The data.</em>.datable id field must be at least 0 characters., The data.*.datable id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.datable_type","value":null,"description":"<p>(Optional), The data.*.datable type field must be a string.</p>\n","type":"text"},{"key":"data.*.date_name","value":null,"description":"<p>(Optional), The data.<em>.date name field must be a string., The data.</em>.date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.date_type_slug","value":null,"description":"<p>(Optional), The data.<em>.date type slug field must be a string., The data.</em>.date type slug field must be at least 2 characters., The data.<em>.date type slug field must not be greater than 30 characters., The selected data.</em>.date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"data.*.is_skipped","value":null,"description":"<p>The data.*.is skipped field must be true or false.</p>\n","type":"text"},{"key":"data.*.original_date","value":null,"description":"<p>(Nullable), The data.*.original date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.position","value":null,"description":"<p>(Optional), The data.<em>.position field must be an integer., The data.</em>.position field must be at least 1 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_dates","description":"<p>Update multiple <code>Date</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"412d3173-f068-417a-a825-b25ab36e9504"}],"id":"d415ac45-2e61-4ba1-a04e-ea30a7715ebc","_postman_id":"d415ac45-2e61-4ba1-a04e-ea30a7715ebc","description":""},{"name":"Destroy","item":[{"name":"api/v1/dates/{date}","id":"e45c56a2-917f-4ca1-9937-d92f6126c20a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/dates/:date","description":"<p>Remove the specified <code>Date</code> from storage.</p>\n","urlObject":{"path":["api","v1","dates",":date"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"date"}]}},"response":[],"_postman_id":"e45c56a2-917f-4ca1-9937-d92f6126c20a"}],"id":"fdf5b139-f54b-4c26-8010-d81b6d107ae0","_postman_id":"fdf5b139-f54b-4c26-8010-d81b6d107ae0","description":""},{"name":"Index","item":[{"name":"api/v1/dates","id":"c9808784-1c66-4ccf-bdb4-2739f6a9bbbd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/dates","description":"<p>Returns a list of multiple <code>Date</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9808784-1c66-4ccf-bdb4-2739f6a9bbbd"}],"id":"13f8df59-a5c9-4e0f-a2ee-00f12f638389","_postman_id":"13f8df59-a5c9-4e0f-a2ee-00f12f638389","description":""},{"name":"Show","item":[{"name":"api/v1/dates/{date}","id":"77b14a64-ee89-440d-a01a-91c317633145","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/dates/:date","description":"<p>Display the specified <code>Date</code>.</p>\n","urlObject":{"path":["api","v1","dates",":date"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"date"}]}},"response":[],"_postman_id":"77b14a64-ee89-440d-a01a-91c317633145"}],"id":"0a44e6ac-8c97-426b-8b6c-307f436008b4","_postman_id":"0a44e6ac-8c97-426b-8b6c-307f436008b4","description":""},{"name":"Store","item":[{"name":"api/v1/dates","id":"99331c89-07f0-4063-bdea-361c95b355c6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"actual_date","value":null,"description":"<p>(Nullable), The actual date field must be a valid date.</p>\n","type":"text"},{"key":"current_date","value":null,"description":"<p>(Nullable), The current date field must be a valid date.</p>\n","type":"text"},{"key":"datable_id","value":null,"description":"<p>The datable id field is required., The datable id field must be an integer., The datable id field must be at least 0., The datable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"datable_type","value":null,"description":"<p>The datable type field is required., The datable type field must be a string.</p>\n","type":"text"},{"key":"date_name","value":null,"description":"<p>The date name field is required., The date name field must be a string., The date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"date_type_slug","value":null,"description":"<p>The date type slug field is required., The date type slug field must be a string., The date type slug field must be at least 2 characters., The date type slug field must not be greater than 30 characters., The selected date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"is_skipped","value":null,"description":"<p>The is skipped field is required., The is skipped field must be true or false.</p>\n","type":"text"},{"key":"original_date","value":null,"description":"<p>(Nullable), The original date field must be a valid date.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"position","value":null,"description":"<p>The position field is required., The position field must be an integer., The position field must be at least 1.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/dates","description":"<p>Create a new <code>Date</code> object.</p>\n","urlObject":{"path":["api","v1","dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"99331c89-07f0-4063-bdea-361c95b355c6"}],"id":"1bba799e-b2b0-447f-9ba6-0abf00a5f657","_postman_id":"1bba799e-b2b0-447f-9ba6-0abf00a5f657","description":""},{"name":"Update","item":[{"name":"api/v1/dates/{date}","id":"c1aa5d1b-bad1-4683-825c-716686dfa9b6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"actual_date","value":null,"description":"<p>(Nullable), The actual date field must be a valid date.</p>\n","type":"text"},{"key":"current_date","value":null,"description":"<p>(Nullable), The current date field must be a valid date.</p>\n","type":"text"},{"key":"datable_id","value":null,"description":"<p>(Optional), The datable id field must be an integer., The datable id field must be at least 0., The datable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"datable_type","value":null,"description":"<p>(Optional), The datable type field must be a string.</p>\n","type":"text"},{"key":"date_name","value":null,"description":"<p>(Optional), The date name field must be a string., The date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"date_type_slug","value":null,"description":"<p>(Optional), The date type slug field must be a string., The date type slug field must be at least 2 characters., The date type slug field must not be greater than 30 characters., The selected date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"is_skipped","value":null,"description":"<p>The is skipped field must be true or false.</p>\n","type":"text"},{"key":"original_date","value":null,"description":"<p>(Nullable), The original date field must be a valid date.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"position","value":null,"description":"<p>(Optional), The position field must be an integer., The position field must be at least 1.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/dates/:date","description":"<p>Update the specified <code>Date</code> .</p>\n","urlObject":{"path":["api","v1","dates",":date"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"date"}]}},"response":[],"_postman_id":"c1aa5d1b-bad1-4683-825c-716686dfa9b6"},{"name":"api/v1/dates/{date}","id":"05d58ef5-63ad-40e2-bf4d-be403686edf3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"actual_date","value":null,"description":"<p>(Nullable), The actual date field must be a valid date.</p>\n","type":"text"},{"key":"current_date","value":null,"description":"<p>(Nullable), The current date field must be a valid date.</p>\n","type":"text"},{"key":"datable_id","value":null,"description":"<p>(Optional), The datable id field must be an integer., The datable id field must be at least 0., The datable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"datable_type","value":null,"description":"<p>(Optional), The datable type field must be a string.</p>\n","type":"text"},{"key":"date_name","value":null,"description":"<p>(Optional), The date name field must be a string., The date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"date_type_slug","value":null,"description":"<p>(Optional), The date type slug field must be a string., The date type slug field must be at least 2 characters., The date type slug field must not be greater than 30 characters., The selected date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"is_skipped","value":null,"description":"<p>The is skipped field must be true or false.</p>\n","type":"text"},{"key":"original_date","value":null,"description":"<p>(Nullable), The original date field must be a valid date.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"position","value":null,"description":"<p>(Optional), The position field must be an integer., The position field must be at least 1.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/dates/:date","description":"<p>Update the specified <code>Date</code> .</p>\n","urlObject":{"path":["api","v1","dates",":date"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"date"}]}},"response":[],"_postman_id":"05d58ef5-63ad-40e2-bf4d-be403686edf3"}],"id":"c3d76ae2-7037-4bf4-a1c7-37f1f1778eb6","_postman_id":"c3d76ae2-7037-4bf4-a1c7-37f1f1778eb6","description":""}],"id":"a5488778-7df9-4ca3-9f33-dfdd75077903","description":"<p><code>Dates</code> are used to track milestones within the application. Dates can be attached to a number of transactional entities.</p>\n<p><code>Dates</code> are used in many contexts within the application to generate exports and documentation.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> actual_date</code>,<code> current_date</code>,<code> datable_id</code>,<code> datable_type</code>,<code> date_name</code>,<code> date_type_slug</code>,<code> id</code>,<code> is_skipped</code>,<code> original_date</code>,<code> position</code>,<code> project_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>datable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dateType</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>effective_date</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a5488778-7df9-4ca3-9f33-dfdd75077903"},{"name":"Diversity Types","item":[{"name":"Destroy","item":[{"name":"api/v1/diversity_types/{diversity_type}","id":"d72d10a3-f041-498d-9afa-a1dec93a9c45","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/diversity_types/:diversity_type","description":"<p>Remove the specified Diversity Type from storage.</p>\n","urlObject":{"path":["api","v1","diversity_types",":diversity_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"diversity_type"}]}},"response":[],"_postman_id":"d72d10a3-f041-498d-9afa-a1dec93a9c45"}],"id":"7c85f911-6fbe-419f-9990-f838dbc5ace5","_postman_id":"7c85f911-6fbe-419f-9990-f838dbc5ace5","description":""},{"name":"Index","item":[{"name":"api/v1/diversity_types","id":"ab3e9af0-bccf-42f6-99fb-d556778b94ee","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/diversity_types","description":"<p>Returns a list of multiple <code>DiversityType</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","diversity_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab3e9af0-bccf-42f6-99fb-d556778b94ee"}],"id":"e1af24e6-7b9a-4872-89ed-27fe92127cba","_postman_id":"e1af24e6-7b9a-4872-89ed-27fe92127cba","description":""},{"name":"Show","item":[{"name":"api/v1/diversity_types/{diversity_type}","id":"a54e248c-257a-4448-84ed-5ce740d734f9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/diversity_types/:diversity_type","description":"<p>Display the specified <code>DiversityType</code>.</p>\n","urlObject":{"path":["api","v1","diversity_types",":diversity_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"diversity_type"}]}},"response":[],"_postman_id":"a54e248c-257a-4448-84ed-5ce740d734f9"}],"id":"dd5cb692-29b0-4667-88c5-40b9e759e561","_postman_id":"dd5cb692-29b0-4667-88c5-40b9e759e561","description":""},{"name":"Store","item":[{"name":"api/v1/diversity_types","id":"518a0a8c-92ba-4f8c-b2b6-72ea7057bd65","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>The description field is required., The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/diversity_types","description":"<p>Create a new <code>DiversityType</code> object.</p>\n","urlObject":{"path":["api","v1","diversity_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"518a0a8c-92ba-4f8c-b2b6-72ea7057bd65"}],"id":"1c1742d8-03bd-4154-8373-388e328a3c0a","_postman_id":"1c1742d8-03bd-4154-8373-388e328a3c0a","description":""},{"name":"Update","item":[{"name":"api/v1/diversity_types/{diversity_type}","id":"5718d187-536e-4971-be06-28bd4c163118","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":null,"description":"<p>(Optional), The id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/diversity_types/:diversity_type","description":"<p>Update the specified Diversity Type .</p>\n","urlObject":{"path":["api","v1","diversity_types",":diversity_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"diversity_type"}]}},"response":[],"_postman_id":"5718d187-536e-4971-be06-28bd4c163118"},{"name":"api/v1/diversity_types/{diversity_type}","id":"c68c38e6-68cf-40f2-9d18-aa2b60f94ca2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"id","value":null,"description":"<p>(Optional), The id field must be an integer.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/diversity_types/:diversity_type","description":"<p>Update the specified Diversity Type .</p>\n","urlObject":{"path":["api","v1","diversity_types",":diversity_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"diversity_type"}]}},"response":[],"_postman_id":"c68c38e6-68cf-40f2-9d18-aa2b60f94ca2"}],"id":"4ff23ce7-ecd9-4454-a888-8dea38c33e9f","_postman_id":"4ff23ce7-ecd9-4454-a888-8dea38c33e9f","description":""}],"id":"b7ef4507-4240-492e-afb5-0c492d856aac","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> is_active</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>businessDiversityTypes</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b7ef4507-4240-492e-afb5-0c492d856aac"},{"name":"Document Group Document Types","item":[{"name":"Add Document Types","item":[{"name":"api/v1/document_group_document_types/add","id":"20e53ce6-b32b-4c90-8bf2-8013cf867655","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_group_id","value":null,"description":"<p>The document group id field is required., The document group id field must be an integer.</p>\n","type":"text"},{"key":"document_type_id","value":null,"description":"<p>The document type id field is required., The document type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_group_document_types/add","description":"<p>Add a single entry to the pivot by keys.</p>\n","urlObject":{"path":["api","v1","document_group_document_types","add"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"20e53ce6-b32b-4c90-8bf2-8013cf867655"}],"id":"f8f7f652-f2e4-41e9-9c44-d4d58fa9bd1b","_postman_id":"f8f7f652-f2e4-41e9-9c44-d4d58fa9bd1b","description":""},{"name":"Destroy","item":[{"name":"api/v1/document_group_document_types/{document_group_document_type}","id":"03b1edc7-babc-4f2d-ab85-e38917feb615","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_group_document_types/:document_group_document_type","description":"<p>Remove the specified <code>DocumentGroupDocumentType</code> from storage.</p>\n","urlObject":{"path":["api","v1","document_group_document_types",":document_group_document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_group_document_type"}]}},"response":[],"_postman_id":"03b1edc7-babc-4f2d-ab85-e38917feb615"}],"id":"f7c9e831-e803-403f-b0ca-14804150fd42","_postman_id":"f7c9e831-e803-403f-b0ca-14804150fd42","description":""},{"name":"Index","item":[{"name":"api/v1/document_group_document_types","id":"e6674c3d-54b8-401e-a842-cbdef5c04312","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_group_document_types","description":"<p>Returns a list of multiple <code>DocumentGroupDocumentType</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","document_group_document_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6674c3d-54b8-401e-a842-cbdef5c04312"}],"id":"c2a511ba-6124-4025-89ef-49e1745f69da","_postman_id":"c2a511ba-6124-4025-89ef-49e1745f69da","description":""},{"name":"Remove Document Types","item":[{"name":"api/v1/document_group_document_types/remove","id":"208c8c3c-cf8f-42aa-ae3e-de478dcae73d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_group_id","value":null,"description":"<p>The document group id field is required., The document group id field must be an integer.</p>\n","type":"text"},{"key":"document_type_id","value":null,"description":"<p>The document type id field is required., The document type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_group_document_types/remove","description":"<p>Remove a single entry to the pivot by keys.</p>\n","urlObject":{"path":["api","v1","document_group_document_types","remove"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"208c8c3c-cf8f-42aa-ae3e-de478dcae73d"}],"id":"ce11482f-a42c-4a4f-8b78-9292d400b954","_postman_id":"ce11482f-a42c-4a4f-8b78-9292d400b954","description":""},{"name":"Show","item":[{"name":"api/v1/document_group_document_types/{document_group_document_type}","id":"5f6c91d0-bc01-47d2-9ff1-194bfbc27af4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_group_document_types/:document_group_document_type","description":"<p>Display the specified <code>DocumentGroupDocumentType</code>.</p>\n","urlObject":{"path":["api","v1","document_group_document_types",":document_group_document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_group_document_type"}]}},"response":[],"_postman_id":"5f6c91d0-bc01-47d2-9ff1-194bfbc27af4"}],"id":"bc1a4edd-8735-4d76-abee-a3a50eaae0f0","_postman_id":"bc1a4edd-8735-4d76-abee-a3a50eaae0f0","description":""},{"name":"Store","item":[{"name":"api/v1/document_group_document_types","id":"abdc6c7b-23d4-496f-b5e4-eb82ef6cf51c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_group_id","value":null,"description":"<p>The document group id field is required., The document group id field must be an integer.</p>\n","type":"text"},{"key":"document_type_id","value":null,"description":"<p>The document type id field is required., The document type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_group_document_types","description":"<p>Create a new <code>DocumentGroupDocumentType</code> object.</p>\n","urlObject":{"path":["api","v1","document_group_document_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"abdc6c7b-23d4-496f-b5e4-eb82ef6cf51c"}],"id":"f21a014e-52c6-4458-852e-586d2c125165","_postman_id":"f21a014e-52c6-4458-852e-586d2c125165","description":""},{"name":"Sync Document Types","item":[{"name":"api/v1/document_group_document_types/sync","id":"40dc72a6-4e15-4747-a4d2-cfc258e52490","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_type_ids","value":null,"description":"<p>(Nullable), The document type ids field must be an array.</p>\n","type":"text"},{"key":"document_type_ids.*","value":null,"description":"<p>(Optional), The document type ids.* field must be an integer.</p>\n","type":"text"},{"key":"document_group_id","value":null,"description":"<p>The document group id field is required., The document group id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_group_document_types/sync","description":"<p>Sync the entire pivot for a group.</p>\n","urlObject":{"path":["api","v1","document_group_document_types","sync"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"40dc72a6-4e15-4747-a4d2-cfc258e52490"}],"id":"2e5245dd-0cfa-45dd-b371-35c6d154edc3","_postman_id":"2e5245dd-0cfa-45dd-b371-35c6d154edc3","description":""},{"name":"Update","item":[{"name":"api/v1/document_group_document_types/{document_group_document_type}","id":"bf52597e-eee2-41b4-b2d3-b4482c443332","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_group_id","value":null,"description":"<p>The document group id field is required., The document group id field must be an integer.</p>\n","type":"text"},{"key":"document_type_id","value":null,"description":"<p>The document type id field is required., The document type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_group_document_types/:document_group_document_type","description":"<p>Update the specified <code>DocumentGroupDocumentType</code> .</p>\n","urlObject":{"path":["api","v1","document_group_document_types",":document_group_document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_group_document_type"}]}},"response":[],"_postman_id":"bf52597e-eee2-41b4-b2d3-b4482c443332"},{"name":"api/v1/document_group_document_types/{document_group_document_type}","id":"605717d9-b728-4f07-a916-edb221a38dd0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_group_id","value":null,"description":"<p>The document group id field is required., The document group id field must be an integer.</p>\n","type":"text"},{"key":"document_type_id","value":null,"description":"<p>The document type id field is required., The document type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_group_document_types/:document_group_document_type","description":"<p>Update the specified <code>DocumentGroupDocumentType</code> .</p>\n","urlObject":{"path":["api","v1","document_group_document_types",":document_group_document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_group_document_type"}]}},"response":[],"_postman_id":"605717d9-b728-4f07-a916-edb221a38dd0"}],"id":"e8d4c113-363a-44d3-bccb-5759f62027cd","_postman_id":"e8d4c113-363a-44d3-bccb-5759f62027cd","description":""}],"id":"c9bc97b1-f3b9-426e-8b1b-07cc05fce578","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> document_group_id</code>,<code> document_type_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>documentGroup</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>documentType</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c9bc97b1-f3b9-426e-8b1b-07cc05fce578"},{"name":"Document Groups","item":[{"name":"Destroy","item":[{"name":"api/v1/document_groups/{document_group}","id":"b377a099-40f0-4b3d-8a17-60a24b6a82de","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_groups/:document_group","description":"<p>Remove the specified <code>DocumentGroup</code> from storage.</p>\n","urlObject":{"path":["api","v1","document_groups",":document_group"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_group"}]}},"response":[],"_postman_id":"b377a099-40f0-4b3d-8a17-60a24b6a82de"}],"id":"adbbda56-d02b-463b-b336-a11ce5b6413e","_postman_id":"adbbda56-d02b-463b-b336-a11ce5b6413e","description":""},{"name":"Index","item":[{"name":"api/v1/document_groups","id":"1a5a6384-c132-4a47-932a-b823d40cba2d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_groups","description":"<p>Returns a list of multiple <code>DocumentGroup</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","document_groups"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a5a6384-c132-4a47-932a-b823d40cba2d"}],"id":"ee191f49-b5cb-4fbf-89d6-a6b9218e95cf","_postman_id":"ee191f49-b5cb-4fbf-89d6-a6b9218e95cf","description":""},{"name":"Show","item":[{"name":"api/v1/document_groups/{document_group}","id":"296d541d-fb6c-40ad-a3a9-69d715c7c3ef","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_groups/:document_group","description":"<p>Display the specified <code>DocumentGroup</code>.</p>\n","urlObject":{"path":["api","v1","document_groups",":document_group"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_group"}]}},"response":[],"_postman_id":"296d541d-fb6c-40ad-a3a9-69d715c7c3ef"}],"id":"40bd34fa-d2c9-4269-aef7-342dc2a28fee","_postman_id":"40bd34fa-d2c9-4269-aef7-342dc2a28fee","description":""},{"name":"Store","item":[{"name":"api/v1/document_groups","id":"bbe7a207-b7ba-466c-bef3-ff18705d523f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":null,"description":"<p>The category field is required., The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_groups","description":"<p>Create a new <code>DocumentGroup</code> object.</p>\n","urlObject":{"path":["api","v1","document_groups"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbe7a207-b7ba-466c-bef3-ff18705d523f"}],"id":"c20c9d85-d786-44c3-828e-02bf5d97757c","_postman_id":"c20c9d85-d786-44c3-828e-02bf5d97757c","description":""},{"name":"Update","item":[{"name":"api/v1/document_groups/{document_group}","id":"e0843495-7714-4425-be7e-74676d444d33","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":null,"description":"<p>The category field is required., The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_groups/:document_group","description":"<p>Update the specified <code>DocumentGroup</code> .</p>\n","urlObject":{"path":["api","v1","document_groups",":document_group"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_group"}]}},"response":[],"_postman_id":"e0843495-7714-4425-be7e-74676d444d33"},{"name":"api/v1/document_groups/{document_group}","id":"4e4be567-a5b4-4433-a49c-f87772d7ff27","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":null,"description":"<p>The category field is required., The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_groups/:document_group","description":"<p>Update the specified <code>DocumentGroup</code> .</p>\n","urlObject":{"path":["api","v1","document_groups",":document_group"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_group"}]}},"response":[],"_postman_id":"4e4be567-a5b4-4433-a49c-f87772d7ff27"}],"id":"7825f8ad-7446-4bf8-a1b8-76909c20f847","_postman_id":"7825f8ad-7446-4bf8-a1b8-76909c20f847","description":""}],"id":"9fa4449e-5fb2-46e0-9135-70fdff592d96","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> category</code>,<code> description</code>,<code> is_active</code>,<code> metadata</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>documentTypes</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9fa4449e-5fb2-46e0-9135-70fdff592d96"},{"name":"Document Type Submissions","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_document_type_submissions","id":"d7f95edb-1d3c-461c-a26c-35e336fd057a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/bulk_document_type_submissions","description":"<p>Destroy multiple <code>DocumentTypeSubmission</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_document_type_submissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7f95edb-1d3c-461c-a26c-35e336fd057a"}],"id":"e685a8eb-3548-47f8-97f0-ddcad230eaed","_postman_id":"e685a8eb-3548-47f8-97f0-ddcad230eaed","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_document_type_submissions","id":"80191557-e4cd-44c2-b995-3d9506e088f7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.document_type_id","value":null,"description":"<p>The data.*.document type id field must be an integer.</p>\n","type":"text"},{"key":"data.*.authentication_required","value":null,"description":"<p>The data.<em>.authentication required field is required., The data.</em>.authentication required field must be true or false.</p>\n","type":"text"},{"key":"data.*.default_submission_basis","value":null,"description":"<p>The data.<em>.default submission basis field is required., The data.</em>.default submission basis field must be a string., The data.*.default submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.type_of_submission","value":null,"description":"<p>The data.<em>.type of submission field is required., The data.</em>.type of submission field must be a string., The data.*.type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.default_format_of_submission","value":null,"description":"<p>The data.<em>.default format of submission field is required., The data.</em>.default format of submission field must be a string., The data.*.default format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.default_due_in_days","value":null,"description":"<p>The data.<em>.default due in days field is required., The data.</em>.default due in days field must be an integer.</p>\n","type":"text"},{"key":"data.*.default_due_in_days_direction","value":null,"description":"<p>The data.<em>.default due in days direction field is required., The selected data.</em>.default due in days direction is invalid, it must exist in A, B, W, a, b, w.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_document_type_submissions","description":"<p>Store multiple <code>DocumentTypeSubmission</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_document_type_submissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"80191557-e4cd-44c2-b995-3d9506e088f7"}],"id":"43797533-0757-4419-8e9d-75292a8fb183","_postman_id":"43797533-0757-4419-8e9d-75292a8fb183","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_document_type_submissions","id":"031fb150-80bf-4d24-92a2-4f354716c5c8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.document_type_id","value":null,"description":"<p>(Optional), The data.*.document type id field must be an integer.</p>\n","type":"text"},{"key":"data.*.authentication_required","value":null,"description":"<p>(Optional), The data.*.authentication required field must be true or false.</p>\n","type":"text"},{"key":"data.*.default_submission_basis","value":null,"description":"<p>(Optional), The data.<em>.default submission basis field must be a string., The data.</em>.default submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.type_of_submission","value":null,"description":"<p>(Optional), The data.<em>.type of submission field must be a string., The data.</em>.type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.default_format_of_submission","value":null,"description":"<p>(Optional), The data.<em>.default format of submission field must be a string., The data.</em>.default format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.default_due_in_days","value":null,"description":"<p>(Optional), The data.*.default due in days field is required.</p>\n","type":"text"},{"key":"data.*.default_due_in_days_direction","value":null,"description":"<p>(Optional), The selected data.*.default due in days direction is invalid, it must exist in A, B, W, a, b, w.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Optional), (Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_document_type_submissions","description":"<p>Update multiple <code>DocumentTypeSubmission</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_document_type_submissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"031fb150-80bf-4d24-92a2-4f354716c5c8"}],"id":"a7d9a448-6d38-4a8c-991e-9bed15854658","_postman_id":"a7d9a448-6d38-4a8c-991e-9bed15854658","description":""},{"name":"Destroy","item":[{"name":"api/v1/document_type_submissions/{document_type_submission}","id":"b8ecce61-8f9c-4a68-baf9-0ab65fdef8a7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_type_submissions/:document_type_submission","description":"<p>Remove the specified <code>DocumentTypeSubmission</code> from storage.</p>\n","urlObject":{"path":["api","v1","document_type_submissions",":document_type_submission"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_type_submission"}]}},"response":[],"_postman_id":"b8ecce61-8f9c-4a68-baf9-0ab65fdef8a7"}],"id":"4dc4ebe0-8ca3-48a7-8082-05d3c1a81c68","_postman_id":"4dc4ebe0-8ca3-48a7-8082-05d3c1a81c68","description":""},{"name":"Index","item":[{"name":"api/v1/document_type_submissions","id":"e4d2f6f5-53d0-4ae3-8cba-f46cce269c10","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_type_submissions","description":"<p>Returns a list of multiple <code>DocumentTypeSubmission</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","document_type_submissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4d2f6f5-53d0-4ae3-8cba-f46cce269c10"}],"id":"88a74007-7747-4af8-8d6e-a3dce5c12547","_postman_id":"88a74007-7747-4af8-8d6e-a3dce5c12547","description":""},{"name":"Show","item":[{"name":"api/v1/document_type_submissions/{document_type_submission}","id":"cd9fcf48-b15a-40e5-9928-db85aa9b20db","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_type_submissions/:document_type_submission","description":"<p>Display the specified <code>DocumentTypeSubmission</code>.</p>\n","urlObject":{"path":["api","v1","document_type_submissions",":document_type_submission"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_type_submission"}]}},"response":[],"_postman_id":"cd9fcf48-b15a-40e5-9928-db85aa9b20db"}],"id":"ef50fcd5-7244-43a2-98ad-069e3a2aebc2","_postman_id":"ef50fcd5-7244-43a2-98ad-069e3a2aebc2","description":""},{"name":"Store","item":[{"name":"api/v1/document_type_submissions","id":"6c94efbe-0254-4e77-8034-86baa0cf7def","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_type_id","value":null,"description":"<p>The document type id field must be an integer.</p>\n","type":"text"},{"key":"authentication_required","value":null,"description":"<p>The authentication required field is required., The authentication required field must be true or false.</p>\n","type":"text"},{"key":"default_submission_basis","value":null,"description":"<p>The default submission basis field is required., The default submission basis field must be a string., The default submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"type_of_submission","value":null,"description":"<p>The type of submission field is required., The type of submission field must be a string., The type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"default_format_of_submission","value":null,"description":"<p>The default format of submission field is required., The default format of submission field must be a string., The default format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"default_due_in_days","value":null,"description":"<p>The default due in days field is required., The default due in days field must be an integer.</p>\n","type":"text"},{"key":"default_due_in_days_direction","value":null,"description":"<p>The default due in days direction field is required., The selected default due in days direction is invalid, it must exist in A, B, W, a, b, w.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_type_submissions","description":"<p>Create a new <code>DocumentTypeSubmission</code> object.</p>\n","urlObject":{"path":["api","v1","document_type_submissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c94efbe-0254-4e77-8034-86baa0cf7def"}],"id":"4a03e694-3655-4137-8b42-bf266473ca50","_postman_id":"4a03e694-3655-4137-8b42-bf266473ca50","description":""},{"name":"Update","item":[{"name":"api/v1/document_type_submissions/{document_type_submission}","id":"f0488848-4a0f-4fd7-bb27-089367b02cbc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_type_id","value":null,"description":"<p>(Optional), The document type id field must be an integer.</p>\n","type":"text"},{"key":"authentication_required","value":null,"description":"<p>(Optional), The authentication required field must be true or false.</p>\n","type":"text"},{"key":"default_submission_basis","value":null,"description":"<p>(Optional), The default submission basis field must be a string., The default submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"type_of_submission","value":null,"description":"<p>(Optional), The type of submission field must be a string., The type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"default_format_of_submission","value":null,"description":"<p>(Optional), The default format of submission field must be a string., The default format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"default_due_in_days","value":null,"description":"<p>(Optional), The default due in days field is required.</p>\n","type":"text"},{"key":"default_due_in_days_direction","value":null,"description":"<p>(Optional), The selected default due in days direction is invalid, it must exist in A, B, W, a, b, w.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_type_submissions/:document_type_submission","description":"<p>Update the specified <code>DocumentTypeSubmission</code> .</p>\n","urlObject":{"path":["api","v1","document_type_submissions",":document_type_submission"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_type_submission"}]}},"response":[],"_postman_id":"f0488848-4a0f-4fd7-bb27-089367b02cbc"},{"name":"api/v1/document_type_submissions/{document_type_submission}","id":"c631ef49-6e9f-4c14-a03e-feedae61bf1f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"document_type_id","value":null,"description":"<p>(Optional), The document type id field must be an integer.</p>\n","type":"text"},{"key":"authentication_required","value":null,"description":"<p>(Optional), The authentication required field must be true or false.</p>\n","type":"text"},{"key":"default_submission_basis","value":null,"description":"<p>(Optional), The default submission basis field must be a string., The default submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"type_of_submission","value":null,"description":"<p>(Optional), The type of submission field must be a string., The type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"default_format_of_submission","value":null,"description":"<p>(Optional), The default format of submission field must be a string., The default format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"default_due_in_days","value":null,"description":"<p>(Optional), The default due in days field is required.</p>\n","type":"text"},{"key":"default_due_in_days_direction","value":null,"description":"<p>(Optional), The selected default due in days direction is invalid, it must exist in A, B, W, a, b, w.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_type_submissions/:document_type_submission","description":"<p>Update the specified <code>DocumentTypeSubmission</code> .</p>\n","urlObject":{"path":["api","v1","document_type_submissions",":document_type_submission"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_type_submission"}]}},"response":[],"_postman_id":"c631ef49-6e9f-4c14-a03e-feedae61bf1f"}],"id":"055fddb8-d46e-498a-80d3-3c9c65576605","_postman_id":"055fddb8-d46e-498a-80d3-3c9c65576605","description":""}],"id":"c4953c34-4ee9-4f14-9b71-63fa39070dc0","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> authentication_required</code>,<code> default_due_in_days</code>,<code> default_format_of_submission</code>,<code> default_submission_basis</code>,<code> document_type_id</code>,<code> metadata</code>,<code> team_id</code>,<code> type_of_submission</code>,</p>\n","_postman_id":"c4953c34-4ee9-4f14-9b71-63fa39070dc0"},{"name":"Document Types","item":[{"name":"Destroy","item":[{"name":"api/v1/document_types/{document_type}","id":"15e032e3-1d28-41a6-a605-9c2bd532ffe4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_types/:document_type","description":"<p>Remove the specified <code>DocumentType</code> from storage.</p>\n","urlObject":{"path":["api","v1","document_types",":document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_type"}]}},"response":[],"_postman_id":"15e032e3-1d28-41a6-a605-9c2bd532ffe4"}],"id":"dce857fd-075c-4ed4-9648-a423de669065","_postman_id":"dce857fd-075c-4ed4-9648-a423de669065","description":""},{"name":"Index","item":[{"name":"api/v1/document_types","id":"ff9bd419-9abb-4055-b909-908d1f3e1dd8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_types","description":"<p>Returns a list of multiple <code>DocumentType</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","document_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff9bd419-9abb-4055-b909-908d1f3e1dd8"}],"id":"e25b1103-a016-43b7-89ee-ecdfd2646ee6","_postman_id":"e25b1103-a016-43b7-89ee-ecdfd2646ee6","description":""},{"name":"Show","item":[{"name":"api/v1/document_types/{document_type}","id":"9b8f873a-4b1e-4e10-866c-cf61ea831472","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/document_types/:document_type","description":"<p>Display the specified <code>DocumentType</code>.</p>\n","urlObject":{"path":["api","v1","document_types",":document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_type"}]}},"response":[],"_postman_id":"9b8f873a-4b1e-4e10-866c-cf61ea831472"}],"id":"88cebb7e-6231-485f-8daf-f548a14d9a7d","_postman_id":"88cebb7e-6231-485f-8daf-f548a14d9a7d","description":""},{"name":"Store","item":[{"name":"api/v1/document_types","id":"ebc92aeb-71f6-40a7-89bf-bc516dc87ac0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":null,"description":"<p>The category field is required., The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 36 characters., The identifier field has a duplicate value.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>The description field is required., The description field must be a string., The description field must not be greater than 1500 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"scope","value":null,"description":"<p>(Optional), (Nullable), The selected scope is invalid, it must exist in orderable, orderable_item.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_types","description":"<p>Create a new <code>DocumentType</code> object.</p>\n","urlObject":{"path":["api","v1","document_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ebc92aeb-71f6-40a7-89bf-bc516dc87ac0"}],"id":"bc7aced6-4404-4260-8959-2b8bf772311d","_postman_id":"bc7aced6-4404-4260-8959-2b8bf772311d","description":""},{"name":"Update","item":[{"name":"api/v1/document_types/{document_type}","id":"bc007558-ba98-44b6-a926-3087bf039e4c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":null,"description":"<p>(Optional), The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field must be a string., The identifier field must not be greater than 36 characters., The identifier field has a duplicate value.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), The description field must be a string., The description field must not be greater than 1500 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"scope","value":null,"description":"<p>(Optional), (Nullable), The selected scope is invalid, it must exist in orderable, orderable_item.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_types/:document_type","description":"<p>Update the specified <code>DocumentType</code> .</p>\n","urlObject":{"path":["api","v1","document_types",":document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_type"}]}},"response":[],"_postman_id":"bc007558-ba98-44b6-a926-3087bf039e4c"},{"name":"api/v1/document_types/{document_type}","id":"29aaf381-6fab-48fb-99d7-4f86aaea2f31","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":null,"description":"<p>(Optional), The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field must be a string., The identifier field must not be greater than 36 characters., The identifier field has a duplicate value.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), The description field must be a string., The description field must not be greater than 1500 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"scope","value":null,"description":"<p>(Optional), (Nullable), The selected scope is invalid, it must exist in orderable, orderable_item.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/document_types/:document_type","description":"<p>Update the specified <code>DocumentType</code> .</p>\n","urlObject":{"path":["api","v1","document_types",":document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"document_type"}]}},"response":[],"_postman_id":"29aaf381-6fab-48fb-99d7-4f86aaea2f31"}],"id":"eff6a34c-bdc5-45d9-9f52-a126a03b9c14","_postman_id":"eff6a34c-bdc5-45d9-9f52-a126a03b9c14","description":""}],"id":"59d40de7-a455-4315-a51a-1f9a2c377988","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> category</code>,<code> description</code>,<code> identifier</code>,<code> is_active</code>,<code> metadata</code>,<code> name</code>,<code> scope</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>documentGroups</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>identifiers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderableDocuments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>submissions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"59d40de7-a455-4315-a51a-1f9a2c377988"},{"name":"Enterprise","item":[{"name":"Upload Avatar","item":[{"name":"api/v1/enterprises/imageupload","id":"c9099e76-980c-4edd-9592-a435fac11e53","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"image","value":null,"description":"<p>The image field is required., The image field must be a file of type: jpg, jpeg, bmp, png, gif., The image field must not be greater than 1024 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/enterprises/imageupload","description":"<p>Processes the attachment of a image file.</p>\n","urlObject":{"path":["api","v1","enterprises","imageupload"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9099e76-980c-4edd-9592-a435fac11e53"}],"id":"d38a9592-bf13-483c-ae9b-83282636358a","_postman_id":"d38a9592-bf13-483c-ae9b-83282636358a","description":""}],"id":"89bb6c9e-07e4-451b-83ff-158f0abc295b","description":"<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>admins</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fullUsers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>owner</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>restrictedUsers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>subscriptions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>teams</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>users</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>total_file_size_in_gb</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"89bb6c9e-07e4-451b-83ff-158f0abc295b"},{"name":"Enterprises","item":[{"name":"Show","item":[{"name":"api/v1/enterprises/{enterprise}","id":"3729d52e-e042-44e6-a9cd-7b53905d264b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/enterprises/:enterprise","description":"<p>Display the specified <code>Enterprise</code>.</p>\n","urlObject":{"path":["api","v1","enterprises",":enterprise"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"enterprise"}]}},"response":[],"_postman_id":"3729d52e-e042-44e6-a9cd-7b53905d264b"}],"id":"d90de7d1-b27a-48ac-adde-710b2c86a4d3","_postman_id":"d90de7d1-b27a-48ac-adde-710b2c86a4d3","description":""},{"name":"Update","item":[{"name":"api/v1/enterprises/{enterprise}","id":"36c1a7b7-1695-4cef-9a9e-b8e057daefff","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"billing_address","value":null,"description":"<p>(Nullable), The billing address field must be a string., The billing address field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"billing_address_line_2","value":null,"description":"<p>(Nullable), The billing address line 2 field must be a string., The billing address line 2 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"billing_city","value":null,"description":"<p>(Nullable), The billing city field must be a string., The billing city field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"billing_country","value":null,"description":"<p>(Nullable), The billing country field must be a string., The billing country field must not be greater than 2 characters.</p>\n","type":"text"},{"key":"billing_state","value":null,"description":"<p>(Nullable), The billing state field must be a string., The billing state field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"billing_zip","value":null,"description":"<p>(Nullable), The billing zip field must be a string., The billing zip field must not be greater than 25 characters.</p>\n","type":"text"},{"key":"default_require_sso","value":null,"description":"<p>(Optional), The default require sso field must be true or false.</p>\n","type":"text"},{"key":"extra_billing_information","value":null,"description":"<p>(Nullable), The extra billing information field must be a string., The extra billing information field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field must be a string., The name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"legal_name","value":null,"description":"<p>The legal name field is required., The legal name field must be a string., The legal name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"photo_url","value":null,"description":"<p>(Nullable), The photo url field must be a string., The photo url field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"vat_id","value":null,"description":"<p>(Nullable), The vat id field must be a string., The vat id field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/enterprises/:enterprise","description":"<p>Update the specified <code>Enterprise</code> .</p>\n","urlObject":{"path":["api","v1","enterprises",":enterprise"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"enterprise"}]}},"response":[],"_postman_id":"36c1a7b7-1695-4cef-9a9e-b8e057daefff"},{"name":"api/v1/enterprises/{enterprise}","id":"c114159a-bca6-41c8-bb99-170bd7500e8a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"billing_address","value":null,"description":"<p>(Nullable), The billing address field must be a string., The billing address field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"billing_address_line_2","value":null,"description":"<p>(Nullable), The billing address line 2 field must be a string., The billing address line 2 field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"billing_city","value":null,"description":"<p>(Nullable), The billing city field must be a string., The billing city field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"billing_country","value":null,"description":"<p>(Nullable), The billing country field must be a string., The billing country field must not be greater than 2 characters.</p>\n","type":"text"},{"key":"billing_state","value":null,"description":"<p>(Nullable), The billing state field must be a string., The billing state field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"billing_zip","value":null,"description":"<p>(Nullable), The billing zip field must be a string., The billing zip field must not be greater than 25 characters.</p>\n","type":"text"},{"key":"default_require_sso","value":null,"description":"<p>(Optional), The default require sso field must be true or false.</p>\n","type":"text"},{"key":"extra_billing_information","value":null,"description":"<p>(Nullable), The extra billing information field must be a string., The extra billing information field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field must be a string., The name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"legal_name","value":null,"description":"<p>The legal name field is required., The legal name field must be a string., The legal name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"photo_url","value":null,"description":"<p>(Nullable), The photo url field must be a string., The photo url field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"vat_id","value":null,"description":"<p>(Nullable), The vat id field must be a string., The vat id field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/enterprises/:enterprise","description":"<p>Update the specified <code>Enterprise</code> .</p>\n","urlObject":{"path":["api","v1","enterprises",":enterprise"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"enterprise"}]}},"response":[],"_postman_id":"c114159a-bca6-41c8-bb99-170bd7500e8a"}],"id":"98ee9c17-2005-4d9a-bd1b-aab3651c5105","_postman_id":"98ee9c17-2005-4d9a-bd1b-aab3651c5105","description":""}],"id":"84a41c14-7627-4444-9e40-9b9dbe3d2f55","description":"<p><code>Enterprises</code> describes the businesses account within CurrentSCM</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>admins</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fullUsers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>owner</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>restrictedUsers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>subscriptions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>teams</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>users</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>total_file_size_in_gb</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"84a41c14-7627-4444-9e40-9b9dbe3d2f55"},{"name":"Evaluations","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_evaluations","id":"6af85334-5fda-4597-ad2a-860ab57564b7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_evaluations","description":"<p>Destroy multiple <code>Evaluation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_evaluations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6af85334-5fda-4597-ad2a-860ab57564b7"}],"id":"220f3344-3282-407f-b0a0-4dec8b08d114","_postman_id":"220f3344-3282-407f-b0a0-4dec8b08d114","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_evaluations","id":"86755a86-3d57-4bae-b138-5e07179abe01","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.display_order","value":null,"description":"<p>The data.<em>.display order field is required., The data.</em>.display order field must be an integer.</p>\n","type":"text"},{"key":"data.*.evaluable_id","value":null,"description":"<p>(Nullable), The data.*.evaluable id field must be an integer.</p>\n","type":"text"},{"key":"data.*.evaluable_type","value":null,"description":"<p>(Nullable), The selected data.*.evaluable type is invalid, it must exist in Bid, Offer, Order, BusinessEvaluation.</p>\n","type":"text"},{"key":"data.*.field_type","value":null,"description":"<p>The data.<em>.field type field is required., The data.</em>.field type field must be a string.</p>\n","type":"text"},{"key":"data.*.select_options","value":null,"description":"<p>(Nullable), The data.<em>.select options field must be an array., The data.</em>.select options field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"data.*.title","value":null,"description":"<p>(Nullable), The data.<em>.title field must be a string., The data.</em>.title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"data.*.value","value":null,"description":"<p>(Nullable), The data.*.value field must not be greater than 60000 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_evaluations","description":"<p>Store multiple <code>Evaluation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_evaluations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"86755a86-3d57-4bae-b138-5e07179abe01"}],"id":"4f6d3545-7698-44ea-8541-c0dad0e6152e","_postman_id":"4f6d3545-7698-44ea-8541-c0dad0e6152e","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_evaluations","id":"a38c7144-017a-4196-8bd6-a732f85b3ffe","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.display_order","value":null,"description":"<p>(Optional), The data.*.display order field must be an integer.</p>\n","type":"text"},{"key":"data.*.evaluable_id","value":null,"description":"<p>(Optional), The data.*.evaluable id field must be an integer.</p>\n","type":"text"},{"key":"data.*.evaluable_type","value":null,"description":"<p>(Optional), The selected data.*.evaluable type is invalid, it must exist in Bid, Offer, Order, BusinessEvaluation.</p>\n","type":"text"},{"key":"data.*.field_type","value":null,"description":"<p>(Optional), The data.*.field type field must be a string.</p>\n","type":"text"},{"key":"data.*.select_options","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.select options field must be an array., The data.</em>.select options field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"data.*.title","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.title field must be a string., The data.</em>.title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"data.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.*.value field must not be greater than 60000 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_evaluations","description":"<p>Update multiple <code>Evaluation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_evaluations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a38c7144-017a-4196-8bd6-a732f85b3ffe"}],"id":"0640e3a0-c40f-4fb2-abf6-6ff31fb984e7","_postman_id":"0640e3a0-c40f-4fb2-abf6-6ff31fb984e7","description":""},{"name":"Destroy","item":[{"name":"api/v1/evaluations/{evaluation}","id":"bffcb24a-43b9-4373-bd4f-622f8fca8db3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/evaluations/:evaluation","description":"<p>Remove the specified <code>Evaluation</code> from storage.</p>\n","urlObject":{"path":["api","v1","evaluations",":evaluation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"evaluation"}]}},"response":[],"_postman_id":"bffcb24a-43b9-4373-bd4f-622f8fca8db3"}],"id":"02076112-517e-4d4f-9fd6-ced7b25b1009","_postman_id":"02076112-517e-4d4f-9fd6-ced7b25b1009","description":""},{"name":"Index","item":[{"name":"api/v1/evaluations","id":"7988d744-e9b2-48f8-9071-cd4a234c8bea","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/evaluations","description":"<p>Returns a list of multiple <code>Evaluation</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","evaluations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"7988d744-e9b2-48f8-9071-cd4a234c8bea"}],"id":"2e7a138c-fb09-4239-a993-dcf7fd54b0b7","_postman_id":"2e7a138c-fb09-4239-a993-dcf7fd54b0b7","description":""},{"name":"Show","item":[{"name":"api/v1/evaluations/{evaluation}","id":"3cc67f23-8193-4733-aa91-01660c37e3bb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/evaluations/:evaluation","description":"<p>Display the specified <code>Evaluation</code>.</p>\n","urlObject":{"path":["api","v1","evaluations",":evaluation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"evaluation"}]}},"response":[],"_postman_id":"3cc67f23-8193-4733-aa91-01660c37e3bb"}],"id":"00c60fae-4ffb-4c73-89c7-77048ded70b1","_postman_id":"00c60fae-4ffb-4c73-89c7-77048ded70b1","description":""},{"name":"Store","item":[{"name":"api/v1/evaluations","id":"b178d1b3-b455-4907-9fcf-c7f02ca0d8fd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"display_order","value":null,"description":"<p>The display order field is required., The display order field must be an integer.</p>\n","type":"text"},{"key":"evaluable_id","value":null,"description":"<p>(Nullable), The evaluable id field must be an integer.</p>\n","type":"text"},{"key":"evaluable_type","value":null,"description":"<p>(Nullable), The selected evaluable type is invalid, it must exist in Bid, Offer, Order, BusinessEvaluation.</p>\n","type":"text"},{"key":"field_type","value":null,"description":"<p>The field type field is required., The field type field must be a string.</p>\n","type":"text"},{"key":"select_options","value":null,"description":"<p>(Nullable), The select options field must be an array., The select options field must not have more than 500 items.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>(Nullable), The value field must not be greater than 60000 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/evaluations","description":"<p>Create a new <code>Evaluation</code> object.</p>\n","urlObject":{"path":["api","v1","evaluations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b178d1b3-b455-4907-9fcf-c7f02ca0d8fd"}],"id":"0d7f8e3b-2002-4214-bf3d-5ed6006247b8","_postman_id":"0d7f8e3b-2002-4214-bf3d-5ed6006247b8","description":""},{"name":"Update","item":[{"name":"api/v1/evaluations/{evaluation}","id":"f985706c-7a25-4763-aca6-72072512138d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"display_order","value":null,"description":"<p>(Optional), The display order field must be an integer.</p>\n","type":"text"},{"key":"evaluable_id","value":null,"description":"<p>(Optional), The evaluable id field must be an integer.</p>\n","type":"text"},{"key":"evaluable_type","value":null,"description":"<p>(Optional), The selected evaluable type is invalid, it must exist in Bid, Offer, Order, BusinessEvaluation.</p>\n","type":"text"},{"key":"field_type","value":null,"description":"<p>(Optional), The field type field must be a string.</p>\n","type":"text"},{"key":"select_options","value":null,"description":"<p>(Optional), (Nullable), The select options field must be an array., The select options field must not have more than 500 items.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Optional), (Nullable), The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>(Optional), (Nullable), The value field must not be greater than 60000 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/evaluations/:evaluation","description":"<p>Update the specified <code>Evaluation</code> .</p>\n","urlObject":{"path":["api","v1","evaluations",":evaluation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"evaluation"}]}},"response":[],"_postman_id":"f985706c-7a25-4763-aca6-72072512138d"},{"name":"api/v1/evaluations/{evaluation}","id":"134fad17-b422-4fdb-ac0f-fc9578dcd8c7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"display_order","value":null,"description":"<p>(Optional), The display order field must be an integer.</p>\n","type":"text"},{"key":"evaluable_id","value":null,"description":"<p>(Optional), The evaluable id field must be an integer.</p>\n","type":"text"},{"key":"evaluable_type","value":null,"description":"<p>(Optional), The selected evaluable type is invalid, it must exist in Bid, Offer, Order, BusinessEvaluation.</p>\n","type":"text"},{"key":"field_type","value":null,"description":"<p>(Optional), The field type field must be a string.</p>\n","type":"text"},{"key":"select_options","value":null,"description":"<p>(Optional), (Nullable), The select options field must be an array., The select options field must not have more than 500 items.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Optional), (Nullable), The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>(Optional), (Nullable), The value field must not be greater than 60000 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/evaluations/:evaluation","description":"<p>Update the specified <code>Evaluation</code> .</p>\n","urlObject":{"path":["api","v1","evaluations",":evaluation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"evaluation"}]}},"response":[],"_postman_id":"134fad17-b422-4fdb-ac0f-fc9578dcd8c7"}],"id":"0073fb1a-e9be-4091-a80c-9bddad216105","_postman_id":"0073fb1a-e9be-4091-a80c-9bddad216105","description":""}],"id":"4f357382-8f88-4250-a816-1f313046d4c1","description":"<p><code>Evaluations</code> store data about a single evaluation line for an evaluable entity.</p>\n<p><code>Evaluations</code> can be templated via a <code>TeamCustomization</code> entry.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> evaluable_id</code>,<code> evaluable_type</code>,<code> field_type</code>,<code> project_id</code>,<code> select_options</code>,<code> team_id</code>,<code> title</code>,<code> value</code>,</p>\n","_postman_id":"4f357382-8f88-4250-a816-1f313046d4c1"},{"name":"Expedites","item":[{"name":"Index","item":[{"name":"api/v1/expedites","id":"c2eb1054-d961-4398-9e21-c5b547304a8e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/expedites","description":"<p>Returns a list of multiple <code>Expedite</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","expedites"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c2eb1054-d961-4398-9e21-c5b547304a8e"}],"id":"f733e330-ad4c-46dd-91ee-ea829f0f361b","_postman_id":"f733e330-ad4c-46dd-91ee-ea829f0f361b","description":""},{"name":"Show","item":[{"name":"api/v1/expedites/{expedite}","id":"7c618a3e-1d8e-4e60-851d-9e754e6ae215","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/expedites/:expedite","description":"<p>Display the specified <code>Expedite</code>.</p>\n","urlObject":{"path":["api","v1","expedites",":expedite"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"expedite"}]}},"response":[],"_postman_id":"7c618a3e-1d8e-4e60-851d-9e754e6ae215"}],"id":"becf96d2-f306-4120-94e0-3e03d015a21b","_postman_id":"becf96d2-f306-4120-94e0-3e03d015a21b","description":""}],"id":"b0b53b83-e710-4301-b5b4-e57eb06ffc26","description":"<p><code>Expedites</code> are used to scope certain common entities under a specific context.</p>\n<p><code>Expedites</code> are created and destroyed by the system via a one-to-one relationship with an <code>Order</code></p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> order_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>files</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b0b53b83-e710-4301-b5b4-e57eb06ffc26"},{"name":"Exports","item":[{"name":"Download","item":[{"name":"api/v1/project_file_exports/{exportId}/download","id":"d9126cd5-d4a3-4674-9a75-7722be6ad4c9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_file_exports/:exportId/download","description":"<p>Download the associated file from Storage.</p>\n","urlObject":{"path":["api","v1","project_file_exports",":exportId","download"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"exportId"}]}},"response":[],"_postman_id":"d9126cd5-d4a3-4674-9a75-7722be6ad4c9"}],"id":"1d402786-a59a-4c0e-99c4-2b565048d429","_postman_id":"1d402786-a59a-4c0e-99c4-2b565048d429","description":""}],"id":"ee71925c-dadc-46dc-8e21-59d8e012c730","_postman_id":"ee71925c-dadc-46dc-8e21-59d8e012c730","description":""},{"name":"Generated::6Bxetv5Qjvkesnnw","item":[{"name":"Api/V1/Allocations/{Allocationid}/Childrenandparentattachables","id":"aa52f844-4cb0-409c-a2d5-19f84cc2b814","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/allocations/:allocationId/childrenandparentattachables","urlObject":{"path":["api","v1","allocations",":allocationId","childrenandparentattachables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"allocationId"}]}},"response":[],"_postman_id":"aa52f844-4cb0-409c-a2d5-19f84cc2b814"}],"id":"43b8cbfa-1459-483f-9d41-97055930218c","_postman_id":"43b8cbfa-1459-483f-9d41-97055930218c","description":""},{"name":"Generated::ltvayupshqvkno05","item":[{"name":"Api/V1/Allocations/Incomplete/Find","id":"02010566-2635-4366-8d7a-b359ef9104a8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/allocations/incomplete/find?project_id&allocation_type&catalog_item_id&order_id&order_item_id&from_business_id&from_location_id&to_business_id&to_location_id&tags&tags.*&groupings&groupings.*&groupings.*.udf_name&groupings.*.udf_value","description":"<p>Find incomplete Allocations based on several criteria.</p>\n","urlObject":{"path":["api","v1","allocations","incomplete","find"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Optional), (Nullable), The project id field must be an integer., The project id field must be at least 0., The project id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"project_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The selected allocation type is invalid, it must exist in transfer-and-consume, supply-and-consume, supply-and-relinquish, storage, transfer, provided-material, consumption, delivery.</p>\n","type":"text/plain"},"key":"allocation_type","value":null},{"description":{"content":"<p>(Optional), (Nullable), The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"catalog_item_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The order id field must be an integer., The order id field must be at least 0., The order id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"order_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The order item id field must be an integer., The order item id field must be at least 0., The order item id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"order_item_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The from business id field must be an integer., The from business id field must be at least 0., The from business id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"from_business_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The from location id field must be an integer., The from location id field must be at least 0., The from location id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"from_location_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The to business id field must be an integer., The to business id field must be at least 0., The to business id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"to_business_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The to location id field must be an integer., The to location id field must be at least 0., The to location id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"to_location_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The tags field must be an array.</p>\n","type":"text/plain"},"key":"tags","value":null},{"description":{"content":"<p>The tags.* field must be a string., The tags.* field must not be greater than 255 characters.</p>\n","type":"text/plain"},"key":"tags.*","value":null},{"description":{"content":"<p>(Optional), (Nullable), The groupings field must be an array.</p>\n","type":"text/plain"},"key":"groupings","value":null},{"description":{"content":"<p>(Optional), (Nullable), The groupings.* field must be an array.</p>\n","type":"text/plain"},"key":"groupings.*","value":null},{"description":{"content":"<p>The groupings.<em>.udf name field must be a string., The groupings.</em>.udf name field must not be greater than 255 characters.</p>\n","type":"text/plain"},"key":"groupings.*.udf_name","value":null},{"description":{"content":"<p>The groupings.<em>.udf value field must be a string., The groupings.</em>.udf value field must not be greater than 255 characters.</p>\n","type":"text/plain"},"key":"groupings.*.udf_value","value":null}],"variable":[]}},"response":[],"_postman_id":"02010566-2635-4366-8d7a-b359ef9104a8"}],"id":"a33197fc-6c48-4766-8d3d-6a1687264f7f","_postman_id":"a33197fc-6c48-4766-8d3d-6a1687264f7f","description":""},{"name":"Generated::perlqgzd2Ddznom8","item":[{"name":"Api/V1/Allocations/Linked/Create Demand Item And Link","id":"dafda0c4-0c88-42b7-9bdd-1cdd5d5d66be","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allocation_type","value":null,"description":"<p>The allocation type field is required., The selected allocation type is invalid, it must exist in supply-and-consume.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_pre_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order pre release field must be a string., The comment.release order pre release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_order_post_release","value":null,"description":"<p>(Optional), (Nullable), The comment.release order post release field must be a string., The comment.release order post release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.receiving_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.receiving comment field must be a string., The comment.receiving comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.release_report_comment","value":null,"description":"<p>(Optional), (Nullable), The comment.release report comment field must be a string., The comment.release report comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"expected_release_date","value":null,"description":"<p>The expected release date field is required., The expected release date field must be a valid date.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>The expected receive date field is required., The expected receive date field must be a valid date., The expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Nullable), The order item id field must be an integer.</p>\n","type":"text"},{"key":"to_order_item_id","value":null,"description":"<p>The to order item id field is prohibited.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity_allocated","value":null,"description":"<p>The quantity allocated field must be a number., The quantity allocated field must be at least 0., The quantity allocated field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_released","value":null,"description":"<p>(Optional), The quantity released field must be a number., The quantity released field must be at least 0., The quantity released field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"relations.tags","value":null,"description":"<p>(Optional), The relations.tags field must be an array.</p>\n","type":"text"},{"key":"relations.tags.*.id","value":null,"description":"<p>The relations.tags.*.id field must be an integer.</p>\n","type":"text"},{"key":"relations.groupings","value":null,"description":"<p>(Nullable), (Optional)</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The selected status is invalid, it must exist in pending, pending_release, fully_released, short_released, over_released, complete, short_receipt, over_received, cancelled.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>(Nullable), The to location id field must be an integer.</p>\n","type":"text"},{"key":"update_tags","value":null,"description":"<p>(Optional), The update tags field must be true or false.</p>\n","type":"text"},{"key":"update_groupings","value":null,"description":"<p>(Optional), The update groupings field must be true or false.</p>\n","type":"text"},{"key":"date_forwarded_jm","value":null,"description":"<p>(Optional), (Nullable), The date forwarded jm field must be a valid date.</p>\n","type":"text"},{"key":"date_exited_jm","value":null,"description":"<p>(Optional), (Nullable), The date exited jm field must be a valid date.</p>\n","type":"text"},{"key":"to_order_id","value":null,"description":"<p>The to order id field is required., The to order id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/allocations/linked/create_demand_item_and_link","urlObject":{"path":["api","v1","allocations","linked","create_demand_item_and_link"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"dafda0c4-0c88-42b7-9bdd-1cdd5d5d66be"}],"id":"bab55102-9547-48f8-bbb6-231d3b920444","_postman_id":"bab55102-9547-48f8-bbb6-231d3b920444","description":""},{"name":"Generated::ucrqzpfknzbgnfyt","item":[{"name":"Api/V1/Allocations/Incomplete/Create Item And Link","id":"a9fe14f9-6926-419c-92d3-75a4e02d14d7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer., The order id field must be at least 0., The order id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"allocation_id","value":null,"description":"<p>The allocation id field is required., The allocation id field must be an integer., The allocation id field must be at least 0., The allocation id field must not be greater than 4294967295.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/allocations/incomplete/create_item_and_link","urlObject":{"path":["api","v1","allocations","incomplete","create_item_and_link"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9fe14f9-6926-419c-92d3-75a4e02d14d7"}],"id":"83afbbc0-0aaa-4ab2-8694-9d6e2b0b2964","_postman_id":"83afbbc0-0aaa-4ab2-8694-9d6e2b0b2964","description":""},{"name":"Get Usermap","item":[{"name":"Api/V1/User Map","id":"150ad8a9-83ec-4f66-95b0-4c74bc540baa","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_map","urlObject":{"path":["api","v1","user_map"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"150ad8a9-83ec-4f66-95b0-4c74bc540baa"}],"id":"3d15bb2e-bfd0-4e6e-bbb8-57277bea525e","_postman_id":"3d15bb2e-bfd0-4e6e-bbb8-57277bea525e","description":""},{"name":"Group Approvals","item":[{"name":"Action","item":[{"name":"api/v1/group_approvals/action","id":"1fb0bcf4-c8be-4784-8abc-8bcdd193bf43","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"decision","value":null,"description":"<p>The decision field is required., The decision field must be a string., The selected decision is invalid, it must exist in approved, rejected, waiting, cancelled, draft.</p>\n","type":"text"},{"key":"decision_notes","value":null,"description":"<p>(Nullable), The decision notes field must be a string., The decision notes field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"id","value":null,"description":"<p>The id field is required., The id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/group_approvals/action","description":"<p>Actions (make a decision on) a specified <code>GroupApproval</code> - ie: 'approved','rejected','cancelled' etc. This action utilizes the currently authenticated user.</p>\n","urlObject":{"path":["api","v1","group_approvals","action"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fb0bcf4-c8be-4784-8abc-8bcdd193bf43"}],"id":"dce30acd-6ddc-4d12-8a6d-8bdd420fc416","_postman_id":"dce30acd-6ddc-4d12-8a6d-8bdd420fc416","description":""},{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_group_approvals","id":"2a0f1124-f0cb-4a6a-a136-ae0d3dedaad5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_group_approvals","description":"<p>Destroy multiple <code>GroupApproval</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_group_approvals"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a0f1124-f0cb-4a6a-a136-ae0d3dedaad5"}],"id":"83d64210-1d56-41d4-a820-517870986f1e","_postman_id":"83d64210-1d56-41d4-a820-517870986f1e","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_group_approvals","id":"8a433f88-b6a6-4bd5-8b96-eb08a0c4faef","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.actioned_at","value":null,"description":"<p>The data.<em>.actioned at field must be a valid date., The data.</em>.actioned at field is required when decision is present.</p>\n","type":"text"},{"key":"data.*.actioned_user_id","value":null,"description":"<p>(Nullable), The data.*.actioned user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.approvable_id","value":null,"description":"<p>The data.<em>.approvable id field is required., The data.</em>.approvable id field must be an integer., The data.<em>.approvable id field must be at least 0 characters., The data.</em>.approvable id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.approvable_type","value":null,"description":"<p>The data.<em>.approvable type field is required., The data.</em>.approvable type field must be a string.</p>\n","type":"text"},{"key":"data.*.decision","value":null,"description":"<p>(Nullable), The data.<em>.decision field is required when actioned user id is present., The selected data.</em>.decision is invalid, it must exist in waiting, cancelled, draft.</p>\n","type":"text"},{"key":"data.*.decision_notes","value":null,"description":"<p>(Nullable), The data.<em>.decision notes field must be a string., The data.</em>.decision notes field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"data.*.is_required","value":null,"description":"<p>The data.<em>.is required field is required., The data.</em>.is required field must be true or false.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.requested_user_id","value":null,"description":"<p>(Nullable), The data.*.requested user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.responsibility","value":null,"description":"<p>(Nullable), The data.<em>.responsibility field must be a string., The data.</em>.responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.scope","value":null,"description":"<p>The data.<em>.scope field is required., The data.</em>.scope field must be a string., The data.*.scope field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_group_approvals","description":"<p>Store multiple <code>GroupApproval</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_group_approvals"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a433f88-b6a6-4bd5-8b96-eb08a0c4faef"}],"id":"af4eac3f-bf73-4b97-8b04-bbfc5eb24498","_postman_id":"af4eac3f-bf73-4b97-8b04-bbfc5eb24498","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_group_approvals","id":"8dbd1759-f794-460f-ba42-6e0a7a27d768","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.is_required","value":null,"description":"<p>The data.<em>.is required field is required., The data.</em>.is required field must be true or false.</p>\n","type":"text"},{"key":"data.*.requested_user_id","value":null,"description":"<p>(Nullable), The data.*.requested user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.responsibility","value":null,"description":"<p>(Nullable), The data.<em>.responsibility field must be a string., The data.</em>.responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.approvable_id","value":null,"description":"<p>(Optional), The data.<em>.approvable id field must be an integer., The data.</em>.approvable id field must be at least 0 characters., The data.*.approvable id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.approvable_type","value":null,"description":"<p>(Optional), The data.*.approvable type field must be a string.</p>\n","type":"text"},{"key":"data.*.decision","value":null,"description":"<p>The data.<em>.decision field is required., The data.</em>.decision field must be a string., The selected data.*.decision is invalid, it must exist in waiting, cancelled, draft.</p>\n","type":"text"},{"key":"data.*.scope","value":null,"description":"<p>The data.<em>.scope field is required., The data.</em>.scope field must be a string., The data.*.scope field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_group_approvals","description":"<p>Update multiple <code>GroupApproval</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_group_approvals"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"8dbd1759-f794-460f-ba42-6e0a7a27d768"}],"id":"eb177e0d-76c3-4043-a2a6-48bcec2eaee7","_postman_id":"eb177e0d-76c3-4043-a2a6-48bcec2eaee7","description":""},{"name":"Destroy","item":[{"name":"api/v1/group_approvals/{group_approval}","id":"f49fe87a-7f39-4139-b024-d094c5a60e09","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/group_approvals/:group_approval","description":"<p>Remove the specified <code>GroupApproval</code> from storage.</p>\n","urlObject":{"path":["api","v1","group_approvals",":group_approval"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"group_approval"}]}},"response":[],"_postman_id":"f49fe87a-7f39-4139-b024-d094c5a60e09"}],"id":"b2d21629-4bf3-48d5-b4d2-6f006cdd7c3d","_postman_id":"b2d21629-4bf3-48d5-b4d2-6f006cdd7c3d","description":""},{"name":"Index","item":[{"name":"api/v1/group_approvals","id":"fac4776a-3df8-4524-adf6-abdde977f83a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/group_approvals","description":"<p>Returns a list of multiple <code>GroupApproval</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","group_approvals"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"fac4776a-3df8-4524-adf6-abdde977f83a"}],"id":"cb2d1fde-f28d-4a81-8c7a-7b5aa74cdaf6","_postman_id":"cb2d1fde-f28d-4a81-8c7a-7b5aa74cdaf6","description":""},{"name":"Notify","item":[{"name":"api/v1/group_approvals/{group_approval}/notify","id":"1da1510e-3305-4e20-b035-dd547d57b2dc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/group_approvals/:group_approval/notify","description":"<p>Notifies the <code>User</code> of a <code>GroupApproval</code> that their approval is now required.</p>\n","urlObject":{"path":["api","v1","group_approvals",":group_approval","notify"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"group_approval"}]}},"response":[],"_postman_id":"1da1510e-3305-4e20-b035-dd547d57b2dc"}],"id":"efdc9eb3-79d8-4ed6-a1d1-0c4c644b8232","_postman_id":"efdc9eb3-79d8-4ed6-a1d1-0c4c644b8232","description":""},{"name":"Requisition Notify","item":[{"name":"api/v1/requisition_with_group_approvals/{group_approval}/notify","id":"31b56672-5afe-470d-bf83-4ba455edc7fe","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisition_with_group_approvals/:group_approval/notify","description":"<p>This route is supposed to be used specifically for Requisitions when its workflow triggers a group approval request. I.e., \"* with group approval\".</p>\n","urlObject":{"path":["api","v1","requisition_with_group_approvals",":group_approval","notify"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"group_approval"}]}},"response":[],"_postman_id":"31b56672-5afe-470d-bf83-4ba455edc7fe"}],"id":"258c3237-eaaf-4b2f-99fe-4cbb53e1668e","_postman_id":"258c3237-eaaf-4b2f-99fe-4cbb53e1668e","description":""},{"name":"Show","item":[{"name":"api/v1/group_approvals/{group_approval}","id":"24a4ae6a-763b-483b-8dcd-b1b84e9121df","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/group_approvals/:group_approval","description":"<p>Display the specified <code>GroupApproval</code>.</p>\n","urlObject":{"path":["api","v1","group_approvals",":group_approval"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"group_approval"}]}},"response":[],"_postman_id":"24a4ae6a-763b-483b-8dcd-b1b84e9121df"}],"id":"d9f30cf5-0cff-4d71-ad4d-fa758a75fb92","_postman_id":"d9f30cf5-0cff-4d71-ad4d-fa758a75fb92","description":""},{"name":"Store","item":[{"name":"api/v1/group_approvals","id":"c6829b56-d91a-4bd8-be42-66abcd7bc50f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"actioned_at","value":null,"description":"<p>The actioned at field must be a valid date., The actioned at field is required when decision is present.</p>\n","type":"text"},{"key":"actioned_user_id","value":null,"description":"<p>(Nullable), The actioned user id field must be an integer.</p>\n","type":"text"},{"key":"approvable_id","value":null,"description":"<p>The approvable id field is required., The approvable id field must be an integer., The approvable id field must be at least 0., The approvable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"approvable_type","value":null,"description":"<p>The approvable type field is required., The approvable type field must be a string.</p>\n","type":"text"},{"key":"decision","value":null,"description":"<p>(Nullable), The decision field is required when actioned user id is present., The selected decision is invalid, it must exist in waiting, cancelled, draft.</p>\n","type":"text"},{"key":"decision_notes","value":null,"description":"<p>(Nullable), The decision notes field must be a string., The decision notes field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"is_required","value":null,"description":"<p>The is required field is required., The is required field must be true or false.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"requested_user_id","value":null,"description":"<p>(Nullable), The requested user id field must be an integer.</p>\n","type":"text"},{"key":"responsibility","value":null,"description":"<p>(Nullable), The responsibility field must be a string., The responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"scope","value":null,"description":"<p>The scope field is required., The scope field must be a string., The scope field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/group_approvals","description":"<p>Create a new <code>GroupApproval</code> object.</p>\n","urlObject":{"path":["api","v1","group_approvals"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6829b56-d91a-4bd8-be42-66abcd7bc50f"}],"id":"ad00da17-e2fe-42a2-b229-cdd213578bb2","_postman_id":"ad00da17-e2fe-42a2-b229-cdd213578bb2","description":""},{"name":"Update","item":[{"name":"api/v1/group_approvals/{group_approval}","id":"0f10ade3-f191-4c8c-88bb-d190dd0cce1a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_required","value":null,"description":"<p>The is required field is required., The is required field must be true or false.</p>\n","type":"text"},{"key":"requested_user_id","value":null,"description":"<p>(Nullable), The requested user id field must be an integer.</p>\n","type":"text"},{"key":"responsibility","value":null,"description":"<p>(Nullable), The responsibility field must be a string., The responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"approvable_id","value":null,"description":"<p>(Optional), The approvable id field must be an integer., The approvable id field must be at least 0., The approvable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"approvable_type","value":null,"description":"<p>(Optional), The approvable type field must be a string.</p>\n","type":"text"},{"key":"decision","value":null,"description":"<p>The decision field is required., The decision field must be a string., The selected decision is invalid, it must exist in waiting, cancelled, draft.</p>\n","type":"text"},{"key":"scope","value":null,"description":"<p>The scope field is required., The scope field must be a string., The scope field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/group_approvals/:group_approval","description":"<p>Update the specified <code>GroupApproval</code> .</p>\n","urlObject":{"path":["api","v1","group_approvals",":group_approval"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"group_approval"}]}},"response":[],"_postman_id":"0f10ade3-f191-4c8c-88bb-d190dd0cce1a"},{"name":"api/v1/group_approvals/{group_approval}","id":"c086c97e-0039-41ea-947a-b0f6c34e9823","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_required","value":null,"description":"<p>The is required field is required., The is required field must be true or false.</p>\n","type":"text"},{"key":"requested_user_id","value":null,"description":"<p>(Nullable), The requested user id field must be an integer.</p>\n","type":"text"},{"key":"responsibility","value":null,"description":"<p>(Nullable), The responsibility field must be a string., The responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"approvable_id","value":null,"description":"<p>(Optional), The approvable id field must be an integer., The approvable id field must be at least 0., The approvable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"approvable_type","value":null,"description":"<p>(Optional), The approvable type field must be a string.</p>\n","type":"text"},{"key":"decision","value":null,"description":"<p>The decision field is required., The decision field must be a string., The selected decision is invalid, it must exist in waiting, cancelled, draft.</p>\n","type":"text"},{"key":"scope","value":null,"description":"<p>The scope field is required., The scope field must be a string., The scope field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/group_approvals/:group_approval","description":"<p>Update the specified <code>GroupApproval</code> .</p>\n","urlObject":{"path":["api","v1","group_approvals",":group_approval"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"group_approval"}]}},"response":[],"_postman_id":"c086c97e-0039-41ea-947a-b0f6c34e9823"}],"id":"e90c65f9-9e79-4cc7-8d1a-031f0ef7297c","_postman_id":"e90c65f9-9e79-4cc7-8d1a-031f0ef7297c","description":""}],"id":"0089d622-bb24-4cce-9f12-cf33a76c29ce","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> actioned_at</code>,<code> actioned_user_id</code>,<code> approvable_id</code>,<code> approvable_type</code>,<code> decision</code>,<code> decision_notes</code>,<code> is_required</code>,<code> project_id</code>,<code> requested_user_id</code>,<code> responsibility</code>,<code> scope</code>,<code> team_id</code>,</p>\n","_postman_id":"0089d622-bb24-4cce-9f12-cf33a76c29ce"},{"name":"Groupings","item":[{"name":"List","item":[{"name":"api/v1/grouping/list","id":"e9da0f1b-6064-4fd9-bcda-b98bcddc25b6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/grouping/list?attributable_type&attributable_id","description":"<p>Provides a listing of <code>Groups</code> attached to an <code>Attributable</code> entity.</p>\n","urlObject":{"path":["api","v1","grouping","list"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The attributable type field is required., The attributable type field must be a string., The selected attributable type is invalid, it must exist in Bid, BidItem, Offer, OfferItem, Order, OrderItem, Project, PurchaseOrder, PurchaseOrderItem, Requisition, RequisitionItem, SalesOrder, SalesOrderItem.</p>\n","type":"text/plain"},"key":"attributable_type","value":null},{"description":{"content":"<p>The attributable id field is required., The attributable id field must be an integer.</p>\n","type":"text/plain"},"key":"attributable_id","value":null}],"variable":[]}},"response":[],"_postman_id":"e9da0f1b-6064-4fd9-bcda-b98bcddc25b6"}],"id":"2a6998ac-28c2-4950-b3a8-231aaaed7dfb","_postman_id":"2a6998ac-28c2-4950-b3a8-231aaaed7dfb","description":""}],"id":"94d50fc6-17c1-4e7b-8c9c-f6cbffd398a6","_postman_id":"94d50fc6-17c1-4e7b-8c9c-f6cbffd398a6","description":""},{"name":"Imports","item":[{"name":"Asset","item":[{"name":"api/v1/import/asset","id":"e70d7450-738f-4d78-a103-cd9fa87fb5b5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/asset","description":"<p>Accepts a formatted template and creates multiple <code>Asset</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","asset"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e70d7450-738f-4d78-a103-cd9fa87fb5b5"}],"id":"20cf6595-f9aa-4566-8fd2-686e09f2c8d4","_postman_id":"20cf6595-f9aa-4566-8fd2-686e09f2c8d4","description":""},{"name":"Bom","item":[{"name":"api/v1/import/bill_of_materials","id":"2582d7cb-0594-4045-93a1-caea048b94be","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/bill_of_materials","description":"<p>Accepts a formatted template and creates multiple <code>BillOfMaterial</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","bill_of_materials"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2582d7cb-0594-4045-93a1-caea048b94be"}],"id":"9c7d65b5-768c-4ab6-9f3e-3e6059cd7729","_postman_id":"9c7d65b5-768c-4ab6-9f3e-3e6059cd7729","description":""},{"name":"Business","item":[{"name":"api/v1/import/business","id":"96f80ecc-d03b-438b-a4f2-127f4170aeb8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/business","description":"<p>Accepts a formatted template and creates multiple <code>Business</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"96f80ecc-d03b-438b-a4f2-127f4170aeb8"}],"id":"41ca9ae7-b5ff-471d-8d96-aaa711b8653f","_postman_id":"41ca9ae7-b5ff-471d-8d96-aaa711b8653f","description":""},{"name":"Catalog","item":[{"name":"api/v1/import/catalog","id":"a8aadd9d-950f-4363-81b5-3cb2d47f79fe","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/catalog","description":"<p>Accepts a formatted template and creates multiple <code>Catalog</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","catalog"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8aadd9d-950f-4363-81b5-3cb2d47f79fe"}],"id":"17c3a43d-5d48-4e19-bd1f-39c033b69f1d","_postman_id":"17c3a43d-5d48-4e19-bd1f-39c033b69f1d","description":""},{"name":"Catalog Class","item":[{"name":"api/v1/import/catalog_class","id":"556587ca-7ff6-4ff4-b248-444c98fa3010","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/catalog_class","description":"<p>Accepts a formatted template and creates multiple <code>CatalogClass</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","catalog_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"556587ca-7ff6-4ff4-b248-444c98fa3010"}],"id":"7573045f-e4a2-4177-ad7a-4d4d0b8a8d9b","_postman_id":"7573045f-e4a2-4177-ad7a-4d4d0b8a8d9b","description":""},{"name":"Catalog Definition","item":[{"name":"api/v1/import/catalog_definition","id":"7dce9e35-61ff-46b1-bb8d-7ca62acfe3ff","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/catalog_definition","description":"<p>Accepts a formatted template and creates multiple <code>CatalogDefinition</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","catalog_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"7dce9e35-61ff-46b1-bb8d-7ca62acfe3ff"}],"id":"04e2ba0c-2079-413e-9c8b-3034b6097602","_postman_id":"04e2ba0c-2079-413e-9c8b-3034b6097602","description":""},{"name":"Catalog Item","item":[{"name":"api/v1/import/catalog_item","id":"a8bb0e45-95c2-4e72-89b9-8e0ad8a4b862","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/catalog_item","description":"<p>Accepts a formatted template and creates multiple <code>CatalogItem</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","catalog_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8bb0e45-95c2-4e72-89b9-8e0ad8a4b862"}],"id":"10b5b7d5-4740-452d-9397-b92078cce7c3","_postman_id":"10b5b7d5-4740-452d-9397-b92078cce7c3","description":""},{"name":"Catalog Sub Class","item":[{"name":"api/v1/import/catalog_sub_class","id":"c5fdf5fa-c48a-4e0e-b3dc-94e215209651","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/catalog_sub_class","description":"<p>Accepts a formatted template and creates multiple <code>CatalogSubClass</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","catalog_sub_class"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5fdf5fa-c48a-4e0e-b3dc-94e215209651"}],"id":"38169a71-7391-41e4-afbc-15cbfacc56b6","_postman_id":"38169a71-7391-41e4-afbc-15cbfacc56b6","description":""},{"name":"Cost Code","item":[{"name":"api/v1/import/cost_code","id":"f515275a-d41b-4b22-ab84-1e80ca287ce9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/cost_code","description":"<p>Accepts a formatted template and creates multiple <code>CostCode</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","cost_code"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f515275a-d41b-4b22-ab84-1e80ca287ce9"}],"id":"fed6955c-d939-49b5-a190-4c6bd32aa6e1","_postman_id":"fed6955c-d939-49b5-a190-4c6bd32aa6e1","description":""},{"name":"Document Type","item":[{"name":"api/v1/import/document_type","id":"582bf5e3-f4b4-4317-a354-0d2c0bae8eda","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/document_type","description":"<p>Accepts a formatted template and creates multiple <code>DocumentType</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","document_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"582bf5e3-f4b4-4317-a354-0d2c0bae8eda"}],"id":"1497346a-88ac-4742-a995-7d42895053af","_postman_id":"1497346a-88ac-4742-a995-7d42895053af","description":""},{"name":"Document Type Submission","item":[{"name":"api/v1/import/document_type_submission","id":"56292f81-9d53-4733-a4c4-fd93b4eb2411","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/document_type_submission","description":"<p>Accepts a formatted template and creates multiple <code>DocumentTypeSubmission</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","document_type_submission"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"56292f81-9d53-4733-a4c4-fd93b4eb2411"}],"id":"d0045f4b-030d-4c2e-b9cb-48bb5a2f0d4a","_postman_id":"d0045f4b-030d-4c2e-b9cb-48bb5a2f0d4a","description":""},{"name":"Import Offer Data","item":[{"name":"api/v1/import/offer/{offerId}","id":"3f837f5a-755f-42bf-8806-901ce5cbda6b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/offer/:offerId","description":"<p>Accepts a formatted template and creates updates a Vendor Offer with price quotes from a specific Vendor bid transaction.</p>\n","urlObject":{"path":["api","v1","import","offer",":offerId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offerId"}]}},"response":[],"_postman_id":"3f837f5a-755f-42bf-8806-901ce5cbda6b"}],"id":"c7d27bee-a237-433d-a57d-95cd97b2962c","_postman_id":"c7d27bee-a237-433d-a57d-95cd97b2962c","description":""},{"name":"Import Order Invoices","item":[{"name":"api/v1/import/order_invoice","id":"0c630f6c-3279-427f-9ec7-6bcc821ed265","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/order_invoice","description":"<p>Accepts a formatted template and imports OrderInvoices.</p>\n","urlObject":{"path":["api","v1","import","order_invoice"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c630f6c-3279-427f-9ec7-6bcc821ed265"}],"id":"05f2024c-c47a-41cb-8f92-984f4fdd9d37","_postman_id":"05f2024c-c47a-41cb-8f92-984f4fdd9d37","description":""},{"name":"Invoice Reconciliation","item":[{"name":"api/v1/import/inventory_reconciliation","id":"57c6d6ff-4c00-4651-9c96-062ed4b5bf3c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/inventory_reconciliation","description":"<p>Accepts a formatted template and creates multiple <code>InventoryTransactions</code> wrapped in an <code>InventoryAdjustment</code> transaction.</p>\n","urlObject":{"path":["api","v1","import","inventory_reconciliation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"57c6d6ff-4c00-4651-9c96-062ed4b5bf3c"}],"id":"5bb62396-4068-4b0f-9577-c930167f6737","_postman_id":"5bb62396-4068-4b0f-9577-c930167f6737","description":""},{"name":"Location","item":[{"name":"api/v1/import/location","id":"98dc1050-a82a-4c74-a940-200230c10a11","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/location","description":"<p>Accepts a formatted template and creates multiple <code>Location</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"98dc1050-a82a-4c74-a940-200230c10a11"}],"id":"67ec83a5-7c4e-46e1-aaaf-58304647a7fb","_postman_id":"67ec83a5-7c4e-46e1-aaaf-58304647a7fb","description":""},{"name":"Person","item":[{"name":"api/v1/import/person","id":"d211ab8a-ac00-47ff-bd25-80e32d11b42b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/person","description":"<p>Accepts a formatted template and creates multiple <code>Person</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","person"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d211ab8a-ac00-47ff-bd25-80e32d11b42b"}],"id":"884988a9-580a-4187-99e7-73cd6fc21802","_postman_id":"884988a9-580a-4187-99e7-73cd6fc21802","description":""},{"name":"Spec Standard","item":[{"name":"api/v1/import/spec_standard","id":"6c623def-e0a9-4c6b-8e42-c8337e8378ac","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/import/spec_standard","description":"<p>Accepts a formatted template and creates multiple <code>SpecStandard</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","spec_standard"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c623def-e0a9-4c6b-8e42-c8337e8378ac"}],"id":"40cac64d-aaed-4120-9d96-42c3f2d52953","_postman_id":"40cac64d-aaed-4120-9d96-42c3f2d52953","description":""},{"name":"Tag","item":[{"name":"api/v1/import/tag","id":"32dba883-5f2c-43ee-a2f6-804201d72f9b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"file","value":null,"description":"<p>The file field is required., The file field must be a file of type: xlsx, xls, csv., The file field must not be greater than 5120 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/import/tag","description":"<p>Accepts a formatted template and creates multiple <code>Tag</code> Objects.</p>\n","urlObject":{"path":["api","v1","import","tag"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"32dba883-5f2c-43ee-a2f6-804201d72f9b"}],"id":"8702eb6f-c9a5-48a3-925d-16360dccea79","_postman_id":"8702eb6f-c9a5-48a3-925d-16360dccea79","description":""}],"id":"c75562de-3280-408d-877b-0ea1ac1da0fb","description":"<p>Imports consume a single <code>file</code> under a <code>Team</code> or <code>Project</code> context to create data.</p>\n<p>Files can be an excel or csv.</p>\n<p>Columns and data requirements are defined in downloadable templates within the main application.</p>\n<p>Please see the main application help documentation for more information.</p>\n","_postman_id":"c75562de-3280-408d-877b-0ea1ac1da0fb"},{"name":"Incoterms","item":[{"name":"Index","item":[{"name":"api/v1/incoterms","id":"89429099-bbaa-44f4-9de9-5d28de71fb23","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/incoterms","description":"<p>Returns a list of multiple <code>Incoterm</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","incoterms"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"89429099-bbaa-44f4-9de9-5d28de71fb23"}],"id":"7e394718-83ad-4783-869d-6d187353b715","_postman_id":"7e394718-83ad-4783-869d-6d187353b715","description":""},{"name":"Show","item":[{"name":"api/v1/incoterms/{incoterm}","id":"dd9ffb28-d1da-41cd-b6a8-13b45be13eb3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/incoterms/:incoterm","description":"<p>Display the specified <code>Incoterm</code>.</p>\n","urlObject":{"path":["api","v1","incoterms",":incoterm"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"incoterm"}]}},"response":[],"_postman_id":"dd9ffb28-d1da-41cd-b6a8-13b45be13eb3"}],"id":"b5cdfa37-2aca-4c5c-8a60-9fa45b1ea208","_postman_id":"b5cdfa37-2aca-4c5c-8a60-9fa45b1ea208","description":""}],"id":"01cbfd91-8042-4949-aeed-408d5a74c6df","description":"<p><code>Incoterms</code> define an Incoterms 2021 type for use on issued documents to communicate to all parties the effective incoterms that governs the transaction.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> carriage_to_destination</code>,<code> carriage_to_port_of_export</code>,<code> carriage_to_port_of_import</code>,<code> description</code>,<code> export_customs_declaration</code>,<code> import_customs_clearance</code>,<code> import_duties_and_taxes</code>,<code> insurance</code>,<code> is_active</code>,<code> is_approved</code>,<code> loading_at_origin</code>,<code> loading_on_truck_in_port_of_import</code>,<code> loading_on_vessel_in_port_of_export</code>,<code> name</code>,<code> team_id</code>,<code> unloading_at_destination</code>,<code> unloading_in_port_of_import</code>,<code> unloading_of_truck_in_port_of_export</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"01cbfd91-8042-4949-aeed-408d5a74c6df"},{"name":"Inspection Actions","item":[{"name":"Destroy","item":[{"name":"api/v1/inspection_actions/{inspection_action}","id":"79506271-e2d9-4dc2-acaa-4666b55be6af","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_actions/:inspection_action","description":"<p>Remove the specified <code>InspectionAction</code>. DELETE /inspection-actions/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_actions",":inspection_action"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_action"}]}},"response":[],"_postman_id":"79506271-e2d9-4dc2-acaa-4666b55be6af"}],"id":"5afdb26b-2f68-4961-9138-723836f1bbf6","_postman_id":"5afdb26b-2f68-4961-9138-723836f1bbf6","description":""},{"name":"Index","item":[{"name":"api/v1/inspection_actions","id":"48e1dc8d-a303-48ce-96d6-c92b2120152d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_actions","description":"<p>Returns a list of multiple <code>InspectionActions</code> objects based on optional criteria. GET|HEAD /inspection_actions.</p>\n","urlObject":{"path":["api","v1","inspection_actions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"48e1dc8d-a303-48ce-96d6-c92b2120152d"}],"id":"238e6071-db29-4b41-96ea-adbdbc448eab","_postman_id":"238e6071-db29-4b41-96ea-adbdbc448eab","description":""},{"name":"Show","item":[{"name":"api/v1/inspection_actions/{inspection_action}","id":"855bd769-b47b-4fa1-aef0-085f72cb6a13","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_actions/:inspection_action","description":"<p>Display the specified ```InspectionAction``. GET|HEAD /inspection_actions/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_actions",":inspection_action"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_action"}]}},"response":[],"_postman_id":"855bd769-b47b-4fa1-aef0-085f72cb6a13"}],"id":"cb9f2daa-f45c-455c-9cd7-5e000ebc19a9","_postman_id":"cb9f2daa-f45c-455c-9cd7-5e000ebc19a9","description":""},{"name":"Store","item":[{"name":"api/v1/inspection_actions","id":"86de4c7b-9e49-434c-b667-43e9c0b53866","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_id","value":null,"description":"<p>The inspection id field is required., (Nullable)</p>\n","type":"text"},{"key":"responsibility","value":null,"description":"<p>(Nullable), The responsibility field must be a string., The responsibility field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"responsible_user_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"action","value":null,"description":"<p>The action field is required., The action field must be a string., The action field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_actions","description":"<p>Store a new InspectionAction object. POST /inspection-actions.</p>\n","urlObject":{"path":["api","v1","inspection_actions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"86de4c7b-9e49-434c-b667-43e9c0b53866"}],"id":"c5c72343-be8c-4275-872a-1f73545c18bc","_postman_id":"c5c72343-be8c-4275-872a-1f73545c18bc","description":""},{"name":"Update","item":[{"name":"api/v1/inspection_actions/{inspection_action}","id":"a2922e7f-d467-48d2-adb7-969e4537c61a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_id","value":null,"description":"<p>The inspection id field is required., (Nullable)</p>\n","type":"text"},{"key":"responsibility","value":null,"description":"<p>(Nullable), The responsibility field must be a string., The responsibility field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"responsible_user_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"action","value":null,"description":"<p>The action field is required., The action field must be a string., The action field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_actions/:inspection_action","description":"<p>Update the specified <code>InspectionAction</code>. PUT/PATCH /inspection_actions/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_actions",":inspection_action"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_action"}]}},"response":[],"_postman_id":"a2922e7f-d467-48d2-adb7-969e4537c61a"},{"name":"api/v1/inspection_actions/{inspection_action}","id":"5f24e45f-5ff8-4884-b502-badaf574f21e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_id","value":null,"description":"<p>The inspection id field is required., (Nullable)</p>\n","type":"text"},{"key":"responsibility","value":null,"description":"<p>(Nullable), The responsibility field must be a string., The responsibility field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"responsible_user_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"action","value":null,"description":"<p>The action field is required., The action field must be a string., The action field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_actions/:inspection_action","description":"<p>Update the specified <code>InspectionAction</code>. PUT/PATCH /inspection_actions/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_actions",":inspection_action"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_action"}]}},"response":[],"_postman_id":"5f24e45f-5ff8-4884-b502-badaf574f21e"}],"id":"47e1212e-ff04-4322-a504-e94fc328231d","_postman_id":"47e1212e-ff04-4322-a504-e94fc328231d","description":""}],"id":"f9ad15ac-dea8-46ac-8796-288030f5ab0b","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> action</code>,<code> description</code>,<code> inspection_id</code>,<code> order_id</code>,<code> project_id</code>,<code> responsibility</code>,<code> responsible_user_id</code>,<code> status</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspection</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f9ad15ac-dea8-46ac-8796-288030f5ab0b"},{"name":"Inspection Items","item":[{"name":"Destroy","item":[{"name":"api/v1/inspection_items/{inspection_item}","id":"2761e320-fec6-43f2-8cb9-6c2eaac0fef4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_items/:inspection_item","description":"<p>Remove the specified <code>InspectionItem</code>. DELETE /inspection-items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_items",":inspection_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_item"}]}},"response":[],"_postman_id":"2761e320-fec6-43f2-8cb9-6c2eaac0fef4"}],"id":"4476a2c8-7575-4abf-b5a2-62827df7aea6","_postman_id":"4476a2c8-7575-4abf-b5a2-62827df7aea6","description":""},{"name":"Index","item":[{"name":"api/v1/inspection_items","id":"f693eec6-56a2-4059-b80b-2942fb4a23d5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_items","description":"<p>Returns a list of multiple <code>InspectionItems</code> objects based on optional criteria. GET|HEAD /inspection_items.</p>\n","urlObject":{"path":["api","v1","inspection_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f693eec6-56a2-4059-b80b-2942fb4a23d5"}],"id":"fc8ef945-572b-4619-a725-b926edaf4003","_postman_id":"fc8ef945-572b-4619-a725-b926edaf4003","description":""},{"name":"Show","item":[{"name":"api/v1/inspection_items/{inspection_item}","id":"e819d392-dd71-4de1-bebb-5297267aea9b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_items/:inspection_item","description":"<p>Display the specified ```InspectionItem``. GET|HEAD /inspection_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_items",":inspection_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_item"}]}},"response":[],"_postman_id":"e819d392-dd71-4de1-bebb-5297267aea9b"}],"id":"0a61f41a-e4b3-47d2-a199-0bda9ecd1338","_postman_id":"0a61f41a-e4b3-47d2-a199-0bda9ecd1338","description":""},{"name":"Store","item":[{"name":"api/v1/inspection_items","id":"1ec4d0d4-5e30-42b2-b307-660d7ef80115","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required.</p>\n","type":"text"},{"key":"inspection_id","value":null,"description":"<p>The inspection id field is required.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required.</p>\n","type":"text"},{"key":"inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"percent_complete","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"is_conforming","value":null,"description":"<p>The is conforming field is required., The is conforming field must be true or false.</p>\n","type":"text"},{"key":"non_conformance_reason","value":null,"description":"<p>(Nullable), The non conformance reason field must be a string., The non conformance reason field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"vendor_identifier","value":null,"description":"<p>(Nullable), The vendor identifier field must be a string., The vendor identifier field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_items","description":"<p>Store a new InspectionItem object. POST /inspection-items.</p>\n","urlObject":{"path":["api","v1","inspection_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ec4d0d4-5e30-42b2-b307-660d7ef80115"}],"id":"1692689d-ca29-4f52-85d1-6bf21668babd","_postman_id":"1692689d-ca29-4f52-85d1-6bf21668babd","description":""},{"name":"Update","item":[{"name":"api/v1/inspection_items/{inspection_item}","id":"fdd4b20c-25ad-47d9-bd42-79182c386767","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required.</p>\n","type":"text"},{"key":"inspection_id","value":null,"description":"<p>The inspection id field is required.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required.</p>\n","type":"text"},{"key":"inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"percent_complete","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"is_conforming","value":null,"description":"<p>The is conforming field is required., The is conforming field must be true or false.</p>\n","type":"text"},{"key":"non_conformance_reason","value":null,"description":"<p>(Nullable), The non conformance reason field must be a string., The non conformance reason field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"vendor_identifier","value":null,"description":"<p>(Nullable), The vendor identifier field must be a string., The vendor identifier field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_items/:inspection_item","description":"<p>Update the specified <code>InspectionItem</code>. PUT/PATCH /inspection_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_items",":inspection_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_item"}]}},"response":[],"_postman_id":"fdd4b20c-25ad-47d9-bd42-79182c386767"},{"name":"api/v1/inspection_items/{inspection_item}","id":"489cf5bc-2581-493b-9adc-485bceccd741","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required.</p>\n","type":"text"},{"key":"inspection_id","value":null,"description":"<p>The inspection id field is required.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required.</p>\n","type":"text"},{"key":"inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"percent_complete","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"is_conforming","value":null,"description":"<p>The is conforming field is required., The is conforming field must be true or false.</p>\n","type":"text"},{"key":"non_conformance_reason","value":null,"description":"<p>(Nullable), The non conformance reason field must be a string., The non conformance reason field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"vendor_identifier","value":null,"description":"<p>(Nullable), The vendor identifier field must be a string., The vendor identifier field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_items/:inspection_item","description":"<p>Update the specified <code>InspectionItem</code>. PUT/PATCH /inspection_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_items",":inspection_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_item"}]}},"response":[],"_postman_id":"489cf5bc-2581-493b-9adc-485bceccd741"}],"id":"9a91c628-c022-4a8a-bfac-9a4a6ccecfd1","_postman_id":"9a91c628-c022-4a8a-bfac-9a4a6ccecfd1","description":""}],"id":"21572b58-683f-4b1b-884c-d02a6b15dbe4","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> inspection_id</code>,<code> inspection_requirement_item_id</code>,<code> is_conforming</code>,<code> non_conformance_reason</code>,<code> order_item_id</code>,<code> percent_complete</code>,<code> project_id</code>,<code> team_id</code>,<code> vendor_identifier</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>inspection</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionRequirement</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionRequirementItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItem</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"21572b58-683f-4b1b-884c-d02a6b15dbe4"},{"name":"Inspection Release Items","item":[{"name":"Destroy","item":[{"name":"api/v1/inspection_release_items/{inspection_release_item}","id":"14b7539b-2691-4570-a118-1f4fb39b57e3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_release_items/:inspection_release_item","description":"<p>Remove the specified <code>InspectionReleaseItem</code>. DELETE /inspection-release-items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_release_items",":inspection_release_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_release_item"}]}},"response":[],"_postman_id":"14b7539b-2691-4570-a118-1f4fb39b57e3"}],"id":"6f745c6c-4912-4a0e-80f3-7c5157a27540","_postman_id":"6f745c6c-4912-4a0e-80f3-7c5157a27540","description":""},{"name":"Index","item":[{"name":"api/v1/inspection_release_items","id":"5107e971-11fb-410d-8991-3427d6574f8e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_release_items","description":"<p>Returns a list of multiple <code>InspectionReleaseItems</code> objects based on optional criteria. GET|HEAD /inspection_release_items.</p>\n","urlObject":{"path":["api","v1","inspection_release_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"5107e971-11fb-410d-8991-3427d6574f8e"}],"id":"d9c381b9-e4ae-4923-bc06-9873f0bb791a","_postman_id":"d9c381b9-e4ae-4923-bc06-9873f0bb791a","description":""},{"name":"Show","item":[{"name":"api/v1/inspection_release_items/{inspection_release_item}","id":"788bdbd5-c60c-484a-a05e-80936f7c51bc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_release_items/:inspection_release_item","description":"<p>Display the specified ```InspectionReleaseItem``. GET|HEAD /inspection_release_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_release_items",":inspection_release_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_release_item"}]}},"response":[],"_postman_id":"788bdbd5-c60c-484a-a05e-80936f7c51bc"}],"id":"eda19a01-57ee-4eda-a6b0-c6791260e9b1","_postman_id":"eda19a01-57ee-4eda-a6b0-c6791260e9b1","description":""},{"name":"Store","item":[{"name":"api/v1/inspection_release_items","id":"288bbc89-3545-4a51-b7b8-f6fe6ef75b71","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"inspection_release_id","value":null,"description":"<p>The inspection release id field is required.</p>\n","type":"text"},{"key":"inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_release_items","description":"<p>Store a new InspectionReleaseItem object. POST /inspection-release-items.</p>\n","urlObject":{"path":["api","v1","inspection_release_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"288bbc89-3545-4a51-b7b8-f6fe6ef75b71"}],"id":"293fb13b-1744-489b-8cf4-11041cb80ae4","_postman_id":"293fb13b-1744-489b-8cf4-11041cb80ae4","description":""},{"name":"Update","item":[{"name":"api/v1/inspection_release_items/{inspection_release_item}","id":"7825d1d9-a78c-4c30-9870-fbc9a3ee0ab2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"inspection_release_id","value":null,"description":"<p>The inspection release id field is required.</p>\n","type":"text"},{"key":"inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_release_items/:inspection_release_item","description":"<p>Update the specified <code>InspectionReleaseItem</code>. PUT/PATCH /inspection_release_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_release_items",":inspection_release_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_release_item"}]}},"response":[],"_postman_id":"7825d1d9-a78c-4c30-9870-fbc9a3ee0ab2"},{"name":"api/v1/inspection_release_items/{inspection_release_item}","id":"d240d42c-e1b1-45eb-9fa6-384ccde93ab6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"inspection_release_id","value":null,"description":"<p>The inspection release id field is required.</p>\n","type":"text"},{"key":"inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_release_items/:inspection_release_item","description":"<p>Update the specified <code>InspectionReleaseItem</code>. PUT/PATCH /inspection_release_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_release_items",":inspection_release_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_release_item"}]}},"response":[],"_postman_id":"d240d42c-e1b1-45eb-9fa6-384ccde93ab6"}],"id":"9e0e111d-a8d3-4f5d-b1b1-3ddc0aea8950","_postman_id":"9e0e111d-a8d3-4f5d-b1b1-3ddc0aea8950","description":""}],"id":"78944f70-9891-4bec-94e2-914f109e2ae2","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> inspection_release_id</code>,<code> inspection_requirement_item_id</code>,<code> order_item_id</code>,<code> project_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orderItem</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"78944f70-9891-4bec-94e2-914f109e2ae2"},{"name":"Inspection Releases","item":[{"name":"Destroy","item":[{"name":"api/v1/inspection_releases/{inspection_release}","id":"ba235793-ac15-4abf-9d45-803b397d3d7b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_releases/:inspection_release","description":"<p>Remove the specified <code>InspectionRelease</code>. DELETE /inspection-releases/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_releases",":inspection_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_release"}]}},"response":[],"_postman_id":"ba235793-ac15-4abf-9d45-803b397d3d7b"}],"id":"6d2cfa1f-6d68-4452-9932-825249fe1b1e","_postman_id":"6d2cfa1f-6d68-4452-9932-825249fe1b1e","description":""},{"name":"Index","item":[{"name":"api/v1/inspection_releases","id":"97c47f4f-839c-47f8-8de5-cb3450cfa931","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_releases","description":"<p>Returns a list of multiple <code>InspectionReleases</code> objects based on optional criteria. GET|HEAD /inspection_releases.</p>\n","urlObject":{"path":["api","v1","inspection_releases"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"97c47f4f-839c-47f8-8de5-cb3450cfa931"}],"id":"05d40815-8a9b-41d6-8b62-ab4cbbe6565d","_postman_id":"05d40815-8a9b-41d6-8b62-ab4cbbe6565d","description":""},{"name":"Show","item":[{"name":"api/v1/inspection_releases/{inspection_release}","id":"566f4dee-5e8f-47de-8c9a-a951d08211d9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_releases/:inspection_release","description":"<p>Display the specified ```InspectionRelease``. GET|HEAD /inspection_releases/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_releases",":inspection_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_release"}]}},"response":[],"_postman_id":"566f4dee-5e8f-47de-8c9a-a951d08211d9"}],"id":"598ff0bb-c7be-4598-8d45-df17325bddf4","_postman_id":"598ff0bb-c7be-4598-8d45-df17325bddf4","description":""},{"name":"Store","item":[{"name":"api/v1/inspection_releases","id":"c3dd5bda-8b3c-4132-aa19-5e6b8b8352b0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"is_final","value":null,"description":"<p>The is final field is required., The is final field must be true or false.</p>\n","type":"text"},{"key":"surveillance_date","value":null,"description":"<p>(Nullable), The surveillance date field must be a valid date.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"exceptions","value":null,"description":"<p>(Nullable), The exceptions field must be a string., The exceptions field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.<em>.project id field is required., The relations.items.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.*.order item id field is required.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_releases","description":"<p>Store a new InspectionRelease object. POST /inspection-releases.</p>\n","urlObject":{"path":["api","v1","inspection_releases"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3dd5bda-8b3c-4132-aa19-5e6b8b8352b0"}],"id":"149743b0-1057-4fc5-9500-1f0d42d63fc1","_postman_id":"149743b0-1057-4fc5-9500-1f0d42d63fc1","description":""},{"name":"Update","item":[{"name":"api/v1/inspection_releases/{inspection_release}","id":"24806091-a3f1-46f4-b2a9-7cd2d83b7a2c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"is_final","value":null,"description":"<p>The is final field is required., The is final field must be true or false.</p>\n","type":"text"},{"key":"surveillance_date","value":null,"description":"<p>(Nullable), The surveillance date field must be a valid date.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"exceptions","value":null,"description":"<p>(Nullable), The exceptions field must be a string., The exceptions field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.<em>.project id field is required., The relations.items.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.*.order item id field is required.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_releases/:inspection_release","description":"<p>Update the specified <code>InspectionRelease</code>. PUT/PATCH /inspection_releases/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_releases",":inspection_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_release"}]}},"response":[],"_postman_id":"24806091-a3f1-46f4-b2a9-7cd2d83b7a2c"},{"name":"api/v1/inspection_releases/{inspection_release}","id":"9574a378-86ef-4870-8925-9ebb72451366","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"is_final","value":null,"description":"<p>The is final field is required., The is final field must be true or false.</p>\n","type":"text"},{"key":"surveillance_date","value":null,"description":"<p>(Nullable), The surveillance date field must be a valid date.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"exceptions","value":null,"description":"<p>(Nullable), The exceptions field must be a string., The exceptions field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.<em>.project id field is required., The relations.items.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.*.order item id field is required.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_releases/:inspection_release","description":"<p>Update the specified <code>InspectionRelease</code>. PUT/PATCH /inspection_releases/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_releases",":inspection_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_release"}]}},"response":[],"_postman_id":"9574a378-86ef-4870-8925-9ebb72451366"}],"id":"e63c3d61-f50f-4e66-a80e-131852aab6e6","_postman_id":"e63c3d61-f50f-4e66-a80e-131852aab6e6","description":""}],"id":"02444372-5720-4707-b53c-80ff88fe3a0a","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> date</code>,<code> exceptions</code>,<code> identifier</code>,<code> inspection_requirement_id</code>,<code> is_final</code>,<code> metadata</code>,<code> order_id</code>,<code> project_id</code>,<code> status</code>,<code> surveillance_date</code>,<code> team_id</code>,<code> validation_graph_uuid</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionPerson</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionRequirement</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"02444372-5720-4707-b53c-80ff88fe3a0a"},{"name":"Inspection Requirement Items","item":[{"name":"Destroy","item":[{"name":"api/v1/inspection_requirement_items/{inspection_requirement_item}","id":"489c635f-b483-4cd8-be3d-61a9d76de737","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_requirement_items/:inspection_requirement_item","description":"<p>Remove the specified <code>InspectionRequirementItem</code>. DELETE /inspection-requirement-items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_requirement_items",":inspection_requirement_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_requirement_item"}]}},"response":[],"_postman_id":"489c635f-b483-4cd8-be3d-61a9d76de737"}],"id":"ba88741e-f70f-41ee-a2f7-dccfa4829de1","_postman_id":"ba88741e-f70f-41ee-a2f7-dccfa4829de1","description":""},{"name":"Index","item":[{"name":"api/v1/inspection_requirement_items","id":"6a45d665-0065-4721-af8c-c1126336f73d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_requirement_items","description":"<p>Returns a list of multiple <code>InspectionRequirementItems</code> objects based on optional criteria. GET|HEAD /inspection_requirement_items.</p>\n","urlObject":{"path":["api","v1","inspection_requirement_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a45d665-0065-4721-af8c-c1126336f73d"}],"id":"79efc4bf-52f3-4dfa-a1ed-251523f99a23","_postman_id":"79efc4bf-52f3-4dfa-a1ed-251523f99a23","description":""},{"name":"Show","item":[{"name":"api/v1/inspection_requirement_items/{inspection_requirement_item}","id":"e7145147-70c6-4970-8a7a-1d4f5601ab0a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_requirement_items/:inspection_requirement_item","description":"<p>Display the specified ```InspectionRequirementItem``. GET|HEAD /inspection_requirement_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_requirement_items",":inspection_requirement_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_requirement_item"}]}},"response":[],"_postman_id":"e7145147-70c6-4970-8a7a-1d4f5601ab0a"}],"id":"c0074c43-5f5e-4a23-a1c2-3f2696b3a886","_postman_id":"c0074c43-5f5e-4a23-a1c2-3f2696b3a886","description":""},{"name":"Store","item":[{"name":"api/v1/inspection_requirement_items","id":"b1012a7a-4705-4214-ad11-6a9080d526b5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>The inspection requirement id field is required., The inspection requirement id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required., The order item id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_requirement_items","description":"<p>Store a new InspectionRequirementItem object. POST /inspection-requirement-items.</p>\n","urlObject":{"path":["api","v1","inspection_requirement_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1012a7a-4705-4214-ad11-6a9080d526b5"}],"id":"fb689848-0352-43e1-bf80-5d1cc19b77f7","_postman_id":"fb689848-0352-43e1-bf80-5d1cc19b77f7","description":""},{"name":"Update","item":[{"name":"api/v1/inspection_requirement_items/{inspection_requirement_item}","id":"ed24c782-ca59-470b-8952-1705ca516a19","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>The inspection requirement id field is required., The inspection requirement id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required., The order item id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_requirement_items/:inspection_requirement_item","description":"<p>Update the specified <code>InspectionRequirementItem</code>. PUT/PATCH /inspection_requirement_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_requirement_items",":inspection_requirement_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_requirement_item"}]}},"response":[],"_postman_id":"ed24c782-ca59-470b-8952-1705ca516a19"},{"name":"api/v1/inspection_requirement_items/{inspection_requirement_item}","id":"cdf980b5-8e8b-4c8e-a635-56233a839a15","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>The inspection requirement id field is required., The inspection requirement id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required., The order item id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_requirement_items/:inspection_requirement_item","description":"<p>Update the specified <code>InspectionRequirementItem</code>. PUT/PATCH /inspection_requirement_items/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_requirement_items",":inspection_requirement_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_requirement_item"}]}},"response":[],"_postman_id":"cdf980b5-8e8b-4c8e-a635-56233a839a15"}],"id":"bf749f48-20b7-4f6c-b203-08e57b644643","_postman_id":"bf749f48-20b7-4f6c-b203-08e57b644643","description":""}],"id":"669ac8bb-b94d-48e4-916e-f970ab35dc7e","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> inspection_requirement_id</code>,<code> order_item_id</code>,<code> project_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orderItem</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"669ac8bb-b94d-48e4-916e-f970ab35dc7e"},{"name":"Inspection Requirements","item":[{"name":"Create Inspection","item":[{"name":"api/v1/inspection_requirements/{inspectionRequirement}/create_inspection","id":"5c20e387-9028-4d54-ac88-3fc1e75de693","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_requirements/:inspectionRequirement/create_inspection","urlObject":{"path":["api","v1","inspection_requirements",":inspectionRequirement","create_inspection"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspectionRequirement"}]}},"response":[],"_postman_id":"5c20e387-9028-4d54-ac88-3fc1e75de693"}],"id":"9b8e5525-4207-403e-b9bd-b312d28ad4bd","_postman_id":"9b8e5525-4207-403e-b9bd-b312d28ad4bd","description":""},{"name":"Create Inspection Release","item":[{"name":"api/v1/inspection_requirements/{inspectionRequirement}/create_inspection_release","id":"42090cc5-83bc-49f3-af99-46e4327f64b3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_requirements/:inspectionRequirement/create_inspection_release","urlObject":{"path":["api","v1","inspection_requirements",":inspectionRequirement","create_inspection_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspectionRequirement"}]}},"response":[],"_postman_id":"42090cc5-83bc-49f3-af99-46e4327f64b3"}],"id":"f2d62638-888d-416a-b19d-e33d496187be","_postman_id":"f2d62638-888d-416a-b19d-e33d496187be","description":""},{"name":"Destroy","item":[{"name":"api/v1/inspection_requirements/{inspection_requirement}","id":"021ad275-e59f-4247-8799-ca371c7e096b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_requirements/:inspection_requirement","description":"<p>Remove the specified <code>InspectionRequirement</code>. DELETE /inspection-requirements/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_requirements",":inspection_requirement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_requirement"}]}},"response":[],"_postman_id":"021ad275-e59f-4247-8799-ca371c7e096b"}],"id":"5bf4666f-c6f9-42a0-b351-1ae093576922","_postman_id":"5bf4666f-c6f9-42a0-b351-1ae093576922","description":""},{"name":"Index","item":[{"name":"api/v1/inspection_requirements","id":"6088539c-fc02-40b5-bbdb-967b0b8d3c94","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_requirements","description":"<p>Returns a list of multiple <code>InspectionRequirements</code> objects based on optional criteria. GET|HEAD /inspection_requirements.</p>\n","urlObject":{"path":["api","v1","inspection_requirements"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6088539c-fc02-40b5-bbdb-967b0b8d3c94"}],"id":"f003c564-b195-4995-9c95-2bcde45a3524","_postman_id":"f003c564-b195-4995-9c95-2bcde45a3524","description":""},{"name":"Show","item":[{"name":"api/v1/inspection_requirements/{inspection_requirement}","id":"416f8c32-515b-4c99-b714-64737e58b6f6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspection_requirements/:inspection_requirement","description":"<p>Display the specified ```InspectionRequirement``. GET|HEAD /inspection_requirements/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_requirements",":inspection_requirement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_requirement"}]}},"response":[],"_postman_id":"416f8c32-515b-4c99-b714-64737e58b6f6"}],"id":"43ac74e0-d80a-45fa-b27c-c8b5625c08ec","_postman_id":"43ac74e0-d80a-45fa-b27c-c8b5625c08ec","description":""},{"name":"Store","item":[{"name":"api/v1/inspection_requirements","id":"90bb3485-c478-4db1-a3f6-d69b0705fc15","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"service_order_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"service_plan_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.<em>.project id field is required., The relations.items.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.<em>.order item id field is required., The relations.items.</em>.order item id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_requirements","description":"<p>Store a new InspectionRequirement object. POST /inspection-requirements.</p>\n","urlObject":{"path":["api","v1","inspection_requirements"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"90bb3485-c478-4db1-a3f6-d69b0705fc15"}],"id":"49ac1553-835b-4fc4-9f7f-5389334193e3","_postman_id":"49ac1553-835b-4fc4-9f7f-5389334193e3","description":""},{"name":"Update","item":[{"name":"api/v1/inspection_requirements/{inspection_requirement}","id":"b844bbec-7fc6-4f1b-9c48-fcf7920965ba","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"service_order_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"service_plan_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.<em>.project id field is required., The relations.items.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.<em>.order item id field is required., The relations.items.</em>.order item id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_requirements/:inspection_requirement","description":"<p>Update the specified <code>InspectionRequirement</code>. PUT/PATCH /inspection_requirements/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_requirements",":inspection_requirement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_requirement"}]}},"response":[],"_postman_id":"b844bbec-7fc6-4f1b-9c48-fcf7920965ba"},{"name":"api/v1/inspection_requirements/{inspection_requirement}","id":"900552ba-306c-4d08-b5ed-52fb96bdbcfe","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"service_order_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"service_plan_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.<em>.project id field is required., The relations.items.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.<em>.order item id field is required., The relations.items.</em>.order item id field must be an integer.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspection_requirements/:inspection_requirement","description":"<p>Update the specified <code>InspectionRequirement</code>. PUT/PATCH /inspection_requirements/{id}.</p>\n","urlObject":{"path":["api","v1","inspection_requirements",":inspection_requirement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection_requirement"}]}},"response":[],"_postman_id":"900552ba-306c-4d08-b5ed-52fb96bdbcfe"}],"id":"c4f6e42d-0ed5-4bee-8b14-a66f032afd91","_postman_id":"c4f6e42d-0ed5-4bee-8b14-a66f032afd91","description":""}],"id":"baf21ae6-dc27-4222-bf48-e57fbcfbbd1c","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> description</code>,<code> identifier</code>,<code> inspection_business_id</code>,<code> inspection_person_id</code>,<code> location_id</code>,<code> metadata</code>,<code> order_id</code>,<code> project_id</code>,<code> service_order_id</code>,<code> service_plan_id</code>,<code> status</code>,<code> team_id</code>,<code> title</code>,<code> validation_graph_uuid</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionPerson</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionReleases</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspections</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>servicePlan</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"baf21ae6-dc27-4222-bf48-e57fbcfbbd1c"},{"name":"Inspections","item":[{"name":"Create From Previous","item":[{"name":"api/v1/inspections/clone","id":"293c94ed-da2d-4f40-9e22-f1930b0cd7cb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"inspection_id","value":null,"description":"<p>The inspection id field is required.</p>\n","type":"text"},{"key":"inspection_type","value":null,"description":"<p>The inspection type field is required., The inspection type field must be a string., The inspection type field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"planned_date","value":null,"description":"<p>(Nullable), The planned date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspections/clone","urlObject":{"path":["api","v1","inspections","clone"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"293c94ed-da2d-4f40-9e22-f1930b0cd7cb"}],"id":"ed7390aa-4990-4925-b1ef-1abd6efb0880","_postman_id":"ed7390aa-4990-4925-b1ef-1abd6efb0880","description":""},{"name":"Create Ncr","item":[{"name":"api/v1/inspections/{inspection}/create_ncr","id":"3ef43269-40d7-4e26-ba7b-bdac041c1dda","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspections/:inspection/create_ncr","description":"<p>Scaffolds an NCR from the specified <code>Inspection</code>.</p>\n","urlObject":{"path":["api","v1","inspections",":inspection","create_ncr"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection"}]}},"response":[],"_postman_id":"3ef43269-40d7-4e26-ba7b-bdac041c1dda"}],"id":"6b9c7024-4c2d-43d1-9f09-19a99d827fc0","_postman_id":"6b9c7024-4c2d-43d1-9f09-19a99d827fc0","description":""},{"name":"Destroy","item":[{"name":"api/v1/inspections/{inspection}","id":"04e8ecb4-5f01-4fb1-9018-5c80a7715b30","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspections/:inspection","description":"<p>Remove the specified <code>Inspection</code>. DELETE /inspections/{id}.</p>\n","urlObject":{"path":["api","v1","inspections",":inspection"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection"}]}},"response":[],"_postman_id":"04e8ecb4-5f01-4fb1-9018-5c80a7715b30"}],"id":"4089e89c-8ab8-48bb-94c4-0adf99a551ca","_postman_id":"4089e89c-8ab8-48bb-94c4-0adf99a551ca","description":""},{"name":"Index","item":[{"name":"api/v1/inspections","id":"36309539-c068-4964-846b-c00f60bd97c1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspections","description":"<p>Returns a list of multiple <code>Inspections</code> objects based on optional criteria. GET|HEAD /inspections.</p>\n","urlObject":{"path":["api","v1","inspections"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"36309539-c068-4964-846b-c00f60bd97c1"}],"id":"5c0b5c20-39a5-4fc3-a738-c50e7f9bab36","_postman_id":"5c0b5c20-39a5-4fc3-a738-c50e7f9bab36","description":""},{"name":"Show","item":[{"name":"api/v1/inspections/{inspection}","id":"5c9c5517-277f-47ff-a54d-0fbf2fb691e0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inspections/:inspection","description":"<p>Display the specified ```Inspection``. GET|HEAD /inspections/{id}.</p>\n","urlObject":{"path":["api","v1","inspections",":inspection"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection"}]}},"response":[],"_postman_id":"5c9c5517-277f-47ff-a54d-0fbf2fb691e0"}],"id":"8ece206d-26b1-4340-8988-b7ea269edfa2","_postman_id":"8ece206d-26b1-4340-8988-b7ea269edfa2","description":""},{"name":"Store","item":[{"name":"api/v1/inspections","id":"7c03ae2c-2598-4dc5-85e0-a94c6ed511d6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_type","value":null,"description":"<p>(Nullable), The inspection type field must be a string., The inspection type field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"is_final","value":null,"description":"<p>The is final field is required., The is final field must be true or false.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"planned_date","value":null,"description":"<p>(Optional), (Nullable), The planned date field must be a valid date.</p>\n","type":"text"},{"key":"completion_date","value":null,"description":"<p>(Optional), (Nullable), The completion date field must be a valid date.</p>\n","type":"text"},{"key":"report_date","value":null,"description":"<p>(Optional), (Nullable), The report date field must be a valid date.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.*.project id field is required.</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.*.order item id field is required.</p>\n","type":"text"},{"key":"relations.items.*.inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.percent_complete","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.is_conforming","value":null,"description":"<p>The relations.items.<em>.is conforming field is required., The relations.items.</em>.is conforming field must be true or false.</p>\n","type":"text"},{"key":"relations.items.*.non_conformance_reason","value":null,"description":"<p>(Nullable), The relations.items.<em>.non conformance reason field must be a string., The relations.items.</em>.non conformance reason field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"relations.items.*.vendor_identifier","value":null,"description":"<p>(Nullable), The relations.items.<em>.vendor identifier field must be a string., The relations.items.</em>.vendor identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspections","description":"<p>Store a new Inspection object. POST /inspections.</p>\n","urlObject":{"path":["api","v1","inspections"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c03ae2c-2598-4dc5-85e0-a94c6ed511d6"}],"id":"40078492-85f4-491b-8e35-dbe6ba6d6a77","_postman_id":"40078492-85f4-491b-8e35-dbe6ba6d6a77","description":""},{"name":"Update","item":[{"name":"api/v1/inspections/{inspection}","id":"17b90a0e-4ea5-4f71-bc55-1b310ff63ce2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_type","value":null,"description":"<p>(Nullable), The inspection type field must be a string., The inspection type field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"is_final","value":null,"description":"<p>The is final field is required., The is final field must be true or false.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"planned_date","value":null,"description":"<p>(Optional), (Nullable), The planned date field must be a valid date.</p>\n","type":"text"},{"key":"completion_date","value":null,"description":"<p>(Optional), (Nullable), The completion date field must be a valid date.</p>\n","type":"text"},{"key":"report_date","value":null,"description":"<p>(Optional), (Nullable), The report date field must be a valid date.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.*.project id field is required.</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.*.order item id field is required.</p>\n","type":"text"},{"key":"relations.items.*.inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.percent_complete","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.is_conforming","value":null,"description":"<p>The relations.items.<em>.is conforming field is required., The relations.items.</em>.is conforming field must be true or false.</p>\n","type":"text"},{"key":"relations.items.*.non_conformance_reason","value":null,"description":"<p>(Nullable), The relations.items.<em>.non conformance reason field must be a string., The relations.items.</em>.non conformance reason field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"relations.items.*.vendor_identifier","value":null,"description":"<p>(Nullable), The relations.items.<em>.vendor identifier field must be a string., The relations.items.</em>.vendor identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspections/:inspection","description":"<p>Update the specified <code>Inspection</code>. PUT/PATCH /inspections/{id}.</p>\n","urlObject":{"path":["api","v1","inspections",":inspection"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection"}]}},"response":[],"_postman_id":"17b90a0e-4ea5-4f71-bc55-1b310ff63ce2"},{"name":"api/v1/inspections/{inspection}","id":"efdc00bc-dad6-47c5-a591-872598436210","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"inspection_requirement_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_type","value":null,"description":"<p>(Nullable), The inspection type field must be a string., The inspection type field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"is_final","value":null,"description":"<p>The is final field is required., The is final field must be true or false.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"planned_date","value":null,"description":"<p>(Optional), (Nullable), The planned date field must be a valid date.</p>\n","type":"text"},{"key":"completion_date","value":null,"description":"<p>(Optional), (Nullable), The completion date field must be a valid date.</p>\n","type":"text"},{"key":"report_date","value":null,"description":"<p>(Optional), (Nullable), The report date field must be a valid date.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"has_item_detail","value":null,"description":"<p>(Optional), The has item detail field must be true or false.</p>\n","type":"text"},{"key":"relations.items","value":null,"description":"<p>The relations.items field is required when has item detail is empty., The relations.items field must be an array.</p>\n","type":"text"},{"key":"relations.items.*.project_id","value":null,"description":"<p>The relations.items.*.project id field is required.</p>\n","type":"text"},{"key":"relations.items.*.order_item_id","value":null,"description":"<p>The relations.items.*.order item id field is required.</p>\n","type":"text"},{"key":"relations.items.*.inspection_requirement_item_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.percent_complete","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"relations.items.*.is_conforming","value":null,"description":"<p>The relations.items.<em>.is conforming field is required., The relations.items.</em>.is conforming field must be true or false.</p>\n","type":"text"},{"key":"relations.items.*.non_conformance_reason","value":null,"description":"<p>(Nullable), The relations.items.<em>.non conformance reason field must be a string., The relations.items.</em>.non conformance reason field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"relations.items.*.vendor_identifier","value":null,"description":"<p>(Nullable), The relations.items.<em>.vendor identifier field must be a string., The relations.items.</em>.vendor identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"relations.items.*.id","value":null,"description":"<p>(Optional), (Nullable), The relations.items.<em>.id field must be an integer., The relations.items.</em>.id field must be at least 1 characters., The relations.items.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inspections/:inspection","description":"<p>Update the specified <code>Inspection</code>. PUT/PATCH /inspections/{id}.</p>\n","urlObject":{"path":["api","v1","inspections",":inspection"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inspection"}]}},"response":[],"_postman_id":"efdc00bc-dad6-47c5-a591-872598436210"}],"id":"d86e3ec3-aa55-4000-9c78-3d67e682d477","_postman_id":"d86e3ec3-aa55-4000-9c78-3d67e682d477","description":""}],"id":"d0f8bda1-7027-4f19-8998-e25084a4b9b6","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> completion_date</code>,<code> description</code>,<code> identifier</code>,<code> inspection_business_id</code>,<code> inspection_person_id</code>,<code> inspection_requirement_id</code>,<code> inspection_type</code>,<code> is_final</code>,<code> metadata</code>,<code> order_id</code>,<code> planned_date</code>,<code> project_id</code>,<code> report_date</code>,<code> status</code>,<code> team_id</code>,<code> title</code>,<code> validation_graph_uuid</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionActions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionPerson</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionRequirement</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>openInspectionActions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d0f8bda1-7027-4f19-8998-e25084a4b9b6"},{"name":"Inventory Adjustments","item":[{"name":"Create With Items","item":[{"name":"api/v1/material_management/adjustments","id":"86cedb7d-86b9-477e-be46-4791be08130f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/material_management/adjustments","description":"<p>Create an <code>InventoryAdjustment</code> with a package of associated items.</p>\n","urlObject":{"path":["api","v1","material_management","adjustments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"86cedb7d-86b9-477e-be46-4791be08130f"}],"id":"66b52acf-d182-4028-8fbb-fe4e5ec6d1c6","_postman_id":"66b52acf-d182-4028-8fbb-fe4e5ec6d1c6","description":""},{"name":"Index","item":[{"name":"api/v1/inventory_adjustments","id":"ddc8a0f8-a5d1-441b-a6c9-b68603c684b1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_adjustments","description":"<p>Returns a list of multiple <code>InventoryAdjustment</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","inventory_adjustments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddc8a0f8-a5d1-441b-a6c9-b68603c684b1"}],"id":"d6fd9cc6-f5dc-412c-aa68-969e0e6d14c8","_postman_id":"d6fd9cc6-f5dc-412c-aa68-969e0e6d14c8","description":""},{"name":"Show","item":[{"name":"api/v1/inventory_adjustments/{inventory_adjustment}","id":"2f3f332e-3cb8-4403-aff5-d36a3127816b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_adjustments/:inventory_adjustment","description":"<p>Display the specified <code>InventoryAdjustment</code>.</p>\n","urlObject":{"path":["api","v1","inventory_adjustments",":inventory_adjustment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_adjustment"}]}},"response":[],"_postman_id":"2f3f332e-3cb8-4403-aff5-d36a3127816b"}],"id":"ac3f961b-53f1-4e4d-aaa8-84a3490981c1","_postman_id":"ac3f961b-53f1-4e4d-aaa8-84a3490981c1","description":""}],"id":"42a97895-ba37-4d66-884a-77d3f66234c7","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> description</code>,<code> identifier</code>,<code> location_id</code>,<code> metadata</code>,<code> name</code>,<code> order_id</code>,<code> project_id</code>,<code> status</code>,<code> team_id</code>,<code> validation_graph_uuid</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>createdData</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransactions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>openTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>overdueTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"42a97895-ba37-4d66-884a-77d3f66234c7"},{"name":"Inventory Clearing","item":[{"name":"Project","item":[{"name":"api/v1/inventory_clearing/project/{project}","id":"58bb1695-85e8-43c4-bd2d-46180684442b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_clearing/project/:project","description":"<p>Executes <code>Inventory Clearing</code> at the Project Level.</p>\n","urlObject":{"path":["api","v1","inventory_clearing","project",":project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"58bb1695-85e8-43c4-bd2d-46180684442b"}],"id":"6622ec23-2779-426b-8788-922cfe3272ad","_postman_id":"6622ec23-2779-426b-8788-922cfe3272ad","description":""}],"id":"ce977647-0c1d-4d59-b6e7-77ae1caa73a6","_postman_id":"ce977647-0c1d-4d59-b6e7-77ae1caa73a6","description":""},{"name":"Inventory Finding","item":[{"name":"Date","item":[{"name":"api/v1/inventory_finding/date","id":"0f3bc0de-28f1-47c0-a5b1-4f0f8abbb7ea","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_finding/date?project_id&catalog_item_id&quantity&date","description":"<p>The service locates inventory under the context of a <code>Project</code> at a specific point in time for 1 specific catalog item.</p>\n","urlObject":{"path":["api","v1","inventory_finding","date"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The project id field is required., The project id field must be an integer., The project id field must be at least 0., The project id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"project_id","value":null},{"description":{"content":"<p>The catalog item id field is required., The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"catalog_item_id","value":null},{"description":{"content":"<p>The quantity field is required when catalog item id is present., The quantity field must be a number., The quantity field must be at least 0.0001., The quantity field must not be greater than 999999999.99999.</p>\n","type":"text/plain"},"key":"quantity","value":null},{"description":{"content":"<p>The date field is required., The date field must be a valid date., The date field must be a date after now.</p>\n","type":"text/plain"},"key":"date","value":null}],"variable":[]}},"response":[],"_postman_id":"0f3bc0de-28f1-47c0-a5b1-4f0f8abbb7ea"}],"id":"9283e7f6-e829-4b3a-af01-dce3527c6827","_postman_id":"9283e7f6-e829-4b3a-af01-dce3527c6827","description":""},{"name":"Locate Materials","item":[{"name":"api/v1/locate_materials","id":"b3e4dfb2-bf1e-4601-901b-a9dce983ec64","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/locate_materials?project_id&release_date&items&items.*.catalog_item_id&items.*.quantity","description":"<p>The service locates <code>Locations</code> that can serve a specific quantity request.</p>\n","urlObject":{"path":["api","v1","locate_materials"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The project id field is required.</p>\n","type":"text/plain"},"key":"project_id","value":null},{"description":{"content":"<p>The release date field is required., The release date field must be a valid date.</p>\n","type":"text/plain"},"key":"release_date","value":null},{"description":{"content":"<p>The items field is required., The items field must be an array.</p>\n","type":"text/plain"},"key":"items","value":null},{"description":{"content":"<p>The items.<em>.catalog item id field is required., The items.</em>.catalog item id field must be an integer.</p>\n","type":"text/plain"},"key":"items.*.catalog_item_id","value":null},{"description":{"content":"<p>The items.<em>.quantity field is required., The items.</em>.quantity field must be a number.</p>\n","type":"text/plain"},"key":"items.*.quantity","value":null}],"variable":[]}},"response":[],"_postman_id":"b3e4dfb2-bf1e-4601-901b-a9dce983ec64"}],"id":"f8b85c1e-e53f-4554-8a03-00289459618b","_postman_id":"f8b85c1e-e53f-4554-8a03-00289459618b","description":""},{"name":"Plan Material Allocations From Location","item":[{"name":"api/v1/plan_material_allocations","id":"4299dbfc-bf53-4cfe-b509-abc84de12b61","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/plan_material_allocations?location_id&project_id&release_date&items&items.*.catalog_item_id&items.*.quantity","description":"<p>The service returns a data package of available quantities at a specific <code>Location</code> on a specific release date.</p>\n","urlObject":{"path":["api","v1","plan_material_allocations"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The location id field is required.</p>\n","type":"text/plain"},"key":"location_id","value":null},{"description":{"content":"<p>The project id field is required.</p>\n","type":"text/plain"},"key":"project_id","value":null},{"description":{"content":"<p>The release date field is required., The release date field must be a valid date.</p>\n","type":"text/plain"},"key":"release_date","value":null},{"description":{"content":"<p>The items field is required., The items field must be an array.</p>\n","type":"text/plain"},"key":"items","value":null},{"description":{"content":"<p>The items.<em>.catalog item id field is required., The items.</em>.catalog item id field must be an integer.</p>\n","type":"text/plain"},"key":"items.*.catalog_item_id","value":null},{"description":{"content":"<p>The items.<em>.quantity field is required., The items.</em>.quantity field must be a number.</p>\n","type":"text/plain"},"key":"items.*.quantity","value":null}],"variable":[]}},"response":[],"_postman_id":"4299dbfc-bf53-4cfe-b509-abc84de12b61"}],"id":"2b48877e-19bb-4e6d-be63-bd1438598c39","_postman_id":"2b48877e-19bb-4e6d-be63-bd1438598c39","description":""}],"id":"5caefb6e-3c08-45c0-a8be-4d28a4546af0","_postman_id":"5caefb6e-3c08-45c0-a8be-4d28a4546af0","description":""},{"name":"Inventory Listing","item":[{"name":"Business","item":[{"name":"api/v1/inventory_listing/business/{business}","id":"dbeb9f10-ef4d-4c73-a74e-b3cacfa3abc5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_listing/business/:business?catalog_item_ids&catalog_item_ids.*","description":"<p>Service returns all inventory held by a <code>Business</code>.</p>\n","urlObject":{"path":["api","v1","inventory_listing","business",":business"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Optional), The catalog item ids field must be an array.</p>\n","type":"text/plain"},"key":"catalog_item_ids","value":null},{"description":{"content":"<p>(Optional), The catalog item ids.* field must be an integer.</p>\n","type":"text/plain"},"key":"catalog_item_ids.*","value":null}],"variable":[{"type":"any","key":"business"}]}},"response":[],"_postman_id":"dbeb9f10-ef4d-4c73-a74e-b3cacfa3abc5"}],"id":"26afae53-b9ec-4926-bbc8-483912b94b4a","_postman_id":"26afae53-b9ec-4926-bbc8-483912b94b4a","description":""},{"name":"Business Location","item":[{"name":"api/v1/inventory_listing/business/{business}/locations","id":"eb6f7ff8-58df-4310-8a1e-d6ff7f441131","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_listing/business/:business/locations?catalog_item_id","description":"<p>Returns all inventory holding <code>Locations</code> with quantities for a specific <code>Business</code>.</p>\n","urlObject":{"path":["api","v1","inventory_listing","business",":business","locations"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The catalog item id field is required., The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"catalog_item_id","value":null}],"variable":[{"type":"any","key":"business"}]}},"response":[],"_postman_id":"eb6f7ff8-58df-4310-8a1e-d6ff7f441131"}],"id":"ae663574-bfd0-4ce9-b33b-2c085f7500f3","_postman_id":"ae663574-bfd0-4ce9-b33b-2c085f7500f3","description":""},{"name":"Location","item":[{"name":"api/v1/inventory_listing/location/{location}","id":"8652c0c3-604f-41f6-8423-869ba29ab84d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_listing/location/:location?catalog_item_ids&catalog_item_ids.*","description":"<p>Service returns all inventory held by a <code>Location</code>.</p>\n","urlObject":{"path":["api","v1","inventory_listing","location",":location"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Optional), The catalog item ids field must be an array.</p>\n","type":"text/plain"},"key":"catalog_item_ids","value":null},{"description":{"content":"<p>(Optional), The catalog item ids.* field must be an integer., The catalog item ids.* field must be at least 0 characters., The catalog item ids.* field must not be greater than 4294967295 characters.</p>\n","type":"text/plain"},"key":"catalog_item_ids.*","value":null}],"variable":[{"type":"any","key":"location"}]}},"response":[],"_postman_id":"8652c0c3-604f-41f6-8423-869ba29ab84d"}],"id":"19b9901c-7bfb-41b3-9ea1-ae36fe15dc10","_postman_id":"19b9901c-7bfb-41b3-9ea1-ae36fe15dc10","description":""},{"name":"Project","item":[{"name":"api/v1/inventory_listing/project/{project}","id":"66355531-fb39-4b60-b75b-eccd4a2563a6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_listing/project/:project?catalog_item_ids&catalog_item_ids.*","description":"<p>The service returns all inventory held by a <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","inventory_listing","project",":project"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Optional), The catalog item ids field must be an array.</p>\n","type":"text/plain"},"key":"catalog_item_ids","value":null},{"description":{"content":"<p>(Optional), The catalog item ids.* field must be an integer.</p>\n","type":"text/plain"},"key":"catalog_item_ids.*","value":null}],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"66355531-fb39-4b60-b75b-eccd4a2563a6"}],"id":"1266e72d-93cb-4681-bc52-032082b79408","_postman_id":"1266e72d-93cb-4681-bc52-032082b79408","description":""},{"name":"Project Location","item":[{"name":"api/v1/inventory_listing/project/{project}/locations","id":"84a5af96-77d1-404e-9cd6-8c9300967c1f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_listing/project/:project/locations?catalog_item_id","description":"<p>Returns all inventory holding <code>Locations''' with quantities within the context of a </code>Project```.</p>\n","urlObject":{"path":["api","v1","inventory_listing","project",":project","locations"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The catalog item id field is required., The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text/plain"},"key":"catalog_item_id","value":null}],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"84a5af96-77d1-404e-9cd6-8c9300967c1f"}],"id":"b27b4355-5aea-42c2-bd64-84f2c372f625","_postman_id":"b27b4355-5aea-42c2-bd64-84f2c372f625","description":""}],"id":"baba8596-c6ea-41e9-8ce9-b8f00361ebfd","_postman_id":"baba8596-c6ea-41e9-8ce9-b8f00361ebfd","description":""},{"name":"Inventory Transactions","item":[{"name":"Business Index","item":[{"name":"api/v1/inventory_transactions/for_business/{business}","id":"902472d7-fec7-4eb1-8813-038ddda95176","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transactions/for_business/:business?catalog_item_id","description":"<p>Returns the <code>InventoryTransactions</code> for a specified <code>Business</code>.</p>\n","urlObject":{"path":["api","v1","inventory_transactions","for_business",":business"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text/plain"},"key":"catalog_item_id","value":null}],"variable":[{"type":"any","key":"business"}]}},"response":[],"_postman_id":"902472d7-fec7-4eb1-8813-038ddda95176"}],"id":"62fb7630-0f95-4642-85ae-140f142ad448","_postman_id":"62fb7630-0f95-4642-85ae-140f142ad448","description":""},{"name":"Index","item":[{"name":"api/v1/inventory_transactions","id":"f480ebb0-bca5-4482-8206-26d0c8ea6997","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transactions","description":"<p>Returns a list of multiple <code>InventoryTransaction</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","inventory_transactions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f480ebb0-bca5-4482-8206-26d0c8ea6997"}],"id":"51bb16fd-5f09-4522-969e-eac55146f523","_postman_id":"51bb16fd-5f09-4522-969e-eac55146f523","description":""},{"name":"Location Index","item":[{"name":"api/v1/inventory_transactions/for_location/{location}","id":"35952950-4724-4c65-8a4b-819658d6d9e5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transactions/for_location/:location?catalog_item_id","description":"<p>Returns the <code>InventoryTransactions</code> for a specified <code>Location</code>.</p>\n","urlObject":{"path":["api","v1","inventory_transactions","for_location",":location"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text/plain"},"key":"catalog_item_id","value":null}],"variable":[{"type":"any","key":"location"}]}},"response":[],"_postman_id":"35952950-4724-4c65-8a4b-819658d6d9e5"}],"id":"c0863da4-7e8d-41fe-adb8-c1875ff5d836","_postman_id":"c0863da4-7e8d-41fe-adb8-c1875ff5d836","description":""},{"name":"Show","item":[{"name":"api/v1/inventory_transactions/{inventory_transaction}","id":"f3975b66-8b8d-441e-acde-d861fc4dc408","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transactions/:inventory_transaction","description":"<p>Display the specified <code>InventoryTransaction</code>.</p>\n","urlObject":{"path":["api","v1","inventory_transactions",":inventory_transaction"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transaction"}]}},"response":[],"_postman_id":"f3975b66-8b8d-441e-acde-d861fc4dc408"}],"id":"06533730-6649-4c26-afc3-18e32c4ee0cb","_postman_id":"06533730-6649-4c26-afc3-18e32c4ee0cb","description":""}],"id":"ae562a0a-f1d9-4f74-857f-90b906c5ea98","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> allocation_id</code>,<code> catalog_item_id</code>,<code> date_received</code>,<code> date_shipped</code>,<code> from_location_id</code>,<code> from_order_id</code>,<code> from_order_item_id</code>,<code> project_id</code>,<code> quantity</code>,<code> team_id</code>,<code> to_location_id</code>,<code> to_order_id</code>,<code> to_order_item_id</code>,<code> transaction_type</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>adjustment</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fromLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fromOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fromOrderItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toOrderItem</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>effective_date</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ae562a0a-f1d9-4f74-857f-90b906c5ea98"},{"name":"Inventory Transfer Items","item":[{"name":"Destroy","item":[{"name":"api/v1/inventory_transfer_items/{inventory_transfer_item}","id":"19a398f7-6bfc-4d59-9916-1ab940e21448","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transfer_items/:inventory_transfer_item","description":"<p>Remove the specified InventoryTransferItem from storage. DELETE /inventoryTransferItems/{id}.</p>\n","urlObject":{"path":["api","v1","inventory_transfer_items",":inventory_transfer_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transfer_item"}]}},"response":[],"_postman_id":"19a398f7-6bfc-4d59-9916-1ab940e21448"}],"id":"0f9f02cf-1abf-42e4-abf9-7b48d5ae1538","_postman_id":"0f9f02cf-1abf-42e4-abf9-7b48d5ae1538","description":""},{"name":"Index","item":[{"name":"api/v1/inventory_transfer_items","id":"d04dd433-2ce4-4e45-b921-5a1fea42aff3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transfer_items","description":"<p>Display a listing of the InventoryTransferItem. GET|HEAD /inventoryTransferItems.</p>\n","urlObject":{"path":["api","v1","inventory_transfer_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d04dd433-2ce4-4e45-b921-5a1fea42aff3"}],"id":"75298acd-ec29-46c8-abe4-7a097dbd24d6","_postman_id":"75298acd-ec29-46c8-abe4-7a097dbd24d6","description":""},{"name":"Show","item":[{"name":"api/v1/inventory_transfer_items/{inventory_transfer_item}","id":"61e15ef2-a87b-48d0-b6d7-8b0b8f1bf965","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transfer_items/:inventory_transfer_item","description":"<p>Display the specified InventoryTransferItem. GET|HEAD /inventoryTransferItems/{id}.</p>\n","urlObject":{"path":["api","v1","inventory_transfer_items",":inventory_transfer_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transfer_item"}]}},"response":[],"_postman_id":"61e15ef2-a87b-48d0-b6d7-8b0b8f1bf965"}],"id":"e15a6402-8b07-4b06-99a5-1f9348cdcc86","_postman_id":"e15a6402-8b07-4b06-99a5-1f9348cdcc86","description":""},{"name":"Store","item":[{"name":"api/v1/inventory_transfer_items","id":"39a819e4-0b2c-4652-b689-2d9acd9e8ad1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"inventory_transfer_id","value":null,"description":"<p>The inventory transfer id field is required., The inventory transfer id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>The location id field is required., The location id field must be an integer.</p>\n","type":"text"},{"key":"source_cost_code_id","value":null,"description":"<p>(Nullable), The source cost code id field must be an integer.</p>\n","type":"text"},{"key":"destination_cost_code_id","value":null,"description":"<p>(Nullable), The destination cost code id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Nullable), The order item id field must be an integer.</p>\n","type":"text"},{"key":"sales_order_item_id","value":null,"description":"<p>(Nullable), The sales order item id field must be an integer.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>The taxes id field is required., The taxes id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>The unit price field is required., The unit price field must be a number.</p>\n","type":"text"},{"key":"comments","value":null,"description":"<p>(Nullable), The comments field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inventory_transfer_items","description":"<p>Store a newly created InventoryTransferItem . POST /inventoryTransferItems.</p>\n","urlObject":{"path":["api","v1","inventory_transfer_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"39a819e4-0b2c-4652-b689-2d9acd9e8ad1"}],"id":"f495587c-8722-4a40-b26d-86c95d40a636","_postman_id":"f495587c-8722-4a40-b26d-86c95d40a636","description":""},{"name":"Update","item":[{"name":"api/v1/inventory_transfer_items/{inventory_transfer_item}","id":"958c1c7e-0569-4a3c-8e3c-7774ab594bcd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"inventory_transfer_id","value":null,"description":"<p>The inventory transfer id field is required., The inventory transfer id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>The location id field is required., The location id field must be an integer.</p>\n","type":"text"},{"key":"source_cost_code_id","value":null,"description":"<p>(Nullable), The source cost code id field must be an integer.</p>\n","type":"text"},{"key":"destination_cost_code_id","value":null,"description":"<p>(Nullable), The destination cost code id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Nullable), The order item id field must be an integer.</p>\n","type":"text"},{"key":"sales_order_item_id","value":null,"description":"<p>(Nullable), The sales order item id field must be an integer.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>The taxes id field is required., The taxes id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>The unit price field is required., The unit price field must be a number.</p>\n","type":"text"},{"key":"comments","value":null,"description":"<p>(Nullable), The comments field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inventory_transfer_items/:inventory_transfer_item","description":"<p>Update the specified InventoryTransferItem . PUT/PATCH /inventoryTransferItems/{id}.</p>\n","urlObject":{"path":["api","v1","inventory_transfer_items",":inventory_transfer_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transfer_item"}]}},"response":[],"_postman_id":"958c1c7e-0569-4a3c-8e3c-7774ab594bcd"},{"name":"api/v1/inventory_transfer_items/{inventory_transfer_item}","id":"f9398f3b-5c31-4392-b86f-3cf431f08299","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"inventory_transfer_id","value":null,"description":"<p>The inventory transfer id field is required., The inventory transfer id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"location_id","value":null,"description":"<p>The location id field is required., The location id field must be an integer.</p>\n","type":"text"},{"key":"source_cost_code_id","value":null,"description":"<p>(Nullable), The source cost code id field must be an integer.</p>\n","type":"text"},{"key":"destination_cost_code_id","value":null,"description":"<p>(Nullable), The destination cost code id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Nullable), The order item id field must be an integer.</p>\n","type":"text"},{"key":"sales_order_item_id","value":null,"description":"<p>(Nullable), The sales order item id field must be an integer.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>The taxes id field is required., The taxes id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>The unit price field is required., The unit price field must be a number.</p>\n","type":"text"},{"key":"comments","value":null,"description":"<p>(Nullable), The comments field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inventory_transfer_items/:inventory_transfer_item","description":"<p>Update the specified InventoryTransferItem . PUT/PATCH /inventoryTransferItems/{id}.</p>\n","urlObject":{"path":["api","v1","inventory_transfer_items",":inventory_transfer_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transfer_item"}]}},"response":[],"_postman_id":"f9398f3b-5c31-4392-b86f-3cf431f08299"}],"id":"1a475a30-3226-4e7c-9505-599dbbabff56","_postman_id":"1a475a30-3226-4e7c-9505-599dbbabff56","description":""}],"id":"f84f900d-3b56-4b7d-89d1-c7f67edac837","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> catalog_item_id</code>,<code> comments</code>,<code> destination_cost_code_id</code>,<code> inventory_transfer_id</code>,<code> location_id</code>,<code> order_item_id</code>,<code> quantity</code>,<code> sales_order_item_id</code>,<code> source_cost_code_id</code>,<code> team_id</code>,<code> unit_price</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>destinationCostCode</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransfer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>location</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>salesOrderItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>sourceCostCode</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f84f900d-3b56-4b7d-89d1-c7f67edac837"},{"name":"Inventory Transfers","item":[{"name":"Destroy","item":[{"name":"api/v1/inventory_transfers/{inventory_transfer}","id":"270c8ce9-2f1f-4939-960b-8fba818b8a74","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transfers/:inventory_transfer","description":"<p>Remove the specified <code>InventoryTransfer</code> from storage. DELETE /inventoryTransfers/{id}.</p>\n","urlObject":{"path":["api","v1","inventory_transfers",":inventory_transfer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transfer"}]}},"response":[],"_postman_id":"270c8ce9-2f1f-4939-960b-8fba818b8a74"}],"id":"4d2098e9-f641-4704-a989-b516f1b0f64d","_postman_id":"4d2098e9-f641-4704-a989-b516f1b0f64d","description":""},{"name":"Index","item":[{"name":"api/v1/inventory_transfers","id":"b431d401-82c6-404f-a5d0-b08e8f3c5c89","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transfers","description":"<p>Returns a list of multiple <code>InventoryTransfer</code> objects based on optional criteri GET|HEAD /inventory_transfers.</p>\n","urlObject":{"path":["api","v1","inventory_transfers"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b431d401-82c6-404f-a5d0-b08e8f3c5c89"}],"id":"f64dbd8c-1563-4676-9744-85c977cfd468","_postman_id":"f64dbd8c-1563-4676-9744-85c977cfd468","description":""},{"name":"Show","item":[{"name":"api/v1/inventory_transfers/{inventory_transfer}","id":"3bdbef86-fd14-444b-8878-08739272cf90","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_transfers/:inventory_transfer","description":"<p>Display the specified <code>InventoryTransfer</code>. GET|HEAD /inventory_transfers/{id}.</p>\n","urlObject":{"path":["api","v1","inventory_transfers",":inventory_transfer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transfer"}]}},"response":[],"_postman_id":"3bdbef86-fd14-444b-8878-08739272cf90"}],"id":"4da80bb3-d993-4540-bc64-5c8d6b478153","_postman_id":"4da80bb3-d993-4540-bc64-5c8d6b478153","description":""},{"name":"Store","item":[{"name":"api/v1/inventory_transfers","id":"fdbcdfaf-4ef9-48d2-bc21-a2dd7b914e62","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_project_id","value":null,"description":"<p>The source project id field is required., The source project id field must be an integer.</p>\n","type":"text"},{"key":"destination_project_id","value":null,"description":"<p>The destination project id field is required., The destination project id field must be an integer.</p>\n","type":"text"},{"key":"sales_order_id","value":null,"description":"<p>(Nullable), The sales order id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 2000 characters.</p>\n","type":"text"},{"key":"source_currency_code","value":null,"description":"<p>The source currency code field is required., The source currency code field must be a string., The source currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"destination_currency_code","value":null,"description":"<p>The destination currency code field is required., The destination currency code field must be a string., The destination currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Nullable), The exchange rate field must be a number.</p>\n","type":"text"},{"key":"effective_date","value":null,"description":"<p>The effective date field is required., The effective date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inventory_transfers","description":"<p>Create a new <code>InventoryTransfer</code> object. POST /inventory_transfers.</p>\n","urlObject":{"path":["api","v1","inventory_transfers"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"fdbcdfaf-4ef9-48d2-bc21-a2dd7b914e62"}],"id":"39ac1f61-e552-48df-a3ae-633d574a7248","_postman_id":"39ac1f61-e552-48df-a3ae-633d574a7248","description":""},{"name":"Update","item":[{"name":"api/v1/inventory_transfers/{inventory_transfer}","id":"31d3bca6-d7b3-46c5-803f-87be6e751dbb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_project_id","value":null,"description":"<p>The source project id field is required., The source project id field must be an integer.</p>\n","type":"text"},{"key":"destination_project_id","value":null,"description":"<p>The destination project id field is required., The destination project id field must be an integer.</p>\n","type":"text"},{"key":"sales_order_id","value":null,"description":"<p>(Nullable), The sales order id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 2000 characters.</p>\n","type":"text"},{"key":"source_currency_code","value":null,"description":"<p>The source currency code field is required., The source currency code field must be a string., The source currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"destination_currency_code","value":null,"description":"<p>The destination currency code field is required., The destination currency code field must be a string., The destination currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Nullable), The exchange rate field must be a number.</p>\n","type":"text"},{"key":"effective_date","value":null,"description":"<p>The effective date field is required., The effective date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inventory_transfers/:inventory_transfer","description":"<p>Update the specified <code>InventoryTransfer</code> . PUT/PATCH /inventory_transfers/{id}.</p>\n","urlObject":{"path":["api","v1","inventory_transfers",":inventory_transfer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transfer"}]}},"response":[],"_postman_id":"31d3bca6-d7b3-46c5-803f-87be6e751dbb"},{"name":"api/v1/inventory_transfers/{inventory_transfer}","id":"ad248bf8-94cd-461f-ae2a-9d47ca374efd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_project_id","value":null,"description":"<p>The source project id field is required., The source project id field must be an integer.</p>\n","type":"text"},{"key":"destination_project_id","value":null,"description":"<p>The destination project id field is required., The destination project id field must be an integer.</p>\n","type":"text"},{"key":"sales_order_id","value":null,"description":"<p>(Nullable), The sales order id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 2000 characters.</p>\n","type":"text"},{"key":"source_currency_code","value":null,"description":"<p>The source currency code field is required., The source currency code field must be a string., The source currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"destination_currency_code","value":null,"description":"<p>The destination currency code field is required., The destination currency code field must be a string., The destination currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Nullable), The exchange rate field must be a number.</p>\n","type":"text"},{"key":"effective_date","value":null,"description":"<p>The effective date field is required., The effective date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/inventory_transfers/:inventory_transfer","description":"<p>Update the specified <code>InventoryTransfer</code> . PUT/PATCH /inventory_transfers/{id}.</p>\n","urlObject":{"path":["api","v1","inventory_transfers",":inventory_transfer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"inventory_transfer"}]}},"response":[],"_postman_id":"ad248bf8-94cd-461f-ae2a-9d47ca374efd"}],"id":"c9f722ff-3580-4c7a-b2bd-c8fdc63f16ca","_postman_id":"c9f722ff-3580-4c7a-b2bd-c8fdc63f16ca","description":""}],"id":"b36c9c3e-2b88-4fdb-8812-0c9095d549a4","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> description</code>,<code> destination_currency_code</code>,<code> destination_project_id</code>,<code> exchange_rate</code>,<code> identifier</code>,<code> name</code>,<code> order_id</code>,<code> sales_order_id</code>,<code> source_currency_code</code>,<code> source_project_id</code>,<code> status</code>,<code> team_id</code>,<code> validation_graph_uuid</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>destinationProject</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransferItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>salesOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>sourceProject</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b36c9c3e-2b88-4fdb-8812-0c9095d549a4"},{"name":"Inventory Valuation","item":[{"name":"Project","item":[{"name":"price-data","item":[{"name":"api/v1/inventory_price_data/project/{project}","id":"8a3f2257-1fc4-4000-addf-1e9866a2f9c2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_price_data/project/:project?catalog_item_ids&catalog_item_ids.*&date","description":"<p>Service returns the price data for inventory held by a specified <code>Project</code>. Accepts and optional array of <code>CatalogItems</code> to refine the data package.</p>\n","urlObject":{"path":["api","v1","inventory_price_data","project",":project"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Optional), The catalog item ids field must be an array.</p>\n","type":"text/plain"},"key":"catalog_item_ids","value":null},{"description":{"content":"<p>(Optional), The catalog item ids.* field must be an integer., The catalog item ids.* field must be at least 0 characters., The catalog item ids.* field must not be greater than 4294967295 characters.</p>\n","type":"text/plain"},"key":"catalog_item_ids.*","value":null},{"description":{"content":"<p>(Optional), The date field must be a valid date.</p>\n","type":"text/plain"},"key":"date","value":null}],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"8a3f2257-1fc4-4000-addf-1e9866a2f9c2"}],"id":"5d8bde6b-8952-4d04-8ae8-b9e3f5d8b12b","_postman_id":"5d8bde6b-8952-4d04-8ae8-b9e3f5d8b12b","description":""},{"name":"api/v1/inventory_valuation/project/{project}","id":"d15d9a47-92d0-4a43-a40c-21c626ff7421","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/inventory_valuation/project/:project?catalog_item_ids&catalog_item_ids.*&date","description":"<p>Service returns the valuation of all inventory held by a <code>Project</code>. Accepts and optional array of <code>CatalogItems</code> to refine the data package.</p>\n","urlObject":{"path":["api","v1","inventory_valuation","project",":project"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Optional), The catalog item ids field must be an array.</p>\n","type":"text/plain"},"key":"catalog_item_ids","value":null},{"description":{"content":"<p>(Optional), The catalog item ids.* field must be an integer., The catalog item ids.* field must be at least 0 characters., The catalog item ids.* field must not be greater than 4294967295 characters.</p>\n","type":"text/plain"},"key":"catalog_item_ids.*","value":null},{"description":{"content":"<p>(Optional), The date field must be a valid date.</p>\n","type":"text/plain"},"key":"date","value":null}],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"d15d9a47-92d0-4a43-a40c-21c626ff7421"}],"id":"58cf6e16-4bff-48a1-b5ba-47af11e68548","_postman_id":"58cf6e16-4bff-48a1-b5ba-47af11e68548","description":""}],"id":"45c40718-8e6f-4e8c-ae4e-b26ced8f3c8c","_postman_id":"45c40718-8e6f-4e8c-ae4e-b26ced8f3c8c","description":""},{"name":"Journey Management","item":[{"name":"Exit","item":[{"name":"api/v1/journey_management/exit/{allocationId}","id":"37c0b135-4eca-431d-aac7-3e77da2cb4a5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/journey_management/exit/:allocationId","urlObject":{"path":["api","v1","journey_management","exit",":allocationId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"allocationId"}]}},"response":[],"_postman_id":"37c0b135-4eca-431d-aac7-3e77da2cb4a5"}],"id":"80bd47c3-a90d-44bd-9e6e-5fd27872459b","_postman_id":"80bd47c3-a90d-44bd-9e6e-5fd27872459b","description":""}],"id":"cc68e4e0-a580-49a8-a7ff-5609dbaf8000","_postman_id":"cc68e4e0-a580-49a8-a7ff-5609dbaf8000","description":""},{"name":"Location Types","item":[{"name":"Index","item":[{"name":"api/v1/location_types","id":"ecc7677a-7648-43cc-a765-be1ee1d2d222","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/location_types","description":"<p>Returns a list of multiple <code>LocationType</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","location_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ecc7677a-7648-43cc-a765-be1ee1d2d222"}],"id":"4c289201-4ee8-40f1-97c1-8540933a251c","_postman_id":"4c289201-4ee8-40f1-97c1-8540933a251c","description":""},{"name":"Show","item":[{"name":"api/v1/location_types/{location_type}","id":"fe8deecf-e8d8-491c-8104-27e1cac31e1e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/location_types/:location_type","description":"<p>Display the specified <code>LocationType</code>.</p>\n","urlObject":{"path":["api","v1","location_types",":location_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"location_type"}]}},"response":[],"_postman_id":"fe8deecf-e8d8-491c-8104-27e1cac31e1e"}],"id":"1f039917-6234-4d09-b173-14fdea4583b4","_postman_id":"1f039917-6234-4d09-b173-14fdea4583b4","description":""}],"id":"f9eebea2-09c0-4101-bec1-a230f7f299d9","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> location_type</code>,<code> project_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orderableLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f9eebea2-09c0-4101-bec1-a230f7f299d9"},{"name":"Locations","item":[{"name":"Destroy","item":[{"name":"api/v1/locations/{location}","id":"6d2a997a-3a84-4eaf-b451-0a4929542d6d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/locations/:location","description":"<p>Remove the specified <code>Location</code> from storage.</p>\n","urlObject":{"path":["api","v1","locations",":location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"location"}]}},"response":[],"_postman_id":"6d2a997a-3a84-4eaf-b451-0a4929542d6d"}],"id":"fd008f02-6dcf-43c1-9195-0586b63e3fe4","_postman_id":"fd008f02-6dcf-43c1-9195-0586b63e3fe4","description":""},{"name":"Index","item":[{"name":"api/v1/locations","id":"4fa5f1ec-5bfe-40fa-b391-f1944e6593f8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/locations","description":"<p>Returns a list of multiple <code>Location</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","locations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4fa5f1ec-5bfe-40fa-b391-f1944e6593f8"}],"id":"9cc79392-3b0c-4b85-979a-5fca4fe53d97","_postman_id":"9cc79392-3b0c-4b85-979a-5fca4fe53d97","description":""},{"name":"Show","item":[{"name":"api/v1/locations/{location}","id":"59c47677-6c2e-465b-a642-a5a18aa9fd12","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/locations/:location","description":"<p>Display the specified <code>Location</code>.</p>\n","urlObject":{"path":["api","v1","locations",":location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"location"}]}},"response":[],"_postman_id":"59c47677-6c2e-465b-a642-a5a18aa9fd12"}],"id":"b93c6a8d-3ea7-4fe8-b398-bddff5cc77da","_postman_id":"b93c6a8d-3ea7-4fe8-b398-bddff5cc77da","description":""},{"name":"Store","item":[{"name":"api/v1/locations","id":"26705b09-12fa-4833-b686-aaf2f2ef6322","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"city","value":null,"description":"<p>The city field is required., The city field must be a string., The city field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"country","value":null,"description":"<p>The country field is required., The country field must be a string., The country field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"is_bill_to","value":null,"description":"<p>(Nullable), The is bill to field must be true or false.</p>\n","type":"text"},{"key":"is_fab_at","value":null,"description":"<p>(Nullable), The is fab at field must be true or false.</p>\n","type":"text"},{"key":"is_other","value":null,"description":"<p>(Nullable), The is other field must be an array.</p>\n","type":"text"},{"key":"is_mail_to","value":null,"description":"<p>(Nullable), The is mail to field must be true or false.</p>\n","type":"text"},{"key":"is_ship_to","value":null,"description":"<p>(Nullable), The is ship to field must be true or false.</p>\n","type":"text"},{"key":"is_store_at","value":null,"description":"<p>(Nullable), The is store at field must be true or false.</p>\n","type":"text"},{"key":"land_survey_description","value":null,"description":"<p>(Nullable), The land survey description field must be a string., The land survey description field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"latitude","value":null,"description":"<p>(Nullable), The latitude field must be a number., The latitude field must be at least -180.0000000., The latitude field must not be greater than 180.0000000.</p>\n","type":"text"},{"key":"location_name","value":null,"description":"<p>The location name field is required., The location name field must be a string., The location name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"longitude","value":null,"description":"<p>(Nullable), The longitude field must be a number., The longitude field must be at least -180.0000000., The longitude field must not be greater than 180.0000000.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"postal","value":null,"description":"<p>The postal field is required., The postal field must be a string., The postal field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"state","value":null,"description":"<p>The state field is required., The state field must be a string., The state field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"street_address","value":null,"description":"<p>The street address field is required., The street address field must be a string., The street address field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"street_address2","value":null,"description":"<p>(Nullable), The street address2 field must be a string., The street address2 field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Nullable), The telephone field must be a string., The telephone field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"telephone2","value":null,"description":"<p>(Nullable), The telephone2 field must be a string., The telephone2 field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/locations","description":"<p>Create a new <code>Location</code> object.</p>\n","urlObject":{"path":["api","v1","locations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"26705b09-12fa-4833-b686-aaf2f2ef6322"}],"id":"4f0718ce-01ef-45d3-a653-fe6afa3f2412","_postman_id":"4f0718ce-01ef-45d3-a653-fe6afa3f2412","description":""},{"name":"Update","item":[{"name":"api/v1/locations/{location}","id":"b9f17833-3a68-4c5d-bfc7-9276ee6b40dc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"city","value":null,"description":"<p>(Optional), The city field must be a string., The city field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"country","value":null,"description":"<p>(Optional), The country field must be a string., The country field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_bill_to","value":null,"description":"<p>(Optional), The is bill to field must be true or false.</p>\n","type":"text"},{"key":"is_fab_at","value":null,"description":"<p>(Optional), The is fab at field must be true or false.</p>\n","type":"text"},{"key":"is_other","value":null,"description":"<p>(Optional), (Nullable), The is other field must be an array.</p>\n","type":"text"},{"key":"is_mail_to","value":null,"description":"<p>(Optional), The is mail to field must be true or false.</p>\n","type":"text"},{"key":"is_ship_to","value":null,"description":"<p>(Optional), The is ship to field must be true or false.</p>\n","type":"text"},{"key":"is_store_at","value":null,"description":"<p>(Optional), The is store at field must be true or false.</p>\n","type":"text"},{"key":"land_survey_description","value":null,"description":"<p>(Nullable), The land survey description field must be a string., The land survey description field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"latitude","value":null,"description":"<p>(Nullable), The latitude field must be a number., The latitude field must be at least -180.0000000., The latitude field must not be greater than 180.0000000.</p>\n","type":"text"},{"key":"location_name","value":null,"description":"<p>(Optional), The location name field must be a string., The location name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"longitude","value":null,"description":"<p>(Nullable), The longitude field must be a number., The longitude field must be at least -180.0000000., The longitude field must not be greater than 180.0000000.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"postal","value":null,"description":"<p>(Optional), The postal field must be a string., The postal field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"state","value":null,"description":"<p>(Optional), The state field must be a string., The state field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"street_address","value":null,"description":"<p>(Optional), The street address field must be a string., The street address field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"street_address2","value":null,"description":"<p>(Nullable), The street address2 field must be a string., The street address2 field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Nullable), The telephone field must be a string., The telephone field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"telephone2","value":null,"description":"<p>(Nullable), The telephone2 field must be a string., The telephone2 field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/locations/:location","description":"<p>Update the specified <code>Location</code> .</p>\n","urlObject":{"path":["api","v1","locations",":location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"location"}]}},"response":[],"_postman_id":"b9f17833-3a68-4c5d-bfc7-9276ee6b40dc"},{"name":"api/v1/locations/{location}","id":"9ccd5a9e-b0fa-47b3-8999-597049f7e8cc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"city","value":null,"description":"<p>(Optional), The city field must be a string., The city field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"country","value":null,"description":"<p>(Optional), The country field must be a string., The country field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_bill_to","value":null,"description":"<p>(Optional), The is bill to field must be true or false.</p>\n","type":"text"},{"key":"is_fab_at","value":null,"description":"<p>(Optional), The is fab at field must be true or false.</p>\n","type":"text"},{"key":"is_other","value":null,"description":"<p>(Optional), (Nullable), The is other field must be an array.</p>\n","type":"text"},{"key":"is_mail_to","value":null,"description":"<p>(Optional), The is mail to field must be true or false.</p>\n","type":"text"},{"key":"is_ship_to","value":null,"description":"<p>(Optional), The is ship to field must be true or false.</p>\n","type":"text"},{"key":"is_store_at","value":null,"description":"<p>(Optional), The is store at field must be true or false.</p>\n","type":"text"},{"key":"land_survey_description","value":null,"description":"<p>(Nullable), The land survey description field must be a string., The land survey description field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"latitude","value":null,"description":"<p>(Nullable), The latitude field must be a number., The latitude field must be at least -180.0000000., The latitude field must not be greater than 180.0000000.</p>\n","type":"text"},{"key":"location_name","value":null,"description":"<p>(Optional), The location name field must be a string., The location name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"longitude","value":null,"description":"<p>(Nullable), The longitude field must be a number., The longitude field must be at least -180.0000000., The longitude field must not be greater than 180.0000000.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"postal","value":null,"description":"<p>(Optional), The postal field must be a string., The postal field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"state","value":null,"description":"<p>(Optional), The state field must be a string., The state field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"street_address","value":null,"description":"<p>(Optional), The street address field must be a string., The street address field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"street_address2","value":null,"description":"<p>(Nullable), The street address2 field must be a string., The street address2 field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Nullable), The telephone field must be a string., The telephone field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"telephone2","value":null,"description":"<p>(Nullable), The telephone2 field must be a string., The telephone2 field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/locations/:location","description":"<p>Update the specified <code>Location</code> .</p>\n","urlObject":{"path":["api","v1","locations",":location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"location"}]}},"response":[],"_postman_id":"9ccd5a9e-b0fa-47b3-8999-597049f7e8cc"}],"id":"21f0728a-c73e-46b3-9bb9-85db3668a0db","_postman_id":"21f0728a-c73e-46b3-9bb9-85db3668a0db","description":""}],"id":"7bc4761e-809b-4de7-8305-7472261a2973","description":"<p>'Locations' represent a physical location, and can be used flexibly (e.g. a mailing address, or a specific row in a warehouse)</p>\n<p><code>Locations</code> belong to a specific <code>Business</code></p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_id</code>,<code> country</code>,<code> is_active</code>,<code> is_bill_to</code>,<code> is_fab_at</code>,<code> is_mail_to</code>,<code> is_other</code>,<code> is_ship_to</code>,<code> is_store_at</code>,<code> land_survey_description</code>,<code> latitude</code>,<code> location_name</code>,<code> longitude</code>,<code> metadata</code>,<code> postal</code>,<code> state</code>,<code> street_address</code>,<code> street_address2</code>,<code> team_id</code>,<code> telephone</code>,<code> telephone2</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransactions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransactionsFrom</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransactionsTo</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderableLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrdersFrom</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrdersTo</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>usage_count</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7bc4761e-809b-4de7-8305-7472261a2973"},{"name":"Ncrs","item":[{"name":"Destroy","item":[{"name":"api/v1/ncrs/{ncr}","id":"e98a9d39-fa61-4613-9c4d-edcad810ded4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ncrs/:ncr","description":"<p>Remove the specified <code>Ncr</code>. DELETE /ncrs/{id}.</p>\n","urlObject":{"path":["api","v1","ncrs",":ncr"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ncr"}]}},"response":[],"_postman_id":"e98a9d39-fa61-4613-9c4d-edcad810ded4"}],"id":"ae5d4ca4-3cc5-484e-b8b5-e61b2efa06ad","_postman_id":"ae5d4ca4-3cc5-484e-b8b5-e61b2efa06ad","description":""},{"name":"Index","item":[{"name":"api/v1/ncrs","id":"ab17c862-ac01-421b-8520-e80b6c05be7f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ncrs","description":"<p>Returns a list of multiple <code>Ncrs</code> objects based on optional criteria. GET|HEAD /ncrs.</p>\n","urlObject":{"path":["api","v1","ncrs"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab17c862-ac01-421b-8520-e80b6c05be7f"}],"id":"994c4e0e-9ef5-4cb0-b216-ca86299fc388","_postman_id":"994c4e0e-9ef5-4cb0-b216-ca86299fc388","description":""},{"name":"Show","item":[{"name":"api/v1/ncrs/{ncr}","id":"95c7e6c9-9d21-45c1-ab6c-819a28c220bf","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ncrs/:ncr","description":"<p>Display the specified ```Ncr``. GET|HEAD /ncrs/{id}.</p>\n","urlObject":{"path":["api","v1","ncrs",":ncr"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ncr"}]}},"response":[],"_postman_id":"95c7e6c9-9d21-45c1-ab6c-819a28c220bf"}],"id":"2b0a7533-5800-4bd2-bfca-586129911354","_postman_id":"2b0a7533-5800-4bd2-bfca-586129911354","description":""},{"name":"Store","item":[{"name":"api/v1/ncrs","id":"cce7480f-3058-4650-a6be-dd358c9642bd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>The title field is required., The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 5000 characters.</p>\n","type":"text"},{"key":"impact","value":null,"description":"<p>(Nullable), The impact field must be an array.</p>\n","type":"text"},{"key":"nature","value":null,"description":"<p>(Nullable), The nature field must be a string., The nature field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"disposition","value":null,"description":"<p>(Nullable), The disposition field must be an array.</p>\n","type":"text"},{"key":"disposition.*","value":null,"description":"<p>(Optional), The disposition.* field must be a string., The disposition.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_preventative","value":null,"description":"<p>The is preventative field is required., The is preventative field must be true or false.</p>\n","type":"text"},{"key":"originating_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"secondary_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"originating_inspection_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"planned_inspection_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"raised_date","value":null,"description":"<p>The raised date field is required., The raised date field must be a valid date.</p>\n","type":"text"},{"key":"proposed_resolution_date","value":null,"description":"<p>(Optional), (Nullable), The proposed resolution date field must be a valid date.</p>\n","type":"text"},{"key":"response_date","value":null,"description":"<p>(Optional), (Nullable), The response date field must be a valid date.</p>\n","type":"text"},{"key":"resolution_date","value":null,"description":"<p>(Optional), (Nullable), The resolution date field must be a valid date.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"root_cause","value":null,"description":"<p>(Nullable), The root cause field must be a string., The root cause field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"future_mitigation_plans","value":null,"description":"<p>(Nullable), The future mitigation plans field must be a string., The future mitigation plans field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"proposed_solution","value":null,"description":"<p>(Nullable), The proposed solution field must be a string., The proposed solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"alternative_solution","value":null,"description":"<p>(Nullable), The alternative solution field must be a string., The alternative solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"clarifications_to_solution","value":null,"description":"<p>(Nullable), The clarifications to solution field must be a string., The clarifications to solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"verification_plan","value":null,"description":"<p>(Nullable), The verification plan field must be a string., The verification plan field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ncrs","description":"<p>Store a new Ncr object. POST /ncrs.</p>\n","urlObject":{"path":["api","v1","ncrs"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"cce7480f-3058-4650-a6be-dd358c9642bd"}],"id":"39aff318-345a-47de-9bd5-f412009241d1","_postman_id":"39aff318-345a-47de-9bd5-f412009241d1","description":""},{"name":"Update","item":[{"name":"api/v1/ncrs/{ncr}","id":"e6669b07-35ec-476f-bf87-a2f2113254d2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>The title field is required., The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 5000 characters.</p>\n","type":"text"},{"key":"impact","value":null,"description":"<p>(Nullable), The impact field must be an array.</p>\n","type":"text"},{"key":"nature","value":null,"description":"<p>(Nullable), The nature field must be a string., The nature field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"disposition","value":null,"description":"<p>(Nullable), The disposition field must be an array.</p>\n","type":"text"},{"key":"disposition.*","value":null,"description":"<p>(Optional), The disposition.* field must be a string., The disposition.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_preventative","value":null,"description":"<p>The is preventative field is required., The is preventative field must be true or false.</p>\n","type":"text"},{"key":"originating_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"secondary_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"originating_inspection_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"planned_inspection_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"raised_date","value":null,"description":"<p>The raised date field is required., The raised date field must be a valid date.</p>\n","type":"text"},{"key":"proposed_resolution_date","value":null,"description":"<p>(Optional), (Nullable), The proposed resolution date field must be a valid date.</p>\n","type":"text"},{"key":"response_date","value":null,"description":"<p>(Optional), (Nullable), The response date field must be a valid date.</p>\n","type":"text"},{"key":"resolution_date","value":null,"description":"<p>(Optional), (Nullable), The resolution date field must be a valid date.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"root_cause","value":null,"description":"<p>(Nullable), The root cause field must be a string., The root cause field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"future_mitigation_plans","value":null,"description":"<p>(Nullable), The future mitigation plans field must be a string., The future mitigation plans field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"proposed_solution","value":null,"description":"<p>(Nullable), The proposed solution field must be a string., The proposed solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"alternative_solution","value":null,"description":"<p>(Nullable), The alternative solution field must be a string., The alternative solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"clarifications_to_solution","value":null,"description":"<p>(Nullable), The clarifications to solution field must be a string., The clarifications to solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"verification_plan","value":null,"description":"<p>(Nullable), The verification plan field must be a string., The verification plan field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ncrs/:ncr","description":"<p>Update the specified <code>Ncr</code>. PUT/PATCH /ncrs/{id}.</p>\n","urlObject":{"path":["api","v1","ncrs",":ncr"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ncr"}]}},"response":[],"_postman_id":"e6669b07-35ec-476f-bf87-a2f2113254d2"},{"name":"api/v1/ncrs/{ncr}","id":"9505d9e0-be1c-4d65-b49a-5ebc3b9b0772","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>The title field is required., The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 5000 characters.</p>\n","type":"text"},{"key":"impact","value":null,"description":"<p>(Nullable), The impact field must be an array.</p>\n","type":"text"},{"key":"nature","value":null,"description":"<p>(Nullable), The nature field must be a string., The nature field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"disposition","value":null,"description":"<p>(Nullable), The disposition field must be an array.</p>\n","type":"text"},{"key":"disposition.*","value":null,"description":"<p>(Optional), The disposition.* field must be a string., The disposition.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_preventative","value":null,"description":"<p>The is preventative field is required., The is preventative field must be true or false.</p>\n","type":"text"},{"key":"originating_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"secondary_business_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"originating_inspection_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"planned_inspection_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"raised_date","value":null,"description":"<p>The raised date field is required., The raised date field must be a valid date.</p>\n","type":"text"},{"key":"proposed_resolution_date","value":null,"description":"<p>(Optional), (Nullable), The proposed resolution date field must be a valid date.</p>\n","type":"text"},{"key":"response_date","value":null,"description":"<p>(Optional), (Nullable), The response date field must be a valid date.</p>\n","type":"text"},{"key":"resolution_date","value":null,"description":"<p>(Optional), (Nullable), The resolution date field must be a valid date.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>The status field is required., The status field must be a string., The status field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"root_cause","value":null,"description":"<p>(Nullable), The root cause field must be a string., The root cause field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"future_mitigation_plans","value":null,"description":"<p>(Nullable), The future mitigation plans field must be a string., The future mitigation plans field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"proposed_solution","value":null,"description":"<p>(Nullable), The proposed solution field must be a string., The proposed solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"alternative_solution","value":null,"description":"<p>(Nullable), The alternative solution field must be a string., The alternative solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"clarifications_to_solution","value":null,"description":"<p>(Nullable), The clarifications to solution field must be a string., The clarifications to solution field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"verification_plan","value":null,"description":"<p>(Nullable), The verification plan field must be a string., The verification plan field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ncrs/:ncr","description":"<p>Update the specified <code>Ncr</code>. PUT/PATCH /ncrs/{id}.</p>\n","urlObject":{"path":["api","v1","ncrs",":ncr"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ncr"}]}},"response":[],"_postman_id":"9505d9e0-be1c-4d65-b49a-5ebc3b9b0772"}],"id":"8ba1a05b-bba3-4b39-bade-e59d6ccf105f","_postman_id":"8ba1a05b-bba3-4b39-bade-e59d6ccf105f","description":""}],"id":"52639b7e-f867-49f2-b309-40d4271f8117","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> alternative_solution</code>,<code> business_id</code>,<code> clarifications_to_solution</code>,<code> description</code>,<code> future_mitigation_plans</code>,<code> identifier</code>,<code> impact</code>,<code> is_preventative</code>,<code> metadata</code>,<code> nature</code>,<code> order_id</code>,<code> originating_business_id</code>,<code> originating_inspection_id</code>,<code> planned_inspection_id</code>,<code> project_id</code>,<code> proposed_resolution_date</code>,<code> proposed_solution</code>,<code> raised_date</code>,<code> resolution_date</code>,<code> response_date</code>,<code> root_cause</code>,<code> secondary_business_id</code>,<code> status</code>,<code> team_id</code>,<code> title</code>,<code> validation_graph_uuid</code>,<code> verification_plan</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>originatingBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>secondaryBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"52639b7e-f867-49f2-b309-40d4271f8117"},{"name":"Notifiables","item":[{"name":"Destroy","item":[{"name":"api/v1/notifiables/{notifiable}","id":"15a97f2d-7e58-4157-896a-ae0dd44b8ae8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/notifiables/:notifiable","description":"<p>Remove the specified <code>Notifiable</code> from storage.</p>\n","urlObject":{"path":["api","v1","notifiables",":notifiable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"notifiable"}]}},"response":[],"_postman_id":"15a97f2d-7e58-4157-896a-ae0dd44b8ae8"}],"id":"adeb7f17-6f7b-4187-b2ab-0959542ecb80","_postman_id":"adeb7f17-6f7b-4187-b2ab-0959542ecb80","description":""},{"name":"Index","item":[{"name":"api/v1/notifiables","id":"0872a0d7-ec0d-44ce-9c33-a59c7b36d17e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/notifiables","description":"<p>Returns a list of multiple <code>Notifiable</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","notifiables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0872a0d7-ec0d-44ce-9c33-a59c7b36d17e"}],"id":"af4fed6a-0192-4eca-ab50-d6062671bbe0","_postman_id":"af4fed6a-0192-4eca-ab50-d6062671bbe0","description":""},{"name":"Show","item":[{"name":"api/v1/notifiables/{notifiable}","id":"5aa26555-55f2-4cfb-bc4c-4a6b06055a69","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/notifiables/:notifiable","description":"<p>Display the specified <code>Notifiable</code>.</p>\n","urlObject":{"path":["api","v1","notifiables",":notifiable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"notifiable"}]}},"response":[],"_postman_id":"5aa26555-55f2-4cfb-bc4c-4a6b06055a69"}],"id":"a9130618-bca8-487b-8b48-bc772e9efc67","_postman_id":"a9130618-bca8-487b-8b48-bc772e9efc67","description":""},{"name":"Store","item":[{"name":"api/v1/notifiables","id":"1aed08ca-4c23-4aa6-b17c-b5d63c9b5285","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"notifiable_id","value":null,"description":"<p>The notifiable id field is required., The notifiable id field must be an integer.</p>\n","type":"text"},{"key":"notifiable_type","value":null,"description":"<p>The notifiable type field is required., The notifiable type field must be a string., The notifiable type field must not be greater than 45 characters., The selected notifiable type is invalid, it must exist in Asset, Bid, InventoryAdjustment, Offer, Order, Requisition, SalesOrder, Task, Ncr.</p>\n","type":"text"},{"key":"receives_browser","value":null,"description":"<p>(Nullable), The receives browser field must be true or false.</p>\n","type":"text"},{"key":"receives_email","value":null,"description":"<p>(Nullable), The receives email field must be true or false.</p>\n","type":"text"},{"key":"receives_teams","value":null,"description":"<p>(Nullable), The receives teams field must be true or false.</p>\n","type":"text"},{"key":"last_notification","value":null,"description":"<p>(Nullable)</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/notifiables","description":"<p>Create a new <code>Notifiable</code> object.</p>\n","urlObject":{"path":["api","v1","notifiables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1aed08ca-4c23-4aa6-b17c-b5d63c9b5285"}],"id":"92fb873b-6df1-447d-9697-e64cfa237a4d","_postman_id":"92fb873b-6df1-447d-9697-e64cfa237a4d","description":""},{"name":"Unsubscribe","item":[{"name":"api/v1/notifiables/unsubscribe","id":"b3e5cd9e-e222-4284-b994-c09c00201ef1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"type","value":null,"description":"<p>The type field is required., The type field must be a string., The selected type is invalid, it must exist in Bid, Catalog, Comment, Order, Project, ProjectAll, PurchaseOrder, Requisition, SalesOrder, Task.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer., The project id field must be at least 1.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer., The user id field must be at least 1., The user id field must not be greater than 4294967295.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/notifiables/unsubscribe","description":"<p>Remove existing subscription to notifiables based on type.</p>\n","urlObject":{"path":["api","v1","notifiables","unsubscribe"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3e5cd9e-e222-4284-b994-c09c00201ef1"}],"id":"556226de-b99f-48d2-ad52-cebec81dc7c8","_postman_id":"556226de-b99f-48d2-ad52-cebec81dc7c8","description":""},{"name":"Update","item":[{"name":"api/v1/notifiables/{notifiable}","id":"c62746dd-e2f9-4ff6-9e91-877650e669d5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"notifiable_id","value":null,"description":"<p>The notifiable id field is required., The notifiable id field must be an integer.</p>\n","type":"text"},{"key":"notifiable_type","value":null,"description":"<p>The notifiable type field is required., The notifiable type field must be a string., The notifiable type field must not be greater than 45 characters., The selected notifiable type is invalid, it must exist in Asset, Bid, InventoryAdjustment, Offer, Order, Requisition, SalesOrder, Task, Ncr.</p>\n","type":"text"},{"key":"receives_browser","value":null,"description":"<p>(Nullable), The receives browser field must be true or false.</p>\n","type":"text"},{"key":"receives_email","value":null,"description":"<p>(Nullable), The receives email field must be true or false.</p>\n","type":"text"},{"key":"receives_teams","value":null,"description":"<p>(Nullable), The receives teams field must be true or false.</p>\n","type":"text"},{"key":"last_notification","value":null,"description":"<p>(Nullable)</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/notifiables/:notifiable","description":"<p>Update the specified <code>Notifiable</code> .</p>\n","urlObject":{"path":["api","v1","notifiables",":notifiable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"notifiable"}]}},"response":[],"_postman_id":"c62746dd-e2f9-4ff6-9e91-877650e669d5"},{"name":"api/v1/notifiables/{notifiable}","id":"c2f77c15-e59b-4e1b-a688-dfaca8ac4b0e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"notifiable_id","value":null,"description":"<p>The notifiable id field is required., The notifiable id field must be an integer.</p>\n","type":"text"},{"key":"notifiable_type","value":null,"description":"<p>The notifiable type field is required., The notifiable type field must be a string., The notifiable type field must not be greater than 45 characters., The selected notifiable type is invalid, it must exist in Asset, Bid, InventoryAdjustment, Offer, Order, Requisition, SalesOrder, Task, Ncr.</p>\n","type":"text"},{"key":"receives_browser","value":null,"description":"<p>(Nullable), The receives browser field must be true or false.</p>\n","type":"text"},{"key":"receives_email","value":null,"description":"<p>(Nullable), The receives email field must be true or false.</p>\n","type":"text"},{"key":"receives_teams","value":null,"description":"<p>(Nullable), The receives teams field must be true or false.</p>\n","type":"text"},{"key":"last_notification","value":null,"description":"<p>(Nullable)</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/notifiables/:notifiable","description":"<p>Update the specified <code>Notifiable</code> .</p>\n","urlObject":{"path":["api","v1","notifiables",":notifiable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"notifiable"}]}},"response":[],"_postman_id":"c2f77c15-e59b-4e1b-a688-dfaca8ac4b0e"}],"id":"ba0edeef-f2da-4256-aeb1-460a41efe851","_postman_id":"ba0edeef-f2da-4256-aeb1-460a41efe851","description":""}],"id":"a9fb0afc-5bbf-4cf6-96e4-37834447664a","description":"<p><code>Notifiables</code> store the subscription status of specific transactional entities.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> last_notification</code>,<code> notifiable_id</code>,<code> notifiable_type</code>,<code> project_id</code>,<code> receives_browser</code>,<code> receives_email</code>,<code> receives_teams</code>,<code> team_id</code>,<code> user_id</code>,</p>\n","_postman_id":"a9fb0afc-5bbf-4cf6-96e4-37834447664a"},{"name":"Notification Preferences","item":[{"name":"Destroy","item":[{"name":"api/v1/notification_preferences/{notification_preference}","id":"0d7b6766-c2da-4d58-a29f-78f20a4f2458","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/notification_preferences/:notification_preference","description":"<p>Remove the specified <code>NotificationPreference</code> from storage.</p>\n","urlObject":{"path":["api","v1","notification_preferences",":notification_preference"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"notification_preference"}]}},"response":[],"_postman_id":"0d7b6766-c2da-4d58-a29f-78f20a4f2458"}],"id":"657cb0c1-4687-4660-baf8-72e82489750d","_postman_id":"657cb0c1-4687-4660-baf8-72e82489750d","description":""},{"name":"Index","item":[{"name":"api/v1/notification_preferences","id":"2a6fac02-5ca1-4975-b596-9e21ac9383c7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/notification_preferences","description":"<p>Returns a list of multiple <code>NotificationPreference</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","notification_preferences"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a6fac02-5ca1-4975-b596-9e21ac9383c7"}],"id":"8b9dc4b4-3d53-4719-8ba2-59af341410eb","_postman_id":"8b9dc4b4-3d53-4719-8ba2-59af341410eb","description":""},{"name":"Show","item":[{"name":"api/v1/notification_preferences/{notification_preference}","id":"ecbff078-3470-4099-8748-a8c561e37048","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/notification_preferences/:notification_preference","description":"<p>Display the specified <code>NotificationPreference</code>.</p>\n","urlObject":{"path":["api","v1","notification_preferences",":notification_preference"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"notification_preference"}]}},"response":[],"_postman_id":"ecbff078-3470-4099-8748-a8c561e37048"}],"id":"a307d22f-8f31-4151-a459-c4b5156ff2d5","_postman_id":"a307d22f-8f31-4151-a459-c4b5156ff2d5","description":""},{"name":"Store","item":[{"name":"api/v1/notification_preferences","id":"06d15320-c7ce-4b76-bfd8-c2b39c0e8b1d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"team_id","value":null,"description":"<p>The team id field is required., The team id field must be an integer.</p>\n","type":"text"},{"key":"bids","value":null,"description":"<p>The bids field must be true or false.</p>\n","type":"text"},{"key":"catalog","value":null,"description":"<p>The catalog field must be true or false.</p>\n","type":"text"},{"key":"orders","value":null,"description":"<p>The orders field must be true or false.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"projects","value":null,"description":"<p>The projects field must be true or false.</p>\n","type":"text"},{"key":"purchase_orders","value":null,"description":"<p>The purchase orders field must be true or false.</p>\n","type":"text"},{"key":"receives_browser","value":null,"description":"<p>(Optional), The receives browser field must be true or false.</p>\n","type":"text"},{"key":"receives_email","value":null,"description":"<p>The receives email field is required., The receives email field must be true or false.</p>\n","type":"text"},{"key":"requisitions","value":null,"description":"<p>The requisitions field must be true or false.</p>\n","type":"text"},{"key":"sales_orders","value":null,"description":"<p>The sales orders field must be true or false.</p>\n","type":"text"},{"key":"ncrs","value":null,"description":"<p>The ncrs field must be true or false.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/notification_preferences","description":"<p>Create a new <code>NotificationPreference</code> object.</p>\n","urlObject":{"path":["api","v1","notification_preferences"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"06d15320-c7ce-4b76-bfd8-c2b39c0e8b1d"}],"id":"ebbbce60-6aa3-4e4f-9161-0ca5ac19db71","_postman_id":"ebbbce60-6aa3-4e4f-9161-0ca5ac19db71","description":""},{"name":"Update","item":[{"name":"api/v1/notification_preferences/{notification_preference}","id":"e5e3d020-ffd7-4752-af4d-bed0bdfb44a0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"team_id","value":null,"description":"<p>(Optional), The team id field must be an integer.</p>\n","type":"text"},{"key":"bids","value":null,"description":"<p>(Optional), The bids field must be true or false.</p>\n","type":"text"},{"key":"catalog","value":null,"description":"<p>(Optional), The catalog field must be true or false.</p>\n","type":"text"},{"key":"orders","value":null,"description":"<p>(Optional), The orders field must be true or false.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"projects","value":null,"description":"<p>(Optional), The projects field must be true or false.</p>\n","type":"text"},{"key":"ncrs","value":null,"description":"<p>(Optional), The ncrs field must be true or false.</p>\n","type":"text"},{"key":"purchase_orders","value":null,"description":"<p>(Optional), The purchase orders field must be true or false.</p>\n","type":"text"},{"key":"receives_browser","value":null,"description":"<p>(Optional), The receives browser field must be true or false.</p>\n","type":"text"},{"key":"receives_email","value":null,"description":"<p>(Optional), The receives email field must be true or false.</p>\n","type":"text"},{"key":"requisitions","value":null,"description":"<p>(Optional), The requisitions field must be true or false.</p>\n","type":"text"},{"key":"sales_orders","value":null,"description":"<p>(Optional), The sales orders field must be true or false.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), (Nullable), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/notification_preferences/:notification_preference","description":"<p>Update the specified <code>NotificationPreference</code> .</p>\n","urlObject":{"path":["api","v1","notification_preferences",":notification_preference"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"notification_preference"}]}},"response":[],"_postman_id":"e5e3d020-ffd7-4752-af4d-bed0bdfb44a0"},{"name":"api/v1/notification_preferences/{notification_preference}","id":"9b1a62fe-5deb-40ce-9e1b-5df58a8442c6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"team_id","value":null,"description":"<p>(Optional), The team id field must be an integer.</p>\n","type":"text"},{"key":"bids","value":null,"description":"<p>(Optional), The bids field must be true or false.</p>\n","type":"text"},{"key":"catalog","value":null,"description":"<p>(Optional), The catalog field must be true or false.</p>\n","type":"text"},{"key":"orders","value":null,"description":"<p>(Optional), The orders field must be true or false.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"projects","value":null,"description":"<p>(Optional), The projects field must be true or false.</p>\n","type":"text"},{"key":"ncrs","value":null,"description":"<p>(Optional), The ncrs field must be true or false.</p>\n","type":"text"},{"key":"purchase_orders","value":null,"description":"<p>(Optional), The purchase orders field must be true or false.</p>\n","type":"text"},{"key":"receives_browser","value":null,"description":"<p>(Optional), The receives browser field must be true or false.</p>\n","type":"text"},{"key":"receives_email","value":null,"description":"<p>(Optional), The receives email field must be true or false.</p>\n","type":"text"},{"key":"requisitions","value":null,"description":"<p>(Optional), The requisitions field must be true or false.</p>\n","type":"text"},{"key":"sales_orders","value":null,"description":"<p>(Optional), The sales orders field must be true or false.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), (Nullable), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/notification_preferences/:notification_preference","description":"<p>Update the specified <code>NotificationPreference</code> .</p>\n","urlObject":{"path":["api","v1","notification_preferences",":notification_preference"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"notification_preference"}]}},"response":[],"_postman_id":"9b1a62fe-5deb-40ce-9e1b-5df58a8442c6"}],"id":"6e3fda60-8d06-4cb6-8fe6-d341f9851b9f","_postman_id":"6e3fda60-8d06-4cb6-8fe6-d341f9851b9f","description":""}],"id":"1b044e44-a43c-401e-82cc-ad8def22271c","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> bids</code>,<code> catalog</code>,<code> orders</code>,<code> project</code>,<code> project_id</code>,<code> purchase_orders</code>,<code> receives_browser</code>,<code> receives_email</code>,<code> requisitions</code>,<code> sales_orders</code>,<code> team_id</code>,<code> user_id</code>,</p>\n","_postman_id":"1b044e44-a43c-401e-82cc-ad8def22271c"},{"name":"Offer Items","item":[{"name":"Add To Bid","item":[{"name":"api/v1/offer_items/{offer_item}/addtobid","id":"41ea5528-3f2d-4c87-83f5-1405a1f7c46d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offer_items/:offer_item/addtobid","description":"<p>Adds the specified <code>OfferItem</code> to its parent <code>Bid</code> This process creates a new <code>BidItem</code> and links the specified <code>OfferItem</code> to the newly created item.</p>\n","urlObject":{"path":["api","v1","offer_items",":offer_item","addtobid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer_item"}]}},"response":[],"_postman_id":"41ea5528-3f2d-4c87-83f5-1405a1f7c46d"}],"id":"d2ffb296-601f-439e-9683-6e1015329b27","_postman_id":"d2ffb296-601f-439e-9683-6e1015329b27","description":""},{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_offer_items","id":"0c3a1941-264f-48d7-89ca-cee328cf8b8c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_offer_items","description":"<p>Destroy multiple <code>OfferItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_offer_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c3a1941-264f-48d7-89ca-cee328cf8b8c"}],"id":"2995a87c-9fe8-45ea-9e56-395f427db7da","_postman_id":"2995a87c-9fe8-45ea-9e56-395f427db7da","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_offer_items","id":"7977d7e3-3d41-4b01-9664-7434900eff42","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.bid_item_id","value":null,"description":"<p>(Nullable), The data.*.bid item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>(Nullable), The data.<em>.catalog item id field must be an integer., The data.</em>.catalog item id field must be at least 0 characters., The data.*.catalog item id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.offer_item_evaluation","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.offer item evaluation field must be a string., The data.</em>.comment.offer item evaluation field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>The data.<em>.item type field is required., The data.</em>.item type field must be a string., The data.<em>.item type field must not be greater than 15 characters., The selected data.</em>.item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"data.*.lead_time_in_days","value":null,"description":"<p>(Nullable), The data.<em>.lead time in days field must be an integer., The data.</em>.lead time in days field must be at least 0 characters., The data.*.lead time in days field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Nullable), The data.<em>.line number field must be an integer., The data.</em>.line number field must be at least 0 characters., The data.*.line number field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.offer_id","value":null,"description":"<p>The data.<em>.offer id field is required., The data.</em>.offer id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>The data.<em>.quantity field is required., The data.</em>.quantity field must be a number., The data.<em>.quantity field must be at least 0 characters., The data.</em>.quantity field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.requisition_item_id","value":null,"description":"<p>(Nullable), The data.*.requisition item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.status","value":null,"description":"<p>(Nullable), The data.<em>.status field must be a string., The data.</em>.status field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"data.*.taxes_id","value":null,"description":"<p>The data.<em>.taxes id field is required., The data.</em>.taxes id field must be an integer.</p>\n","type":"text"},{"key":"data.*.technically_acceptable","value":null,"description":"<p>(Nullable), The data.*.technically acceptable field must be true or false.</p>\n","type":"text"},{"key":"data.*.unit_price","value":null,"description":"<p>The data.<em>.unit price field must be a number., The data.</em>.unit price field must be at least 0 characters., The data.*.unit price field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.vendor_sku","value":null,"description":"<p>(Nullable), The data.<em>.vendor sku field must be a string., The data.</em>.vendor sku field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.exchange_rate","value":null,"description":"<p>(Nullable), The data.<em>.exchange rate field must be a number., The data.</em>.exchange rate field must be at least 0.0001 characters., The data.*.exchange rate field must not be greater than 99999.9999 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_offer_items","description":"<p>Store multiple <code>OfferItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_offer_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"7977d7e3-3d41-4b01-9664-7434900eff42"}],"id":"23d79570-86ee-477b-a391-861f3cf0f8c5","_postman_id":"23d79570-86ee-477b-a391-861f3cf0f8c5","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_offer_items","id":"2685db49-48d4-483e-8229-690738f0aa84","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.bid_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.bid item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.catalog item id field must be an integer., The data.</em>.catalog item id field must be at least 0 characters., The data.*.catalog item id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Optional), (Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.offer_item_evaluation","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.offer item evaluation field must be a string., The data.</em>.comment.offer item evaluation field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>(Optional), The data.<em>.item type field must be a string., The data.</em>.item type field must not be greater than 15 characters., The selected data.*.item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"data.*.lead_time_in_days","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.lead time in days field must be an integer., The data.</em>.lead time in days field must be at least 0 characters., The data.*.lead time in days field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.line number field must be an integer., The data.</em>.line number field must be at least 0 characters., The data.*.line number field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Optional), (Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.offer_id","value":null,"description":"<p>(Optional), The data.*.offer id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>(Optional), The data.<em>.quantity field must be a number., The data.</em>.quantity field must be at least 0 characters., The data.*.quantity field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.requisition item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.status","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.status field must be a string., The data.</em>.status field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"data.*.taxes_id","value":null,"description":"<p>(Optional), The data.*.taxes id field must be an integer.</p>\n","type":"text"},{"key":"data.*.technically_acceptable","value":null,"description":"<p>(Optional), (Nullable), The data.*.technically acceptable field must be true or false.</p>\n","type":"text"},{"key":"data.*.unit_price","value":null,"description":"<p>(Optional), The data.<em>.unit price field must be a number., The data.</em>.unit price field must be at least 0 characters., The data.*.unit price field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.vendor_sku","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.vendor sku field must be a string., The data.</em>.vendor sku field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.exchange_rate","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.exchange rate field must be a number., The data.</em>.exchange rate field must be at least 0.0001 characters., The data.*.exchange rate field must not be greater than 99999.9999 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_offer_items","description":"<p>Update multiple <code>OfferItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_offer_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2685db49-48d4-483e-8229-690738f0aa84"}],"id":"28a5b54a-b4b9-49fe-a28d-27ac8f73e736","_postman_id":"28a5b54a-b4b9-49fe-a28d-27ac8f73e736","description":""},{"name":"Destroy","item":[{"name":"api/v1/offer_items/{offer_item}","id":"08e0e4fd-2318-460c-b223-2def7855056a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offer_items/:offer_item","description":"<p>Remove the specified <code>OfferItem</code> from storage.</p>\n","urlObject":{"path":["api","v1","offer_items",":offer_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer_item"}]}},"response":[],"_postman_id":"08e0e4fd-2318-460c-b223-2def7855056a"}],"id":"a212fa48-2f4a-4178-a196-54bff4703a64","_postman_id":"a212fa48-2f4a-4178-a196-54bff4703a64","description":""},{"name":"Index","item":[{"name":"api/v1/offer_items","id":"10eb2d10-cd14-4eeb-8fbc-869dfc735b9e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offer_items","description":"<p>Returns a list of multiple <code>OfferItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","offer_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"10eb2d10-cd14-4eeb-8fbc-869dfc735b9e"}],"id":"1adbc7b7-601c-4dc5-b3ea-9fd707444b6f","_postman_id":"1adbc7b7-601c-4dc5-b3ea-9fd707444b6f","description":""},{"name":"Price Per Unit Search","item":[{"name":"api/v1/offer_items/search_per_unit","id":"a39cfc1d-2513-4643-8bce-6a97365b6717","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"search","value":null,"description":"<p>The search field is required., The search field must be a string., The search field must be at least 3 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/offer_items/search_per_unit","description":"<p>Show all <code>OfferItem</code>s that match the provided search term, and provide data to support price per unit render.</p>\n","urlObject":{"path":["api","v1","offer_items","search_per_unit"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a39cfc1d-2513-4643-8bce-6a97365b6717"}],"id":"d5d44a04-9d5d-48c0-9077-0f63866cc259","_postman_id":"d5d44a04-9d5d-48c0-9077-0f63866cc259","description":""},{"name":"Search","item":[{"name":"api/v1/offer_items/search_historical","id":"e4b1a203-8e56-498a-a1ca-efee90a50a43","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"search","value":null,"description":"<p>The search field is required., The search field must be a string., The search field must be at least 3 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/offer_items/search_historical","description":"<p>Show all <code>OfferItem</code>s that match the provided search term.</p>\n","urlObject":{"path":["api","v1","offer_items","search_historical"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4b1a203-8e56-498a-a1ca-efee90a50a43"}],"id":"55e98667-a38d-45f6-aac5-4bd59a86a793","_postman_id":"55e98667-a38d-45f6-aac5-4bd59a86a793","description":""},{"name":"Show","item":[{"name":"api/v1/offer_items/{offer_item}","id":"c7b6f7d9-71d2-434f-b74a-4b5f5bbc7657","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offer_items/:offer_item","description":"<p>Display the specified <code>OfferItem</code>.</p>\n","urlObject":{"path":["api","v1","offer_items",":offer_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer_item"}]}},"response":[],"_postman_id":"c7b6f7d9-71d2-434f-b74a-4b5f5bbc7657"}],"id":"39c0eb38-8144-45b4-80fa-6a447173a3bd","_postman_id":"39c0eb38-8144-45b4-80fa-6a447173a3bd","description":""},{"name":"Store","item":[{"name":"api/v1/offer_items","id":"b16f3ad0-5bf6-41f0-a5e8-784c2d67ee57","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_item_id","value":null,"description":"<p>(Nullable), The bid item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Nullable), The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.offer_item_evaluation","value":null,"description":"<p>(Optional), (Nullable), The comment.offer item evaluation field must be a string., The comment.offer item evaluation field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>The item type field is required., The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"lead_time_in_days","value":null,"description":"<p>(Nullable), The lead time in days field must be an integer., The lead time in days field must be at least 0., The lead time in days field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>The offer id field is required., The offer id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Nullable), The status field must be a string., The status field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>The taxes id field is required., The taxes id field must be an integer.</p>\n","type":"text"},{"key":"technically_acceptable","value":null,"description":"<p>(Nullable), The technically acceptable field must be true or false.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>The unit price field must be a number., The unit price field must be at least 0., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"vendor_sku","value":null,"description":"<p>(Nullable), The vendor sku field must be a string., The vendor sku field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Nullable), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/offer_items","description":"<p>Create a new <code>OfferItem</code> object.</p>\n","urlObject":{"path":["api","v1","offer_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b16f3ad0-5bf6-41f0-a5e8-784c2d67ee57"}],"id":"3b7bb49f-dde0-45ee-a98f-22cd0673be1a","_postman_id":"3b7bb49f-dde0-45ee-a98f-22cd0673be1a","description":""},{"name":"Update","item":[{"name":"api/v1/offer_items/{offer_item}","id":"22dd457f-48bc-46a0-999b-b33063267546","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_item_id","value":null,"description":"<p>(Optional), (Nullable), The bid item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), (Nullable), The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.offer_item_evaluation","value":null,"description":"<p>(Optional), (Nullable), The comment.offer item evaluation field must be a string., The comment.offer item evaluation field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"lead_time_in_days","value":null,"description":"<p>(Optional), (Nullable), The lead time in days field must be an integer., The lead time in days field must be at least 0., The lead time in days field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>(Optional), The offer id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), (Nullable), The status field must be a string., The status field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>(Optional), The taxes id field must be an integer.</p>\n","type":"text"},{"key":"technically_acceptable","value":null,"description":"<p>(Optional), (Nullable), The technically acceptable field must be true or false.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>(Optional), The unit price field must be a number., The unit price field must be at least 0., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"vendor_sku","value":null,"description":"<p>(Optional), (Nullable), The vendor sku field must be a string., The vendor sku field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Optional), (Nullable), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/offer_items/:offer_item","description":"<p>Update the specified <code>OfferItem</code> .</p>\n","urlObject":{"path":["api","v1","offer_items",":offer_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer_item"}]}},"response":[],"_postman_id":"22dd457f-48bc-46a0-999b-b33063267546"},{"name":"api/v1/offer_items/{offer_item}","id":"3d703011-5fdd-49b9-85da-7b57b9d9d6e4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_item_id","value":null,"description":"<p>(Optional), (Nullable), The bid item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), (Nullable), The catalog item id field must be an integer., The catalog item id field must be at least 0., The catalog item id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.offer_item_evaluation","value":null,"description":"<p>(Optional), (Nullable), The comment.offer item evaluation field must be a string., The comment.offer item evaluation field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"lead_time_in_days","value":null,"description":"<p>(Optional), (Nullable), The lead time in days field must be an integer., The lead time in days field must be at least 0., The lead time in days field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>(Optional), The offer id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), (Nullable), The status field must be a string., The status field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>(Optional), The taxes id field must be an integer.</p>\n","type":"text"},{"key":"technically_acceptable","value":null,"description":"<p>(Optional), (Nullable), The technically acceptable field must be true or false.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>(Optional), The unit price field must be a number., The unit price field must be at least 0., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"vendor_sku","value":null,"description":"<p>(Optional), (Nullable), The vendor sku field must be a string., The vendor sku field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Optional), (Nullable), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/offer_items/:offer_item","description":"<p>Update the specified <code>OfferItem</code> .</p>\n","urlObject":{"path":["api","v1","offer_items",":offer_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer_item"}]}},"response":[],"_postman_id":"3d703011-5fdd-49b9-85da-7b57b9d9d6e4"}],"id":"0ec47394-e752-46b8-a093-051130637280","_postman_id":"0ec47394-e752-46b8-a093-051130637280","description":""}],"id":"57fe0747-12ad-4d41-87a1-db212895521d","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> bid_item_id</code>,<code> catalog_item_id</code>,<code> exchange_rate</code>,<code> item_type</code>,<code> metadata</code>,<code> offer_id</code>,<code> project_id</code>,<code> quantity</code>,<code> requisition_item_id</code>,<code> status</code>,<code> subtotal</code>,<code> taxes_id</code>,<code> team_id</code>,<code> technically_acceptable</code>,<code> unit_price</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bidItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientRepBusinessGroup</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitionItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>supplierRepBusinessGroup</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"57fe0747-12ad-4d41-87a1-db212895521d"},{"name":"Offers","item":[{"name":"Check Ready For Issue","item":[{"name":"api/v1/offers/{offer}/readyforissue","id":"5d468da2-e935-4843-ac53-8f66b2a5e17a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offer/readyforissue","description":"<p>Checks if an <code>Offer</code> can be Issued.</p>\n","urlObject":{"path":["api","v1","offers",":offer","readyforissue"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"}]}},"response":[],"_postman_id":"5d468da2-e935-4843-ac53-8f66b2a5e17a"}],"id":"9b6a3e30-d532-4657-a6d1-577c4444a72a","_postman_id":"9b6a3e30-d532-4657-a6d1-577c4444a72a","description":""},{"name":"Check Ready For Issue Detailed","item":[{"name":"api/v1/offers/{offer}/readyforissuedetailed","id":"15a4cf7e-f90a-45a6-a056-103a2475c075","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offer/readyforissuedetailed","description":"<p>Checks if an <code>Offer</code> can be issued with detailed explanation.</p>\n","urlObject":{"path":["api","v1","offers",":offer","readyforissuedetailed"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"}]}},"response":[],"_postman_id":"15a4cf7e-f90a-45a6-a056-103a2475c075"}],"id":"aef27eaa-153e-436a-97e7-066d785a4e63","_postman_id":"aef27eaa-153e-436a-97e7-066d785a4e63","description":""},{"name":"Destroy","item":[{"name":"api/v1/offers/{offer}","id":"bf96e38b-c0fb-4f05-8200-652f897f87e7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offer","description":"<p>Remove the specified <code>Offer</code> from storage.</p>\n","urlObject":{"path":["api","v1","offers",":offer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"}]}},"response":[],"_postman_id":"bf96e38b-c0fb-4f05-8200-652f897f87e7"}],"id":"0cfafbd5-044d-4702-b56d-aedf370a478b","_postman_id":"0cfafbd5-044d-4702-b56d-aedf370a478b","description":""},{"name":"Fill Bom From Parent Bid","item":[{"name":"api/v1/offers/{offer}/maketemplatefrombid/{bid}","id":"b8d35a13-c8c9-4766-ae4d-abe1dda98e4f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offer/maketemplatefrombid/:bid","description":"<p>Process will populate the Bill of Materials for the specified <code>Offer</code> from the parent <code>Bid</code> This process creates <code>OfferItems</code> from <code>BidItems</code> with associated metadata.</p>\n","urlObject":{"path":["api","v1","offers",":offer","maketemplatefrombid",":bid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"},{"type":"any","key":"bid"}]}},"response":[],"_postman_id":"b8d35a13-c8c9-4766-ae4d-abe1dda98e4f"}],"id":"abd1e1ad-4455-47fa-ab65-a4ed67403aad","_postman_id":"abd1e1ad-4455-47fa-ab65-a4ed67403aad","description":""},{"name":"Financial Summary","item":[{"name":"api/v1/offers/{offer}/financial/{type}","id":"31bc0a49-429a-4c2a-9769-549b760f6516","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offer/financial/:type","description":"<p>Provides the financial summary of an <code>Offer</code>.</p>\n","urlObject":{"path":["api","v1","offers",":offer","financial",":type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"},{"type":"any","key":"type"}]}},"response":[],"_postman_id":"31bc0a49-429a-4c2a-9769-549b760f6516"}],"id":"8d59d686-c8b2-4633-9d7c-ace2d9e231ea","_postman_id":"8d59d686-c8b2-4633-9d7c-ace2d9e231ea","description":""},{"name":"Index","item":[{"name":"api/v1/offers","id":"fd4e3951-f040-4b1a-b2f2-46e95db2689a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers","description":"<p>Returns a list of multiple <code>Offer</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","offers"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd4e3951-f040-4b1a-b2f2-46e95db2689a"}],"id":"77d9eee4-8c1c-4e80-9331-08442295bb18","_postman_id":"77d9eee4-8c1c-4e80-9331-08442295bb18","description":""},{"name":"Issue Bid","item":[{"name":"api/v1/offers/{offer}/issuebid","id":"1fe17967-e291-4d70-98e0-126d4e379ada","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offer/issuebid","description":"<p>Process will issue the <code>Offer</code> (Vendor Specified <code>Bid</code> Package).</p>\n","urlObject":{"path":["api","v1","offers",":offer","issuebid"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"}]}},"response":[],"_postman_id":"1fe17967-e291-4d70-98e0-126d4e379ada"}],"id":"21ab42c0-f5b3-4200-898c-aaec4561697d","_postman_id":"21ab42c0-f5b3-4200-898c-aaec4561697d","description":""},{"name":"Show","item":[{"name":"api/v1/offers/{offer}","id":"b4d770bb-f115-448d-b5c3-f51e5c4b62e8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offer","description":"<p>Display the specified <code>Offer</code>.</p>\n","urlObject":{"path":["api","v1","offers",":offer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"}]}},"response":[],"_postman_id":"b4d770bb-f115-448d-b5c3-f51e5c4b62e8"}],"id":"906c1e01-1c8b-4062-9759-0ab5431e1cb8","_postman_id":"906c1e01-1c8b-4062-9759-0ab5431e1cb8","description":""},{"name":"Store","item":[{"name":"api/v1/offers","id":"02fafe09-a3c8-44a3-a851-b8d16b6ae176","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>The bid id field is required., The bid id field must be an integer.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>The default taxes id field is required., The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>The vendor business id field is required., The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Nullable), The vendor person id field must be an integer.</p>\n","type":"text"},{"key":"offer_identifier","value":null,"description":"<p>(Optional), (Nullable), The offer identifier field must be a string., The offer identifier field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/offers","description":"<p>Create a new <code>Offer</code> object.</p>\n","urlObject":{"path":["api","v1","offers"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"02fafe09-a3c8-44a3-a851-b8d16b6ae176"}],"id":"b654e1c1-5924-44a0-909a-dfb50176e0c0","_postman_id":"b654e1c1-5924-44a0-909a-dfb50176e0c0","description":""},{"name":"Update","item":[{"name":"api/v1/offers/{offer}","id":"3f6670cd-fa52-418b-bbf7-a39840f4b8f2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Optional), The bid id field must be an integer., The bid id field must be at least 0.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"},{"key":"offer_identifier","value":null,"description":"<p>(Optional), (Nullable), The offer identifier field must be a string., The offer identifier field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/offers/:offer","description":"<p>Update the specified <code>Offer</code> .</p>\n","urlObject":{"path":["api","v1","offers",":offer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"}]}},"response":[],"_postman_id":"3f6670cd-fa52-418b-bbf7-a39840f4b8f2"},{"name":"api/v1/offers/{offer}","id":"9bcb3e4b-7eaf-4c6a-9f7a-3455455a037f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Optional), The bid id field must be an integer., The bid id field must be at least 0.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"},{"key":"offer_identifier","value":null,"description":"<p>(Optional), (Nullable), The offer identifier field must be a string., The offer identifier field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/offers/:offer","description":"<p>Update the specified <code>Offer</code> .</p>\n","urlObject":{"path":["api","v1","offers",":offer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"}]}},"response":[],"_postman_id":"9bcb3e4b-7eaf-4c6a-9f7a-3455455a037f"}],"id":"8d82d55e-3f13-4384-90eb-24d42a38aa92","_postman_id":"8d82d55e-3f13-4384-90eb-24d42a38aa92","description":""},{"name":"View Bom Data","item":[{"name":"api/v1/offers/{offer}/displaybom","id":"2358a03e-fa99-42a6-89c0-20412c6b832d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offer/displaybom","description":"<p>Returns the data package used by application to render the <code>Offer</code> Bill of Materials.</p>\n","urlObject":{"path":["api","v1","offers",":offer","displaybom"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offer"}]}},"response":[],"_postman_id":"2358a03e-fa99-42a6-89c0-20412c6b832d"}],"id":"e6c15e05-63c9-4101-9cac-d3c4631df48e","_postman_id":"e6c15e05-63c9-4101-9cac-d3c4631df48e","description":""},{"name":"Api/V1/Offers/{Offerid}/Childrenandparentattachables","id":"f9367492-e967-40c9-8fdf-f6615a6faa38","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/offers/:offerId/childrenandparentattachables","urlObject":{"path":["api","v1","offers",":offerId","childrenandparentattachables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"offerId"}]}},"response":[],"_postman_id":"f9367492-e967-40c9-8fdf-f6615a6faa38"}],"id":"b7627749-f1b6-4828-b344-bb6d7d2f9fe1","description":"<p><code>Offers</code> store the data about a specific vendor's response to a <code>Bid</code>.</p>\n<p>The line level detail of an <code>Offer</code> is stored as <code>OfferItems</code>.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> bid_id</code>,<code> comment</code>,<code> currency_code</code>,<code> default_taxes_id</code>,<code> id</code>,<code> incoterm_id</code>,<code> lead_time_in_days</code>,<code> offer_idenfier</code>,<code> paymentterm_id</code>,<code> project_id</code>,<code> status</code>,<code> team_id</code>,<code> validation_graph_uuid</code>,<code> vendor_business_id</code>,<code> vendor_person_id</code>,<code> vendor_sku</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bid</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>defaultTax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>evaluations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expiryDate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>incoTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offerItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTeamRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorRep</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>financial_summary</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b7627749-f1b6-4828-b344-bb6d7d2f9fe1"},{"name":"Order Documents","item":[{"name":"Index","item":[{"name":"api/v1/order_documents","id":"be120ac0-94e4-49c4-b374-39732de06edd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/order_documents","description":"<p>Returns a list of multiple <code>OrderDocument</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","order_documents"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"be120ac0-94e4-49c4-b374-39732de06edd"}],"id":"e0e3f39b-0784-421c-923b-ef5d920080f4","_postman_id":"e0e3f39b-0784-421c-923b-ef5d920080f4","description":""},{"name":"Show","item":[{"name":"api/v1/order_documents/{order_document}","id":"f65e8b6e-0653-4cb7-a565-6dc6259efc75","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/order_documents/:order_document","description":"<p>Display the specified <code>OrderDocument</code>.</p>\n","urlObject":{"path":["api","v1","order_documents",":order_document"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_document"}]}},"response":[],"_postman_id":"f65e8b6e-0653-4cb7-a565-6dc6259efc75"}],"id":"6fbd1976-e376-4066-af07-a05884d2310c","_postman_id":"6fbd1976-e376-4066-af07-a05884d2310c","description":""},{"name":"Update","item":[{"name":"api/v1/order_documents/{order_document}","id":"3cb93b87-22ae-46ee-8c65-58dcfd15ae0e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"order_id","value":null,"description":"<p>The order id field must be an integer.</p>\n","type":"text"},{"key":"team_id","value":null,"description":"<p>The team id field must be an integer.</p>\n","type":"text"},{"key":"release_order_terms","value":null,"description":"<p>(Nullable), The release order terms field must be a string., The release order terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"receiving_report_terms","value":null,"description":"<p>(Nullable), The receiving report terms field must be a string., The receiving report terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"service_release_terms","value":null,"description":"<p>(Nullable), The service release terms field must be a string., The service release terms field must not be greater than 65535 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_documents/:order_document","description":"<p>Update the specified <code>OrderDocument</code> .</p>\n","urlObject":{"path":["api","v1","order_documents",":order_document"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_document"}]}},"response":[],"_postman_id":"3cb93b87-22ae-46ee-8c65-58dcfd15ae0e"},{"name":"api/v1/order_documents/{order_document}","id":"2da59607-e582-4ba1-98c4-f0959d5819e5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"order_id","value":null,"description":"<p>The order id field must be an integer.</p>\n","type":"text"},{"key":"team_id","value":null,"description":"<p>The team id field must be an integer.</p>\n","type":"text"},{"key":"release_order_terms","value":null,"description":"<p>(Nullable), The release order terms field must be a string., The release order terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"receiving_report_terms","value":null,"description":"<p>(Nullable), The receiving report terms field must be a string., The receiving report terms field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"service_release_terms","value":null,"description":"<p>(Nullable), The service release terms field must be a string., The service release terms field must not be greater than 65535 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_documents/:order_document","description":"<p>Update the specified <code>OrderDocument</code> .</p>\n","urlObject":{"path":["api","v1","order_documents",":order_document"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_document"}]}},"response":[],"_postman_id":"2da59607-e582-4ba1-98c4-f0959d5819e5"}],"id":"8b94e272-0017-4cb5-ba5c-e92869382469","_postman_id":"8b94e272-0017-4cb5-ba5c-e92869382469","description":""}],"id":"05df084f-9c6b-4a25-969e-5fe6458f64f9","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> order_id</code>,<code> receiving_report_terms</code>,<code> release_order_terms</code>,<code> service_release_terms</code>,</p>\n","_postman_id":"05df084f-9c6b-4a25-969e-5fe6458f64f9"},{"name":"Order Invoices","item":[{"name":"Destroy","item":[{"name":"api/v1/order_invoices/{order_invoice}","id":"89d73f7f-cf94-4213-bf21-83f851e6f6fa","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/order_invoices/:order_invoice","description":"<p>Remove the specified <code>OrderInvoice</code> from storage.</p>\n","urlObject":{"path":["api","v1","order_invoices",":order_invoice"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_invoice"}]}},"response":[],"_postman_id":"89d73f7f-cf94-4213-bf21-83f851e6f6fa"}],"id":"6b7bacc1-195f-4001-b0f9-1828cb5e3ab3","_postman_id":"6b7bacc1-195f-4001-b0f9-1828cb5e3ab3","description":""},{"name":"Index","item":[{"name":"api/v1/order_invoices","id":"cc436b1c-3ea8-491c-8a1d-0a365c5f2203","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/order_invoices","description":"<p>Returns a list of multiple <code>OrderInvoice</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","order_invoices"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc436b1c-3ea8-491c-8a1d-0a365c5f2203"}],"id":"4be9099a-fb4a-4c91-a889-efcba3a347a1","_postman_id":"4be9099a-fb4a-4c91-a889-efcba3a347a1","description":""},{"name":"Show","item":[{"name":"api/v1/order_invoices/{order_invoice}","id":"bd3cfa5b-b882-4480-849f-88e2615719f0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/order_invoices/:order_invoice","description":"<p>Display the specified <code>OrderInvoice</code>.</p>\n","urlObject":{"path":["api","v1","order_invoices",":order_invoice"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_invoice"}]}},"response":[],"_postman_id":"bd3cfa5b-b882-4480-849f-88e2615719f0"}],"id":"8c6f101b-e43f-4a39-b413-64f8f0c6002f","_postman_id":"8c6f101b-e43f-4a39-b413-64f8f0c6002f","description":""},{"name":"Store","item":[{"name":"api/v1/order_invoices","id":"6d36db0e-e8d8-4603-8dcf-75032cb66082","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"currency_code","value":null,"description":"<p>The currency code field is required., The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"due_date","value":null,"description":"<p>The due date field is required., The due date field must be a valid date.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Nullable), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"invoice_date","value":null,"description":"<p>(Nullable), The invoice date field must be a valid date.</p>\n","type":"text"},{"key":"invoice_number","value":null,"description":"<p>The invoice number field is required., The invoice number field must be a string., The invoice number field must not be greater than 100 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"milestone_payment","value":null,"description":"<p>(Optional), The milestone payment field must be true or false.</p>\n","type":"text"},{"key":"subtotal","value":null,"description":"<p>(Nullable), The subtotal field must be a number., The subtotal field must be at least -9999999999.99., The subtotal field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"taxes","value":null,"description":"<p>(Nullable), The taxes field must be a number., The taxes field must be at least -9999999999.99., The taxes field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"taxes_ids","value":null,"description":"<p>(Nullable), The taxes ids field must be a valid JSON string.</p>\n","type":"text"},{"key":"total","value":null,"description":"<p>(Nullable), The total field must be a number., The total field must be at least -9999999999.99., The total field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>The vendor business id field is required., The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"has_line_detail","value":null,"description":"<p>(Optional), The has line detail field must be true or false.</p>\n","type":"text"},{"key":"lines","value":null,"description":"<p>The lines field is required when has line detail is empty., The lines field must be an array.</p>\n","type":"text"},{"key":"lines.*.value","value":null,"description":"<p>The lines.<em>.value field is required when lines is present., The lines.</em>.value field must be a number.</p>\n","type":"text"},{"key":"lines.*.description","value":null,"description":"<p>(Nullable), The lines.*.description field must be a string.</p>\n","type":"text"},{"key":"lines.*.order_item_id","value":null,"description":"<p>The lines.*.order item id field is required when lines is present.</p>\n","type":"text"},{"key":"lines.*.line_number","value":null,"description":"<p>(Nullable), The lines.*.line number field must be a number.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_invoices","description":"<p>Create a new <code>OrderInvoice</code> object.</p>\n","urlObject":{"path":["api","v1","order_invoices"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d36db0e-e8d8-4603-8dcf-75032cb66082"}],"id":"587374e8-77a0-410b-9e5c-63fbaf04588b","_postman_id":"587374e8-77a0-410b-9e5c-63fbaf04588b","description":""},{"name":"Update","item":[{"name":"api/v1/order_invoices/{order_invoice}","id":"1a679bb5-fd57-4f51-871c-0785d73cc273","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"currency_code","value":null,"description":"<p>(Optional), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"due_date","value":null,"description":"<p>(Optional), The due date field must be a valid date.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Optional), (Nullable), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"invoice_date","value":null,"description":"<p>(Optional), (Nullable), The invoice date field must be a valid date.</p>\n","type":"text"},{"key":"invoice_number","value":null,"description":"<p>(Optional), The invoice number field must be a string., The invoice number field must not be greater than 100 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), The order id field must be an integer.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"milestone_payment","value":null,"description":"<p>(Optional), The milestone payment field must be true or false.</p>\n","type":"text"},{"key":"subtotal","value":null,"description":"<p>(Optional), The subtotal field must be a number., The subtotal field must be at least -9999999999.99., The subtotal field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"taxes","value":null,"description":"<p>(Nullable), The taxes field must be a number., The taxes field must be at least -9999999999.99., The taxes field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"taxes_ids","value":null,"description":"<p>(Optional), (Nullable), The taxes ids field must be a valid JSON string.</p>\n","type":"text"},{"key":"total","value":null,"description":"<p>(Optional), (Nullable), The total field must be a number., The total field must be at least -9999999999.99., The total field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"has_line_detail","value":null,"description":"<p>(Optional), The has line detail field must be true or false.</p>\n","type":"text"},{"key":"lines","value":null,"description":"<p>The lines field is required when has line detail is empty., The lines field must be an array.</p>\n","type":"text"},{"key":"lines.*.id","value":null,"description":"<p>(Optional), (Nullable), The lines.*.id field must be an integer.</p>\n","type":"text"},{"key":"lines.*.value","value":null,"description":"<p>The lines.<em>.value field is required when lines is present., The lines.</em>.value field must be a number.</p>\n","type":"text"},{"key":"lines.*.description","value":null,"description":"<p>(Nullable), The lines.*.description field must be a string.</p>\n","type":"text"},{"key":"lines.*.order_item_id","value":null,"description":"<p>The lines.*.order item id field is required when lines is present.</p>\n","type":"text"},{"key":"lines.*.delete","value":null,"description":"<p>(Optional), The lines.*.delete field must be true or false.</p>\n","type":"text"},{"key":"lines.*.line_number","value":null,"description":"<p>(Nullable), The lines.*.line number field must be a number.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_invoices/:order_invoice","description":"<p>Update the specified <code>OrderInvoice</code> .</p>\n","urlObject":{"path":["api","v1","order_invoices",":order_invoice"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_invoice"}]}},"response":[],"_postman_id":"1a679bb5-fd57-4f51-871c-0785d73cc273"},{"name":"api/v1/order_invoices/{order_invoice}","id":"9f855ad3-224e-4017-9463-1171e99c8ee0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"currency_code","value":null,"description":"<p>(Optional), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"due_date","value":null,"description":"<p>(Optional), The due date field must be a valid date.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Optional), (Nullable), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"invoice_date","value":null,"description":"<p>(Optional), (Nullable), The invoice date field must be a valid date.</p>\n","type":"text"},{"key":"invoice_number","value":null,"description":"<p>(Optional), The invoice number field must be a string., The invoice number field must not be greater than 100 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), The order id field must be an integer.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"milestone_payment","value":null,"description":"<p>(Optional), The milestone payment field must be true or false.</p>\n","type":"text"},{"key":"subtotal","value":null,"description":"<p>(Optional), The subtotal field must be a number., The subtotal field must be at least -9999999999.99., The subtotal field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"taxes","value":null,"description":"<p>(Nullable), The taxes field must be a number., The taxes field must be at least -9999999999.99., The taxes field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"taxes_ids","value":null,"description":"<p>(Optional), (Nullable), The taxes ids field must be a valid JSON string.</p>\n","type":"text"},{"key":"total","value":null,"description":"<p>(Optional), (Nullable), The total field must be a number., The total field must be at least -9999999999.99., The total field must not be greater than 9999999999.99.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"has_line_detail","value":null,"description":"<p>(Optional), The has line detail field must be true or false.</p>\n","type":"text"},{"key":"lines","value":null,"description":"<p>The lines field is required when has line detail is empty., The lines field must be an array.</p>\n","type":"text"},{"key":"lines.*.id","value":null,"description":"<p>(Optional), (Nullable), The lines.*.id field must be an integer.</p>\n","type":"text"},{"key":"lines.*.value","value":null,"description":"<p>The lines.<em>.value field is required when lines is present., The lines.</em>.value field must be a number.</p>\n","type":"text"},{"key":"lines.*.description","value":null,"description":"<p>(Nullable), The lines.*.description field must be a string.</p>\n","type":"text"},{"key":"lines.*.order_item_id","value":null,"description":"<p>The lines.*.order item id field is required when lines is present.</p>\n","type":"text"},{"key":"lines.*.delete","value":null,"description":"<p>(Optional), The lines.*.delete field must be true or false.</p>\n","type":"text"},{"key":"lines.*.line_number","value":null,"description":"<p>(Nullable), The lines.*.line number field must be a number.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_invoices/:order_invoice","description":"<p>Update the specified <code>OrderInvoice</code> .</p>\n","urlObject":{"path":["api","v1","order_invoices",":order_invoice"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_invoice"}]}},"response":[],"_postman_id":"9f855ad3-224e-4017-9463-1171e99c8ee0"}],"id":"6115761e-5d6d-4722-a520-17fa779c8fbe","_postman_id":"6115761e-5d6d-4722-a520-17fa779c8fbe","description":""}],"id":"0985ce26-7c8b-4a9d-bfc1-0a2da6671085","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> currency_code</code>,<code> description</code>,<code> due_date</code>,<code> invoice_date</code>,<code> invoice_number</code>,<code> milestone_payment</code>,<code> order_id</code>,<code> paymentterm_id</code>,<code> project_id</code>,<code> status</code>,<code> subtotal</code>,<code> taxes</code>,<code> taxes_ids</code>,<code> team_id</code>,<code> total</code>,<code> vendor_business_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expeditorUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>managerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusiness</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0985ce26-7c8b-4a9d-bfc1-0a2da6671085"},{"name":"Order Items","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_order_items","id":"71727e2e-9661-4a12-8d1d-b13b9fe442d0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_order_items","description":"<p>Destroy multiple <code>OrderItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"71727e2e-9661-4a12-8d1d-b13b9fe442d0"}],"id":"48cc0303-59e3-40c2-ae75-55c1daba8125","_postman_id":"48cc0303-59e3-40c2-ae75-55c1daba8125","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_order_items","id":"1f108979-d28c-4865-a642-d9686eceef22","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.budget","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.budget field must be a number., The data.</em>.budget field must be at least 0 characters., The data.*.budget field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.buyer_user_id","value":null,"description":"<p>(Nullable), The data.*.buyer user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>The data.<em>.catalog item id field is required., The data.</em>.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.purchase order field must be a string., The data.</em>.comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.exchange_rate","value":null,"description":"<p>(Nullable), The data.<em>.exchange rate field must be a number., The data.</em>.exchange rate field must be at least 0.0001 characters., The data.*.exchange rate field must not be greater than 99999.9999 characters.</p>\n","type":"text"},{"key":"data.*.expeditor_user_id","value":null,"description":"<p>(Nullable), The data.*.expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.expediting_level","value":null,"description":"<p>(Nullable), The data.<em>.expediting level field must be a string., The data.</em>.expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.inspection_level","value":null,"description":"<p>(Nullable), The data.<em>.inspection level field must be a string., The data.</em>.inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>The data.<em>.item type field is required., The data.</em>.item type field must be a string., The data.<em>.item type field must not be greater than 15 characters., The selected data.</em>.item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Nullable), The data.<em>.line number field must be an integer., The data.</em>.line number field must be at least 0 characters., The data.*.line number field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.offer_item_id","value":null,"description":"<p>(Nullable), The data.*.offer item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_id","value":null,"description":"<p>The data.<em>.order id field is required., The data.</em>.order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.promised_by_date","value":null,"description":"<p>(Nullable), The data.*.promised by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>The data.<em>.quantity field is required., The data.</em>.quantity field must be a number., The data.<em>.quantity field must be at least 0 characters., The data.</em>.quantity field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.required_by_date","value":null,"description":"<p>(Nullable), The data.*.required by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.requisition item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.taxes_id","value":null,"description":"<p>(Optional), The data.*.taxes id field must be an integer.</p>\n","type":"text"},{"key":"data.*.unit_price","value":null,"description":"<p>The data.<em>.unit price field must be a number., The data.</em>.unit price field must be at least -99999999999.9999 characters., The data.*.unit price field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_order_items","description":"<p>Store multiple <code>OrderItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f108979-d28c-4865-a642-d9686eceef22"}],"id":"a6320c2e-7b78-4267-b305-b68eb8993c4b","_postman_id":"a6320c2e-7b78-4267-b305-b68eb8993c4b","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_order_items","id":"8a40640b-4e4b-4526-884c-ce0eb45a23c8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.budget","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.budget field must be a number., The data.</em>.budget field must be at least 0 characters., The data.*.budget field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.buyer user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>(Optional), The data.*.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Optional), (Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.purchase order field must be a string., The data.</em>.comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.exchange_rate","value":null,"description":"<p>(Optional), The data.<em>.exchange rate field must be a number., The data.</em>.exchange rate field must be at least 0.0001 characters., The data.*.exchange rate field must not be greater than 99999.9999 characters.</p>\n","type":"text"},{"key":"data.*.expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.expediting_level","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.expediting level field must be a string., The data.</em>.expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.inspection_level","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.inspection level field must be a string., The data.</em>.inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>(Optional), The data.<em>.item type field must be a string., The data.</em>.item type field must not be greater than 15 characters., The selected data.*.item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.line number field must be an integer., The data.</em>.line number field must be at least 0 characters., The data.*.line number field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.offer_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.offer item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.promised_by_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.promised by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>(Optional), The data.<em>.quantity field must be a number., The data.</em>.quantity field must be at least 0 characters., The data.*.quantity field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.required_by_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.required by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.requisition item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.taxes_id","value":null,"description":"<p>(Optional), The data.*.taxes id field must be an integer.</p>\n","type":"text"},{"key":"data.*.unit_price","value":null,"description":"<p>(Optional), The data.<em>.unit price field must be a number., The data.</em>.unit price field must be at least -99999999999.9999 characters., The data.*.unit price field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_order_items","description":"<p>Update multiple <code>OrderItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a40640b-4e4b-4526-884c-ce0eb45a23c8"}],"id":"52cdb8b5-e45f-4982-ad54-ed742c64d58b","_postman_id":"52cdb8b5-e45f-4982-ad54-ed742c64d58b","description":""},{"name":"Destroy","item":[{"name":"api/v1/order_items/{order_item}","id":"9f08dfb8-763b-482a-aeb2-489a2b042347","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/order_items/:order_item","description":"<p>Remove the specified <code>OrderItem</code> from storage.</p>\n","urlObject":{"path":["api","v1","order_items",":order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_item"}]}},"response":[],"_postman_id":"9f08dfb8-763b-482a-aeb2-489a2b042347"}],"id":"3ef0ff70-9748-4498-8679-3dc5e42b5314","_postman_id":"3ef0ff70-9748-4498-8679-3dc5e42b5314","description":""},{"name":"Index","item":[{"name":"api/v1/order_items","id":"0f8bd3d4-edb0-4d34-b5eb-5da101d17c05","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/order_items","description":"<p>Returns a list of multiple <code>OrderItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f8bd3d4-edb0-4d34-b5eb-5da101d17c05"}],"id":"e880295b-6f23-448b-a30d-9928baf5884d","_postman_id":"e880295b-6f23-448b-a30d-9928baf5884d","description":""},{"name":"Search","item":[{"name":"api/v1/order_items/search_historical","id":"723d7db5-5990-489a-8c3c-adbec5467d4b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"search","value":null,"description":"<p>The search field is required., The search field must be a string., The search field must be at least 3 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_items/search_historical","description":"<p>Show all <code>OrderItem</code>s that match the provided search term.</p>\n","urlObject":{"path":["api","v1","order_items","search_historical"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"723d7db5-5990-489a-8c3c-adbec5467d4b"}],"id":"a7c00285-30f0-4ab5-97f0-c653646916fe","_postman_id":"a7c00285-30f0-4ab5-97f0-c653646916fe","description":""},{"name":"Search Per Unit","item":[{"name":"api/v1/order_items/search_per_unit","id":"c69da89e-8dfa-42a7-b800-0df14c184e1c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"search","value":null,"description":"<p>The search field is required., The search field must be a string., The search field must be at least 3 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_items/search_per_unit","description":"<p>Show all <code>OfferItem</code>s that match the provided search term, and provide data to support price per unit render.</p>\n","urlObject":{"path":["api","v1","order_items","search_per_unit"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c69da89e-8dfa-42a7-b800-0df14c184e1c"}],"id":"43bdabf7-cc03-4fd7-bebb-0d3d214c959e","_postman_id":"43bdabf7-cc03-4fd7-bebb-0d3d214c959e","description":""},{"name":"Show","item":[{"name":"api/v1/order_items/{order_item}","id":"67c2f3ed-b48b-4299-9088-6c1fede0c22f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/order_items/:order_item","description":"<p>Display the specified <code>OrderItem</code>.</p>\n","urlObject":{"path":["api","v1","order_items",":order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_item"}]}},"response":[],"_postman_id":"67c2f3ed-b48b-4299-9088-6c1fede0c22f"}],"id":"9efd0468-aa85-4f46-9c84-22b8cdcdf564","_postman_id":"9efd0468-aa85-4f46-9c84-22b8cdcdf564","description":""},{"name":"Store","item":[{"name":"api/v1/order_items","id":"bc9d9b3d-8fad-43e7-a706-16ca23671051","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The comment.purchase order field must be a string., The comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Nullable), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"expediting_level","value":null,"description":"<p>(Nullable), The expediting level field must be a string., The expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>The item type field is required., The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"offer_item_id","value":null,"description":"<p>(Nullable), The offer item id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"promised_by_date","value":null,"description":"<p>(Nullable), The promised by date field must be a valid date.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>(Optional), The taxes id field must be an integer.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>The unit price field must be a number., The unit price field must be at least -99999999999.9999., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_items","description":"<p>Create a new <code>OrderItem</code> object.</p>\n","urlObject":{"path":["api","v1","order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc9d9b3d-8fad-43e7-a706-16ca23671051"}],"id":"f6397f5c-8883-41ac-b5b0-3e66aa42bf8c","_postman_id":"f6397f5c-8883-41ac-b5b0-3e66aa42bf8c","description":""},{"name":"Update","item":[{"name":"api/v1/order_items/{order_item}","id":"9d39a01f-c244-4789-8578-6480650f8af7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The comment.purchase order field must be a string., The comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Optional), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"expediting_level","value":null,"description":"<p>(Optional), (Nullable), The expediting level field must be a string., The expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Optional), (Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"offer_item_id","value":null,"description":"<p>(Optional), (Nullable), The offer item id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), (Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"promised_by_date","value":null,"description":"<p>(Optional), (Nullable), The promised by date field must be a valid date.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Optional), (Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>(Optional), The taxes id field must be an integer.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>(Optional), The unit price field must be a number., The unit price field must be at least -99999999999.9999., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_items/:order_item","description":"<p>Update the specified <code>OrderItem</code> .</p>\n","urlObject":{"path":["api","v1","order_items",":order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_item"}]}},"response":[],"_postman_id":"9d39a01f-c244-4789-8578-6480650f8af7"},{"name":"api/v1/order_items/{order_item}","id":"e990c40e-b92b-4f79-bf27-c747d77f715e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The comment.purchase order field must be a string., The comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Optional), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"expediting_level","value":null,"description":"<p>(Optional), (Nullable), The expediting level field must be a string., The expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Optional), (Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"offer_item_id","value":null,"description":"<p>(Optional), (Nullable), The offer item id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), (Nullable), The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"promised_by_date","value":null,"description":"<p>(Optional), (Nullable), The promised by date field must be a valid date.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Optional), (Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable), The requisition item id field must be an integer.</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>(Optional), The taxes id field must be an integer.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>(Optional), The unit price field must be a number., The unit price field must be at least -99999999999.9999., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/order_items/:order_item","description":"<p>Update the specified <code>OrderItem</code> .</p>\n","urlObject":{"path":["api","v1","order_items",":order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order_item"}]}},"response":[],"_postman_id":"e990c40e-b92b-4f79-bf27-c747d77f715e"}],"id":"0904ca12-7ae2-41da-bb5e-6c31ba8f37d1","_postman_id":"0904ca12-7ae2-41da-bb5e-6c31ba8f37d1","description":""}],"id":"2d533a83-432e-477e-b5cf-0faea619a54c","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> budget</code>,<code> buyer_user_id</code>,<code> catalog_item_id</code>,<code> comment</code>,<code> expediting_level</code>,<code> expeditor_user_id</code>,<code> id</code>,<code> inspection_level</code>,<code> item_type</code>,<code> line_number</code>,<code> metadata</code>,<code> offer_item_id</code>,<code> order_id</code>,<code> project_id</code>,<code> promised_by_date</code>,<code> quantity</code>,<code> required_by_date</code>,<code> status</code>,<code> subtotal</code>,<code> taxes_id</code>,<code> team_id</code>,<code> unit_price</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allocationsTo</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>associatedServicePlans</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientRepBusinessGroup</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>effectiveInvoiceLines</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expedite</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expeditorUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>finalInspectionRelease</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionReleaseItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionRequirementItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryReceptions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryReleases</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>invoiceLines</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>onReleaseAllocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>pendingAllocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitionItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>servicePlans</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>supplierRepBusinessGroup</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>service_plans_summary</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>usage_count</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2d533a83-432e-477e-b5cf-0faea619a54c"},{"name":"Orderable Documents","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_orderable_documents","id":"0aefa063-0246-4ae7-84d4-1626d58ca8ac","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_orderable_documents","description":"<p>Destroy multiple <code>OrderableDocument</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_orderable_documents"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0aefa063-0246-4ae7-84d4-1626d58ca8ac"}],"id":"7170f245-a781-49b7-9455-b54043ccf556","_postman_id":"7170f245-a781-49b7-9455-b54043ccf556","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_orderable_documents","id":"7ddbcbca-2205-4a7d-a28d-807c01c0ca8e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.team_id","value":null,"description":"<p>The data.<em>.team id field is required., The data.</em>.team id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.document_type_id","value":null,"description":"<p>The data.*.document type id field must be an integer.</p>\n","type":"text"},{"key":"data.*.orderable_type","value":null,"description":"<p>The data.<em>.orderable type field is required., The data.</em>.orderable type field must be a string., The data.*.orderable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"data.*.orderable_id","value":null,"description":"<p>The data.*.orderable id field is required.</p>\n","type":"text"},{"key":"data.*.orderable_document_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.orderable document id field must be an integer.</p>\n","type":"text"},{"key":"data.*.category","value":null,"description":"<p>The data.<em>.category field is required., The data.</em>.category field must be a string., The data.*.category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.identifier","value":null,"description":"<p>The data.<em>.identifier field is required., The data.</em>.identifier field must be a string., The data.*.identifier field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.name","value":null,"description":"<p>The data.<em>.name field is required., The data.</em>.name field must be a string., The data.*.name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.authentication_required","value":null,"description":"<p>The data.<em>.authentication required field is required., The data.</em>.authentication required field must be true or false.</p>\n","type":"text"},{"key":"data.*.submission_basis","value":null,"description":"<p>The data.<em>.submission basis field is required., The data.</em>.submission basis field must be a string., The data.*.submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.due_in_days","value":null,"description":"<p>The data.*.due in days field is required.</p>\n","type":"text"},{"key":"data.*.due_in_days_direction","value":null,"description":"<p>The data.*.due in days direction field is required.</p>\n","type":"text"},{"key":"data.*.type_of_submission","value":null,"description":"<p>The data.<em>.type of submission field is required., The data.</em>.type of submission field must be a string., The data.*.type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.format_of_submission","value":null,"description":"<p>The data.<em>.format of submission field is required., The data.</em>.format of submission field must be a string., The data.*.format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.baseline_date","value":null,"description":"<p>(Nullable), The data.*.baseline date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.original_due_date","value":null,"description":"<p>(Nullable), The data.*.original due date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.due_date","value":null,"description":"<p>(Nullable), The data.*.due date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.received_date","value":null,"description":"<p>(Nullable), The data.*.received date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.is_complete","value":null,"description":"<p>The data.<em>.is complete field is required., The data.</em>.is complete field must be true or false.</p>\n","type":"text"},{"key":"data.*.is_cancelled","value":null,"description":"<p>The data.<em>.is cancelled field is required., The data.</em>.is cancelled field must be true or false.</p>\n","type":"text"},{"key":"data.*.external_reference","value":null,"description":"<p>(Nullable), The data.<em>.external reference field must be a string., The data.</em>.external reference field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"data.*.comment.submission","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.submission field must be a string., The data.</em>.comment.submission field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_orderable_documents","description":"<p>Store multiple <code>OrderableDocument</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_orderable_documents"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ddbcbca-2205-4a7d-a28d-807c01c0ca8e"}],"id":"88a13fb3-12ae-4bbc-9435-83f4383af069","_postman_id":"88a13fb3-12ae-4bbc-9435-83f4383af069","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_orderable_documents","id":"a436f70d-2019-4ab7-92cf-82319012ac95","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.team_id","value":null,"description":"<p>(Optional), The data.*.team id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.document_type_id","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"data.*.orderable_type","value":null,"description":"<p>(Optional), The data.<em>.orderable type field must be a string., The data.</em>.orderable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"data.*.orderable_id","value":null,"description":"<p>(Optional), The data.*.orderable id field must be an integer.</p>\n","type":"text"},{"key":"data.*.orderable_document_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.orderable document id field must be an integer.</p>\n","type":"text"},{"key":"data.*.category","value":null,"description":"<p>(Optional), The data.<em>.category field must be a string., The data.</em>.category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.identifier","value":null,"description":"<p>(Optional), The data.<em>.identifier field must be a string., The data.</em>.identifier field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.name","value":null,"description":"<p>(Optional), The data.<em>.name field must be a string., The data.</em>.name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.authentication_required","value":null,"description":"<p>(Optional), The data.*.authentication required field must be true or false.</p>\n","type":"text"},{"key":"data.*.submission_basis","value":null,"description":"<p>(Optional), The data.<em>.submission basis field must be a string., The data.</em>.submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.due_in_days","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"data.*.due_in_days_direction","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"data.*.type_of_submission","value":null,"description":"<p>(Optional), The data.<em>.type of submission field must be a string., The data.</em>.type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.format_of_submission","value":null,"description":"<p>(Optional), The data.<em>.format of submission field must be a string., The data.</em>.format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.baseline_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.baseline date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.original_due_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.original due date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.due_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.due date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.received_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.received date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.is_complete","value":null,"description":"<p>(Optional), The data.*.is complete field must be true or false.</p>\n","type":"text"},{"key":"data.*.is_cancelled","value":null,"description":"<p>(Optional), The data.*.is cancelled field must be true or false.</p>\n","type":"text"},{"key":"data.*.external_reference","value":null,"description":"<p>(Nullable), The data.<em>.external reference field must be a string., The data.</em>.external reference field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"data.*.comment.submission","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.submission field must be a string., The data.</em>.comment.submission field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_orderable_documents","description":"<p>Update multiple <code>OrderableDocument</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_orderable_documents"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a436f70d-2019-4ab7-92cf-82319012ac95"}],"id":"64384a9a-f88b-4577-9a93-8a516cb95051","_postman_id":"64384a9a-f88b-4577-9a93-8a516cb95051","description":""},{"name":"Children And Parent Index","item":[{"name":"api/v1/children_and_parent/orderable_documents/{entity_type}/{entity_id}","id":"7dfdb966-10f6-429d-93a5-900181112ba5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/children_and_parent/orderable_documents/:entity_type/:entity_id","description":"<p>List the <code>OrderableDocuments</code> attached to children of an entity and itself.</p>\n","urlObject":{"path":["api","v1","children_and_parent","orderable_documents",":entity_type",":entity_id"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"entity_type"},{"type":"any","key":"entity_id"}]}},"response":[],"_postman_id":"7dfdb966-10f6-429d-93a5-900181112ba5"}],"id":"795d0c01-2fe0-46c9-abb3-d90a00029f50","_postman_id":"795d0c01-2fe0-46c9-abb3-d90a00029f50","description":""},{"name":"Children Index","item":[{"name":"api/v1/children/orderable_documents/{entity_type}/{entity_id}","id":"ef217ad5-2349-49f0-b196-22ffbec1393f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/children/orderable_documents/:entity_type/:entity_id","description":"<p>List the <code>OrderableDocuments</code> attached to children of an entity.</p>\n","urlObject":{"path":["api","v1","children","orderable_documents",":entity_type",":entity_id"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"entity_type"},{"type":"any","key":"entity_id"}]}},"response":[],"_postman_id":"ef217ad5-2349-49f0-b196-22ffbec1393f"}],"id":"039fc6f5-29f5-422a-abfa-5c6025492d24","_postman_id":"039fc6f5-29f5-422a-abfa-5c6025492d24","description":""},{"name":"Destroy","item":[{"name":"api/v1/orderable_documents/{orderable_document}","id":"825ad764-180e-4419-9a2e-fee46a22d55a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_documents/:orderable_document","description":"<p>Remove the specified <code>OrderableDocument</code> from storage.</p>\n","urlObject":{"path":["api","v1","orderable_documents",":orderable_document"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_document"}]}},"response":[],"_postman_id":"825ad764-180e-4419-9a2e-fee46a22d55a"}],"id":"81312bb2-72cc-45af-b6b2-d308a534d4a2","_postman_id":"81312bb2-72cc-45af-b6b2-d308a534d4a2","description":""},{"name":"Index","item":[{"name":"api/v1/orderable_documents","id":"dbc0e078-d7f8-4e1f-a6aa-aa38c7ffcb4d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_documents","description":"<p>Returns a list of multiple <code>OrderableDocument</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","orderable_documents"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"dbc0e078-d7f8-4e1f-a6aa-aa38c7ffcb4d"}],"id":"e9ac3544-2f87-4844-a8cc-eea43ac9a4c3","_postman_id":"e9ac3544-2f87-4844-a8cc-eea43ac9a4c3","description":""},{"name":"Show","item":[{"name":"api/v1/orderable_documents/{orderable_document}","id":"566c9fa3-ad64-42ce-82da-cf35a42c765b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_documents/:orderable_document","description":"<p>Display the specified <code>OrderableDocument</code>.</p>\n","urlObject":{"path":["api","v1","orderable_documents",":orderable_document"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_document"}]}},"response":[],"_postman_id":"566c9fa3-ad64-42ce-82da-cf35a42c765b"}],"id":"ee471f39-450d-49c1-9a4f-abd216806377","_postman_id":"ee471f39-450d-49c1-9a4f-abd216806377","description":""},{"name":"Store","item":[{"name":"api/v1/orderable_documents","id":"f0f3a5fd-c8d0-483e-8cae-84a8a373c370","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"team_id","value":null,"description":"<p>The team id field is required., The team id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"document_type_id","value":null,"description":"<p>The document type id field must be an integer.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>The orderable type field is required., The orderable type field must be a string., The orderable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>The orderable id field is required.</p>\n","type":"text"},{"key":"orderable_document_id","value":null,"description":"<p>(Optional), (Nullable), The orderable document id field must be an integer.</p>\n","type":"text"},{"key":"category","value":null,"description":"<p>The category field is required., The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"authentication_required","value":null,"description":"<p>The authentication required field is required., The authentication required field must be true or false.</p>\n","type":"text"},{"key":"submission_basis","value":null,"description":"<p>The submission basis field is required., The submission basis field must be a string., The submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"due_in_days","value":null,"description":"<p>The due in days field is required.</p>\n","type":"text"},{"key":"due_in_days_direction","value":null,"description":"<p>The due in days direction field is required.</p>\n","type":"text"},{"key":"type_of_submission","value":null,"description":"<p>The type of submission field is required., The type of submission field must be a string., The type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"format_of_submission","value":null,"description":"<p>The format of submission field is required., The format of submission field must be a string., The format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"baseline_date","value":null,"description":"<p>(Nullable), The baseline date field must be a valid date.</p>\n","type":"text"},{"key":"original_due_date","value":null,"description":"<p>(Nullable), The original due date field must be a valid date.</p>\n","type":"text"},{"key":"due_date","value":null,"description":"<p>(Nullable), The due date field must be a valid date.</p>\n","type":"text"},{"key":"received_date","value":null,"description":"<p>(Nullable), The received date field must be a valid date.</p>\n","type":"text"},{"key":"is_complete","value":null,"description":"<p>The is complete field is required., The is complete field must be true or false.</p>\n","type":"text"},{"key":"is_cancelled","value":null,"description":"<p>The is cancelled field is required., The is cancelled field must be true or false.</p>\n","type":"text"},{"key":"external_reference","value":null,"description":"<p>(Nullable), The external reference field must be a string., The external reference field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"comment.submission","value":null,"description":"<p>(Optional), (Nullable), The comment.submission field must be a string., The comment.submission field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_documents","description":"<p>Create a new <code>OrderableDocument</code> object.</p>\n","urlObject":{"path":["api","v1","orderable_documents"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0f3a5fd-c8d0-483e-8cae-84a8a373c370"}],"id":"a57c8089-c6aa-45fb-88b3-94497632ff49","_postman_id":"a57c8089-c6aa-45fb-88b3-94497632ff49","description":""},{"name":"Update","item":[{"name":"api/v1/orderable_documents/{orderable_document}","id":"c7fe9464-3cc5-426a-9de5-649939d1e566","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"team_id","value":null,"description":"<p>(Optional), The team id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"document_type_id","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>(Optional), The orderable type field must be a string., The orderable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>(Optional), The orderable id field must be an integer.</p>\n","type":"text"},{"key":"orderable_document_id","value":null,"description":"<p>(Optional), (Nullable), The orderable document id field must be an integer.</p>\n","type":"text"},{"key":"category","value":null,"description":"<p>(Optional), The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>(Optional), The identifier field must be a string., The identifier field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"authentication_required","value":null,"description":"<p>(Optional), The authentication required field must be true or false.</p>\n","type":"text"},{"key":"submission_basis","value":null,"description":"<p>(Optional), The submission basis field must be a string., The submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"due_in_days","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"due_in_days_direction","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"type_of_submission","value":null,"description":"<p>(Optional), The type of submission field must be a string., The type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"format_of_submission","value":null,"description":"<p>(Optional), The format of submission field must be a string., The format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"baseline_date","value":null,"description":"<p>(Optional), (Nullable), The baseline date field must be a valid date.</p>\n","type":"text"},{"key":"original_due_date","value":null,"description":"<p>(Optional), (Nullable), The original due date field must be a valid date.</p>\n","type":"text"},{"key":"due_date","value":null,"description":"<p>(Optional), (Nullable), The due date field must be a valid date.</p>\n","type":"text"},{"key":"received_date","value":null,"description":"<p>(Optional), (Nullable), The received date field must be a valid date.</p>\n","type":"text"},{"key":"is_complete","value":null,"description":"<p>(Optional), The is complete field must be true or false.</p>\n","type":"text"},{"key":"is_cancelled","value":null,"description":"<p>(Optional), The is cancelled field must be true or false.</p>\n","type":"text"},{"key":"external_reference","value":null,"description":"<p>(Nullable), The external reference field must be a string., The external reference field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"comment.submission","value":null,"description":"<p>(Optional), (Nullable), The comment.submission field must be a string., The comment.submission field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_documents/:orderable_document","description":"<p>Update the specified <code>OrderableDocument</code> .</p>\n","urlObject":{"path":["api","v1","orderable_documents",":orderable_document"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_document"}]}},"response":[],"_postman_id":"c7fe9464-3cc5-426a-9de5-649939d1e566"},{"name":"api/v1/orderable_documents/{orderable_document}","id":"78fc0898-a964-436b-885d-bb9f2e526e49","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"team_id","value":null,"description":"<p>(Optional), The team id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"document_type_id","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>(Optional), The orderable type field must be a string., The orderable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>(Optional), The orderable id field must be an integer.</p>\n","type":"text"},{"key":"orderable_document_id","value":null,"description":"<p>(Optional), (Nullable), The orderable document id field must be an integer.</p>\n","type":"text"},{"key":"category","value":null,"description":"<p>(Optional), The category field must be a string., The category field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>(Optional), The identifier field must be a string., The identifier field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"authentication_required","value":null,"description":"<p>(Optional), The authentication required field must be true or false.</p>\n","type":"text"},{"key":"submission_basis","value":null,"description":"<p>(Optional), The submission basis field must be a string., The submission basis field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"due_in_days","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"due_in_days_direction","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"type_of_submission","value":null,"description":"<p>(Optional), The type of submission field must be a string., The type of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"format_of_submission","value":null,"description":"<p>(Optional), The format of submission field must be a string., The format of submission field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"baseline_date","value":null,"description":"<p>(Optional), (Nullable), The baseline date field must be a valid date.</p>\n","type":"text"},{"key":"original_due_date","value":null,"description":"<p>(Optional), (Nullable), The original due date field must be a valid date.</p>\n","type":"text"},{"key":"due_date","value":null,"description":"<p>(Optional), (Nullable), The due date field must be a valid date.</p>\n","type":"text"},{"key":"received_date","value":null,"description":"<p>(Optional), (Nullable), The received date field must be a valid date.</p>\n","type":"text"},{"key":"is_complete","value":null,"description":"<p>(Optional), The is complete field must be true or false.</p>\n","type":"text"},{"key":"is_cancelled","value":null,"description":"<p>(Optional), The is cancelled field must be true or false.</p>\n","type":"text"},{"key":"external_reference","value":null,"description":"<p>(Nullable), The external reference field must be a string., The external reference field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"comment.submission","value":null,"description":"<p>(Optional), (Nullable), The comment.submission field must be a string., The comment.submission field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_documents/:orderable_document","description":"<p>Update the specified <code>OrderableDocument</code> .</p>\n","urlObject":{"path":["api","v1","orderable_documents",":orderable_document"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_document"}]}},"response":[],"_postman_id":"78fc0898-a964-436b-885d-bb9f2e526e49"}],"id":"2a323c0d-34ce-4191-b7a4-ccf8958b1c73","_postman_id":"2a323c0d-34ce-4191-b7a4-ccf8958b1c73","description":""}],"id":"3f459922-99bd-4051-8ea8-e48757053a4a","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> authentication_required</code>,<code> baseline_date</code>,<code> category</code>,<code> document_type_id</code>,<code> due_date</code>,<code> due_in_days</code>,<code> external_reference</code>,<code> format_of_submission</code>,<code> identifier</code>,<code> is_cancelled</code>,<code> is_complete</code>,<code> metadata</code>,<code> name</code>,<code> orderable_id</code>,<code> orderable_type</code>,<code> original_due_date</code>,<code> project_id</code>,<code> received_date</code>,<code> submission_basis</code>,<code> team_id</code>,<code> type_of_submission</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>documentType</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3f459922-99bd-4051-8ea8-e48757053a4a"},{"name":"Orderable Locations","item":[{"name":"Destroy","item":[{"name":"api/v1/orderable_locations/{orderable_location}","id":"7c6e1119-5a68-4866-b8cb-dfa73f00b7c5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_locations/:orderable_location","description":"<p>Remove the specified <code>OrderableLocation</code> from storage.</p>\n","urlObject":{"path":["api","v1","orderable_locations",":orderable_location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_location"}]}},"response":[],"_postman_id":"7c6e1119-5a68-4866-b8cb-dfa73f00b7c5"}],"id":"a9aa9e45-d591-4528-b1b7-ce7c79cb9b2c","_postman_id":"a9aa9e45-d591-4528-b1b7-ce7c79cb9b2c","description":""},{"name":"Index","item":[{"name":"api/v1/orderable_locations","id":"ef87052f-0bce-4c7a-a48d-925b205069dd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_locations","description":"<p>Returns a list of multiple <code>OrderableLocation</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","orderable_locations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef87052f-0bce-4c7a-a48d-925b205069dd"}],"id":"32d0f4b1-67a2-494c-9758-1cd77ae4bf24","_postman_id":"32d0f4b1-67a2-494c-9758-1cd77ae4bf24","description":""},{"name":"Show","item":[{"name":"api/v1/orderable_locations/{orderable_location}","id":"6a37fe5b-dc51-4937-bfb1-e41195bf4c81","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_locations/:orderable_location","description":"<p>Display the specified <code>OrderableLocation</code>.</p>\n","urlObject":{"path":["api","v1","orderable_locations",":orderable_location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_location"}]}},"response":[],"_postman_id":"6a37fe5b-dc51-4937-bfb1-e41195bf4c81"}],"id":"0a38c626-80e0-4f6d-aefc-9dd0587edecd","_postman_id":"0a38c626-80e0-4f6d-aefc-9dd0587edecd","description":""},{"name":"Store","item":[{"name":"api/v1/orderable_locations","id":"6d6dcb3c-e79e-46fc-bea9-9821ca76cdb0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"location_id","value":null,"description":"<p>(Nullable), The location id field must be an integer.</p>\n","type":"text"},{"key":"location_type_id","value":null,"description":"<p>The location type id field is required., The location type id field must be an integer., The location type id field must be at least 0., The location type id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>The orderable id field is required., The orderable id field must be an integer., The orderable id field must be at least 0., The orderable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>The orderable type field is required., The orderable type field must be a string., The orderable type field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_locations","description":"<p>Create a new <code>OrderableLocation</code> object.</p>\n","urlObject":{"path":["api","v1","orderable_locations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6d6dcb3c-e79e-46fc-bea9-9821ca76cdb0"}],"id":"5198a3a2-1c5b-4fd4-9bc3-c6801ca13804","_postman_id":"5198a3a2-1c5b-4fd4-9bc3-c6801ca13804","description":""},{"name":"Update","item":[{"name":"api/v1/orderable_locations/{orderable_location}","id":"72eae4b2-167c-4440-b95e-aee400ccf29d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"location_id","value":null,"description":"<p>(Optional), (Nullable), The location id field must be an integer.</p>\n","type":"text"},{"key":"location_type_id","value":null,"description":"<p>(Optional), The location type id field must be an integer., The location type id field must be at least 0., The location type id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>(Optional), The orderable id field must be an integer., The orderable id field must be at least 0., The orderable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>(Optional), The orderable type field must be a string., The orderable type field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_locations/:orderable_location","description":"<p>Update the specified <code>OrderableLocation</code> .</p>\n","urlObject":{"path":["api","v1","orderable_locations",":orderable_location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_location"}]}},"response":[],"_postman_id":"72eae4b2-167c-4440-b95e-aee400ccf29d"},{"name":"api/v1/orderable_locations/{orderable_location}","id":"b7071956-5a35-43db-b32a-c300315bde60","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"location_id","value":null,"description":"<p>(Optional), (Nullable), The location id field must be an integer.</p>\n","type":"text"},{"key":"location_type_id","value":null,"description":"<p>(Optional), The location type id field must be an integer., The location type id field must be at least 0., The location type id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>(Optional), The orderable id field must be an integer., The orderable id field must be at least 0., The orderable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>(Optional), The orderable type field must be a string., The orderable type field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_locations/:orderable_location","description":"<p>Update the specified <code>OrderableLocation</code> .</p>\n","urlObject":{"path":["api","v1","orderable_locations",":orderable_location"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_location"}]}},"response":[],"_postman_id":"b7071956-5a35-43db-b32a-c300315bde60"}],"id":"16c476f9-5300-4ffb-8728-22573ee54647","_postman_id":"16c476f9-5300-4ffb-8728-22573ee54647","description":""}],"id":"08c84955-6cf5-4bc7-a4ad-41831d30db57","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> location_id</code>,<code> location_type_id</code>,<code> metadata</code>,<code> orderable_id</code>,<code> orderable_type</code>,<code> project_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>location</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>locationType</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"08c84955-6cf5-4bc7-a4ad-41831d30db57"},{"name":"Orderable Revision Histories","item":[{"name":"Destroy","item":[{"name":"api/v1/orderable_revision_histories/{orderable_revision_history}","id":"b7dd6378-2eba-4c1c-b900-7149d0b773d7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_revision_histories/:orderable_revision_history","description":"<p>Remove the specified OrderableRevisionHistory from storage. DELETE /orderableRevisionHistories/{id}.</p>\n","urlObject":{"path":["api","v1","orderable_revision_histories",":orderable_revision_history"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_revision_history"}]}},"response":[],"_postman_id":"b7dd6378-2eba-4c1c-b900-7149d0b773d7"}],"id":"def7888e-4f90-471e-aa35-f6449195d799","_postman_id":"def7888e-4f90-471e-aa35-f6449195d799","description":""},{"name":"Index","item":[{"name":"api/v1/orderable_revision_histories","id":"1451ae8c-0b43-4a10-b0aa-b2fda5979ac3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_revision_histories","description":"<p>Display a listing of the OrderableRevisionHistory. GET|HEAD /orderableRevisionHistories.</p>\n","urlObject":{"path":["api","v1","orderable_revision_histories"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1451ae8c-0b43-4a10-b0aa-b2fda5979ac3"}],"id":"68099084-5f52-460e-9eea-3b17da0280f9","_postman_id":"68099084-5f52-460e-9eea-3b17da0280f9","description":""},{"name":"Show","item":[{"name":"api/v1/orderable_revision_histories/{orderable_revision_history}","id":"a9b429fa-ab25-433e-9920-7656969d073e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable_revision_histories/:orderable_revision_history","description":"<p>Display the specified OrderableRevisionHistory. GET|HEAD /orderableRevisionHistories/{id}.</p>\n","urlObject":{"path":["api","v1","orderable_revision_histories",":orderable_revision_history"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_revision_history"}]}},"response":[],"_postman_id":"a9b429fa-ab25-433e-9920-7656969d073e"}],"id":"5c6f5d0b-907e-4ee0-8699-7de416e652b8","_postman_id":"5c6f5d0b-907e-4ee0-8699-7de416e652b8","description":""},{"name":"Store","item":[{"name":"api/v1/orderable_revision_histories","id":"69bf3260-f928-4b75-bc3a-770d72c26b79","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>The orderable type field is required., The orderable type field must be a string., The orderable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>The orderable id field is required., The orderable id field must be an integer.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>The revision field is required., The revision field must be an integer.</p>\n","type":"text"},{"key":"soft_revision","value":null,"description":"<p>(Nullable), The soft revision field must be a string., The soft revision field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_hard","value":null,"description":"<p>The is hard field is required., The is hard field must be true or false.</p>\n","type":"text"},{"key":"comments","value":null,"description":"<p>The comments field is required., The comments field must be a string., The comments field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_revision_histories","description":"<p>Store a newly created OrderableRevisionHistory . POST /orderableRevisionHistories.</p>\n","urlObject":{"path":["api","v1","orderable_revision_histories"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"69bf3260-f928-4b75-bc3a-770d72c26b79"}],"id":"2bb8a124-58fb-4345-9130-0946af79d86f","_postman_id":"2bb8a124-58fb-4345-9130-0946af79d86f","description":""},{"name":"Update","item":[{"name":"api/v1/orderable_revision_histories/{orderable_revision_history}","id":"3316f269-e0eb-4184-b3d6-c253014654c8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>The orderable type field is required., The orderable type field must be a string., The orderable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>The orderable id field is required., The orderable id field must be an integer.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>The revision field is required., The revision field must be an integer.</p>\n","type":"text"},{"key":"soft_revision","value":null,"description":"<p>(Nullable), The soft revision field must be a string., The soft revision field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_hard","value":null,"description":"<p>The is hard field is required., The is hard field must be true or false.</p>\n","type":"text"},{"key":"comments","value":null,"description":"<p>The comments field is required., The comments field must be a string., The comments field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_revision_histories/:orderable_revision_history","description":"<p>Update the specified OrderableRevisionHistory . PUT/PATCH /orderableRevisionHistories/{id}.</p>\n","urlObject":{"path":["api","v1","orderable_revision_histories",":orderable_revision_history"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_revision_history"}]}},"response":[],"_postman_id":"3316f269-e0eb-4184-b3d6-c253014654c8"},{"name":"api/v1/orderable_revision_histories/{orderable_revision_history}","id":"72cb86d8-dc88-4156-8415-4864c88fedca","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>The orderable type field is required., The orderable type field must be a string., The orderable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>The orderable id field is required., The orderable id field must be an integer.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>The revision field is required., The revision field must be an integer.</p>\n","type":"text"},{"key":"soft_revision","value":null,"description":"<p>(Nullable), The soft revision field must be a string., The soft revision field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"is_hard","value":null,"description":"<p>The is hard field is required., The is hard field must be true or false.</p>\n","type":"text"},{"key":"comments","value":null,"description":"<p>The comments field is required., The comments field must be a string., The comments field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orderable_revision_histories/:orderable_revision_history","description":"<p>Update the specified OrderableRevisionHistory . PUT/PATCH /orderableRevisionHistories/{id}.</p>\n","urlObject":{"path":["api","v1","orderable_revision_histories",":orderable_revision_history"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderable_revision_history"}]}},"response":[],"_postman_id":"72cb86d8-dc88-4156-8415-4864c88fedca"}],"id":"081e184d-a448-4db0-805b-4d15859e6c90","_postman_id":"081e184d-a448-4db0-805b-4d15859e6c90","description":""}],"id":"7d2b98b5-3f50-42ed-ba09-08bb648e7a08","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> comments</code>,<code> is_hard</code>,<code> orderable_id</code>,<code> orderable_type</code>,<code> revision</code>,<code> soft_revision</code>,<code> team_id</code>,</p>\n","_postman_id":"7d2b98b5-3f50-42ed-ba09-08bb648e7a08"},{"name":"Orderables","item":[{"name":"Create Chain","item":[{"name":"api/v1/orderable/createchain","id":"04b5049c-96bd-4a61-8330-2cf36a450031","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orderable/createchain","description":"<p>Creates new linked <code>Requisition</code>, <code>Bid</code>, and <code>Order</code> Objects. This endpoint is used when creating an Order chain within a Project Scaffold.</p>\n","urlObject":{"path":["api","v1","orderable","createchain"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"04b5049c-96bd-4a61-8330-2cf36a450031"}],"id":"5ceb611a-899e-406d-8c2b-32dedd4173ff","_postman_id":"5ceb611a-899e-406d-8c2b-32dedd4173ff","description":""},{"name":"Search","item":[{"name":"api/v1/search/transactions","id":"d7eff935-23ce-4062-94bc-f83acc8ff570","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"search","value":null,"description":"<p>The search field is required., The search field must be a string., The search field must be at least 3 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/search/transactions","urlObject":{"path":["api","v1","search","transactions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7eff935-23ce-4062-94bc-f83acc8ff570"}],"id":"a6aa2ef9-2ec4-4ef6-bbe9-4d2ceab96d7f","_postman_id":"a6aa2ef9-2ec4-4ef6-bbe9-4d2ceab96d7f","description":""}],"id":"f191cb5c-db18-48fd-8803-7cb16c01370c","_postman_id":"f191cb5c-db18-48fd-8803-7cb16c01370c","description":""},{"name":"Orders","item":[{"name":"Allocation Status","item":[{"name":"api/v1/orders/{order}/allocation_status","id":"b66daa47-68c5-4750-bdb8-7cf690f38c86","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/allocation_status","description":"<p>Returns a summary of the status of <code>Allocations</code> in the context of a specified <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","allocation_status"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"b66daa47-68c5-4750-bdb8-7cf690f38c86"}],"id":"feda315d-8b5a-462a-826f-7f9586270080","_postman_id":"feda315d-8b5a-462a-826f-7f9586270080","description":""},{"name":"Check Ready For Purchased","item":[{"name":"api/v1/orders/{order}/readyforpurchase","id":"24ae8c2c-3140-4f65-ba48-272317b22def","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/readyforpurchase","description":"<p>Checks if an <code>Order</code> can be converted to a <code>PurchaseOrder</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","readyforpurchase"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"24ae8c2c-3140-4f65-ba48-272317b22def"}],"id":"fa011335-bfca-4d25-8243-44f1993c0e0b","_postman_id":"fa011335-bfca-4d25-8243-44f1993c0e0b","description":""},{"name":"Check Ready For Purchased Detailed","item":[{"name":"api/v1/orders/{order}/readyforpurchasedetailed","id":"6e13efac-0dc3-417c-bd36-15dbd129ca5d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/readyforpurchasedetailed","description":"<p>Checks if an <code>Order</code> can be converted to a <code>PurchaseOrder</code> with detailed explanation.</p>\n","urlObject":{"path":["api","v1","orders",":order","readyforpurchasedetailed"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"6e13efac-0dc3-417c-bd36-15dbd129ca5d"}],"id":"5d956690-1903-4a14-a22d-7d1f1d92fd4b","_postman_id":"5d956690-1903-4a14-a22d-7d1f1d92fd4b","description":""},{"name":"Compare Order Revisions","item":[{"name":"api/v1/orders/{order}/comparerevisions/{rev_a}/{rev_b?}","id":"db3af920-51d6-4a42-b4d4-5f1ddf9cb91d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/comparerevisions/:rev_a/{rev_b?}","description":"<p>Returns a detailed listing of differences between a specified <code>Order</code> and a specified <code>PurchaseOrder</code> revision.</p>\n","urlObject":{"path":["api","v1","orders",":order","comparerevisions",":rev_a","{rev_b"],"host":["https://app.currentscm.com/"],"query":[{"key":"}","value":null}],"variable":[{"type":"any","key":"order"},{"type":"any","key":"rev_a"}]}},"response":[],"_postman_id":"db3af920-51d6-4a42-b4d4-5f1ddf9cb91d"}],"id":"84c53aea-9ba9-4af8-a0a8-7c857e3e23ad","_postman_id":"84c53aea-9ba9-4af8-a0a8-7c857e3e23ad","description":""},{"name":"Create Inspection Requirements","item":[{"name":"api/v1/orders/{order}/create_inspection_requirement","id":"7ab22615-cf6a-4173-bdd1-0c51fa21d5bf","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/create_inspection_requirement","description":"<p>Creates a single <code>InspectionRequirement</code> for the Order, each Purchase item will be defined in the requirement individually.</p>\n","urlObject":{"path":["api","v1","orders",":order","create_inspection_requirement"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"7ab22615-cf6a-4173-bdd1-0c51fa21d5bf"}],"id":"ca1d869f-6a3c-410d-9316-4b96822b0672","_postman_id":"ca1d869f-6a3c-410d-9316-4b96822b0672","description":""},{"name":"Create Invoice Milestones","item":[{"name":"api/v1/orders/{order}/milestone_invoicing_plan","id":"bad378fc-b815-4a83-b0ab-c4490325cf52","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"committed","value":null,"description":"<p>(Optional), The committed field must be true or false.</p>\n","type":"text"},{"key":"milestones","value":null,"description":"<p>The milestones field is required., The milestones field must be an array.</p>\n","type":"text"},{"key":"milestones.*.due_date","value":null,"description":"<p>The milestones.<em>.due date field is required., The milestones.</em>.due date field must be a valid date.</p>\n","type":"text"},{"key":"milestones.*.percentage","value":null,"description":"<p>The milestones.<em>.percentage field is required., The milestones.</em>.percentage field must have 0-4 decimal places.</p>\n","type":"text"},{"key":"milestones.*.description","value":null,"description":"<p>(Nullable), The milestones.<em>.description field must be a string., The milestones.</em>.description field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders/:order/milestone_invoicing_plan","description":"<p>Scaffold a milestone invoicing plan for a specified <code>Order</code> to facilitate cashflow reporting and communication.</p>\n","urlObject":{"path":["api","v1","orders",":order","milestone_invoicing_plan"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"bad378fc-b815-4a83-b0ab-c4490325cf52"}],"id":"bc68b179-4f67-4b08-a609-eda2da43da92","_postman_id":"bc68b179-4f67-4b08-a609-eda2da43da92","description":""},{"name":"Create Order From Offer","item":[{"name":"api/v1/orders/createfromoffer","id":"b97a573d-5859-4fa7-b742-e9edad2520e3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>(Optional), The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The type field must be a string., The type field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"recommended_items_only","value":null,"description":"<p>(Optional), The recommended items only field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders/createfromoffer","description":"<p>Process creates an <code>Order</code> from a specified <code>Offer</code> based on the provided configuration options.</p>\n","urlObject":{"path":["api","v1","orders","createfromoffer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b97a573d-5859-4fa7-b742-e9edad2520e3"}],"id":"b77216f8-e382-40b3-8e04-7fce48cad75e","_postman_id":"b77216f8-e382-40b3-8e04-7fce48cad75e","description":""},{"name":"Create Order From Order","item":[{"name":"api/v1/orders/createfromorder","id":"beac5941-5821-4153-b854-2668cc3e52f2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/createfromorder","description":"<p>Create a new <code>Order</code> based off a an <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","orders","createfromorder"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"beac5941-5821-4153-b854-2668cc3e52f2"}],"id":"604a7f1c-a06e-43f9-baca-236216aca732","_postman_id":"604a7f1c-a06e-43f9-baca-236216aca732","description":""},{"name":"Create Order From Requisition","item":[{"name":"api/v1/orders/createfromrequisition","id":"e4f123fc-6b58-42f9-88e7-8568a74058c5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/createfromrequisition","description":"<p>Process creates an <code>Order</code> from a specified <code>Requisition</code> based on the provided configuration options.</p>\n","urlObject":{"path":["api","v1","orders","createfromrequisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4f123fc-6b58-42f9-88e7-8568a74058c5"}],"id":"100e9ee9-5de3-47d4-807b-72505f699290","_postman_id":"100e9ee9-5de3-47d4-807b-72505f699290","description":""},{"name":"Create Purchase Order","item":[{"name":"api/v1/orders/{order}/createpurchaseorder","id":"26ceb2c3-a434-4b35-ac9a-b6e9be89dea5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/createpurchaseorder","description":"<p>Checks if an <code>Order</code> can be converted to a <code>PurchaseOrder</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","createpurchaseorder"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"26ceb2c3-a434-4b35-ac9a-b6e9be89dea5"}],"id":"c4f72c7a-79e2-496c-b01d-b7423077c399","_postman_id":"c4f72c7a-79e2-496c-b01d-b7423077c399","description":""},{"name":"Destroy","item":[{"name":"api/v1/orders/{order}","id":"e84ea28f-ad29-4292-9105-83c7fdf774db","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order","description":"<p>Remove the specified <code>Order</code> from storage.</p>\n","urlObject":{"path":["api","v1","orders",":order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"e84ea28f-ad29-4292-9105-83c7fdf774db"}],"id":"11c83dc6-887d-41cc-be70-8b7193cba564","_postman_id":"11c83dc6-887d-41cc-be70-8b7193cba564","description":""},{"name":"Fill Bom From Offer","item":[{"name":"api/v1/orders/{order}/fillfromoffer","id":"7cd5ccd2-e2c2-4659-bf06-738e2f77b083","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>(Optional), The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"bom_options.delete_existing","value":null,"description":"<p>The bom options.delete existing field is required when import bom is empty., The bom options.delete existing field must be true or false.</p>\n","type":"text"},{"key":"recommended_items_only","value":null,"description":"<p>(Optional), The recommended items only field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders/:order/fillfromoffer","description":"<p>Process fills and <code>Order</code>'s data with selected data from an <code>Offer</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","fillfromoffer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"7cd5ccd2-e2c2-4659-bf06-738e2f77b083"}],"id":"13e088f4-a6f4-48ea-8314-75fc3dfc9b6e","_postman_id":"13e088f4-a6f4-48ea-8314-75fc3dfc9b6e","description":""},{"name":"Fill Order From Order","item":[{"name":"api/v1/orders/{order}/fillfromorder","id":"cbbff338-14fb-488b-8895-9bd8625ac1ff","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>(Optional), The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"bom_options.delete_existing","value":null,"description":"<p>The bom options.delete existing field is required when import bom is empty., The bom options.delete existing field must be true or false.</p>\n","type":"text"},{"key":"recommended_items_only","value":null,"description":"<p>(Optional), The recommended items only field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders/:order/fillfromorder","description":"<p>Update an existing <code>Order</code> with data from an existing specified <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","fillfromorder"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"cbbff338-14fb-488b-8895-9bd8625ac1ff"}],"id":"c54f33cc-8983-489e-8390-3ff209e60c9d","_postman_id":"c54f33cc-8983-489e-8390-3ff209e60c9d","description":""},{"name":"Fill Order From Requisition","item":[{"name":"api/v1/orders/{order}/fillfromrequisition","id":"a1a50e71-0f59-4fb3-aac3-1afdf5da05e8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>(Optional), The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"bom_options.delete_existing","value":null,"description":"<p>The bom options.delete existing field is required when import bom is empty., The bom options.delete existing field must be true or false.</p>\n","type":"text"},{"key":"recommended_items_only","value":null,"description":"<p>(Optional), The recommended items only field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders/:order/fillfromrequisition","description":"<p>Process fills and <code>Order</code>'s data with selected data from an <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","fillfromrequisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"a1a50e71-0f59-4fb3-aac3-1afdf5da05e8"}],"id":"cd2ea845-5812-4232-9a36-39b510385e8b","_postman_id":"cd2ea845-5812-4232-9a36-39b510385e8b","description":""},{"name":"Fill Promised By Dates From Offer","item":[{"name":"api/v1/orders/{order}/fill_promised_by_dates_from_offer","id":"414d6618-4846-4d33-b4ab-0d0cdd83bdfc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders/:order/fill_promised_by_dates_from_offer","description":"<p>Updates the <code>promised_by_date</code> on all items attached to the specified <code>Order</code> by adding the <code>lead_time_in_days</code> to a specified <code>baseline_date</code> when the <code>lead_time_in_days</code> is set on the provided <code>offerItem</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","fill_promised_by_dates_from_offer"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"414d6618-4846-4d33-b4ab-0d0cdd83bdfc"}],"id":"6ef09810-c74e-49b4-9f34-3cacc4dbccc7","_postman_id":"6ef09810-c74e-49b4-9f34-3cacc4dbccc7","description":""},{"name":"Get Financial Summary","item":[{"name":"api/v1/orders/{order}/financial/{type}","id":"877c1cbc-6e95-4117-a7ef-212c04c79eee","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/financial/:type","description":"<p>Provides the financial summary of an <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","financial",":type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"},{"type":"any","key":"type"}]}},"response":[],"_postman_id":"877c1cbc-6e95-4117-a7ef-212c04c79eee"}],"id":"19ddbf3e-561c-4917-be61-1748efce4d77","_postman_id":"19ddbf3e-561c-4917-be61-1748efce4d77","description":""},{"name":"Index","item":[{"name":"api/v1/orders","id":"fb92268b-bfae-48ec-9c50-99174d509646","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders","description":"<p>Returns a list of multiple <code>Order</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","orders"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb92268b-bfae-48ec-9c50-99174d509646"}],"id":"4c6f83dc-1cdb-41d6-8eb9-20811921652c","_postman_id":"4c6f83dc-1cdb-41d6-8eb9-20811921652c","description":""},{"name":"Invoice Aggregation","item":[{"name":"api/v1/orders/{order}/invoice_aggregation","id":"86d99cfc-2e41-4af5-ba94-3862ef7a31b8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/invoice_aggregation","urlObject":{"path":["api","v1","orders",":order","invoice_aggregation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"86d99cfc-2e41-4af5-ba94-3862ef7a31b8"}],"id":"e0a5e06f-d39a-4842-bb47-10926d41a403","_postman_id":"e0a5e06f-d39a-4842-bb47-10926d41a403","description":""},{"name":"Invoice Summary","item":[{"name":"api/v1/orders/{order}/invoice_summary","id":"a1141d33-4927-4a49-a915-65d7db2db93b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/invoice_summary","description":"<p>Provides a summary by <code>OrderItem</code> showing the current status of invoicing, by showing the sum of <code>OrderInvoiceLines</code> associated with the item, and the valuation of current material receipts.</p>\n","urlObject":{"path":["api","v1","orders",":order","invoice_summary"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"a1141d33-4927-4a49-a915-65d7db2db93b"}],"id":"6a1e1a17-0e3b-4d55-ac62-d271769ff960","_postman_id":"6a1e1a17-0e3b-4d55-ac62-d271769ff960","description":""},{"name":"Potential Releases","item":[{"name":"api/v1/orders/{order}/potential_order_releases","id":"c9cb1669-719e-4cbd-96d2-3e5f76721b5d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/potential_order_releases","description":"<p>Generates a listing of Potential Release points grouped on common Origin, Destination and Expected Release Date.</p>\n","urlObject":{"path":["api","v1","orders",":order","potential_order_releases"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"c9cb1669-719e-4cbd-96d2-3e5f76721b5d"}],"id":"db9e782b-7f93-4722-99e5-7e9fbf996276","_postman_id":"db9e782b-7f93-4722-99e5-7e9fbf996276","description":""},{"name":"Reset Allocations","item":[{"name":"api/v1/orders/{order}/reset_allocations","id":"249e1147-a992-487d-afc3-b7e84d81b951","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/reset_allocations","description":"<p>Cancels all pending <code>Allocations</code> for the specified <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","reset_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"249e1147-a992-487d-afc3-b7e84d81b951"}],"id":"9206fffa-09f2-4d3e-be7e-8b6d88b0cd81","_postman_id":"9206fffa-09f2-4d3e-be7e-8b6d88b0cd81","description":""},{"name":"Select With Locations In Common","item":[{"name":"api/v1/orders/{order}/select_with_locations_in_common","id":"b5ad7019-7595-4cf3-8f1f-178cad0bcfca","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/select_with_locations_in_common","description":"<p>Returns a list of multiple <code>Order</code> objects based on optional criteria, and includes a flag indicating if the <code>Order</code> has locations in common with the specified <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","select_with_locations_in_common"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"b5ad7019-7595-4cf3-8f1f-178cad0bcfca"}],"id":"af737c60-2e01-43df-bdda-8e850785982c","_postman_id":"af737c60-2e01-43df-bdda-8e850785982c","description":""},{"name":"Show","item":[{"name":"api/v1/orders/{order}","id":"f0a89187-b0f3-4e28-840d-d6a181b6b5ef","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order","description":"<p>Display the specified <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"f0a89187-b0f3-4e28-840d-d6a181b6b5ef"}],"id":"a6d09c55-9698-4f2c-b16b-ad8e496a3b24","_postman_id":"a6d09c55-9698-4f2c-b16b-ad8e496a3b24","description":""},{"name":"Show Po Changes","item":[{"name":"api/v1/orders/{order}/purchaseorderchanges","id":"3b508ea2-8787-41d5-81b0-8f8030b588c8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/purchaseorderchanges","description":"<p>Returns a detailed listing of differences between a specified <code>Order</code> and the latest <code>PurchaseOrder</code> revision.</p>\n","urlObject":{"path":["api","v1","orders",":order","purchaseorderchanges"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"3b508ea2-8787-41d5-81b0-8f8030b588c8"}],"id":"87b0ae54-622e-47ab-9191-86286cba4d41","_postman_id":"87b0ae54-622e-47ab-9191-86286cba4d41","description":""},{"name":"Store","item":[{"name":"api/v1/orders","id":"b1fed89b-c84a-48a8-ba6b-d0663e7a6a4f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Nullable), The bid id field must be an integer.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"client_person_id","value":null,"description":"<p>(Nullable), The client person id field must be an integer.</p>\n","type":"text"},{"key":"contract_identifier","value":null,"description":"<p>(Nullable), The contract identifier field must be a string., The contract identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"critical_path","value":null,"description":"<p>(Optional), The critical path field must be true or false.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Nullable), The default taxes id field must be an integer., The default taxes id field must be at least 0., The default taxes id field must not be greater than 1.844674407371E+19.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable), The inspection business id field must be an integer.</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable), The inspection person id field must be an integer.</p>\n","type":"text"},{"key":"inspection_coordinator_user_id","value":null,"description":"<p>(Nullable), The inspection coordinator user id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata.*.*","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.</em> field must be a string., The metadata.<em>.</em> field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>(Nullable), The offer id field must be an integer.</p>\n","type":"text"},{"key":"order_identifier","value":null,"description":"<p>(Nullable), The order identifier field must be a string., The order identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_contact","value":null,"description":"<p>(Nullable), The order contact field must be a string., The selected order contact is invalid, it must exist in buyer_user, manager_user, responsible_engineer_user, client_person.</p>\n","type":"text"},{"key":"order_header","value":null,"description":"<p>(Nullable), The order header field must be an array.</p>\n","type":"text"},{"key":"order_type","value":null,"description":"<p>(Nullable), The order type field must be a string., The selected order type is invalid, it must exist in purchase_order, contract_release, service_order.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Nullable), The requisition id field must be an integer.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Nullable), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders","description":"<p>Create a new <code>Order</code> object.</p>\n","urlObject":{"path":["api","v1","orders"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1fed89b-c84a-48a8-ba6b-d0663e7a6a4f"}],"id":"6826e46c-e97f-4563-a560-a0ed9b1edac1","_postman_id":"6826e46c-e97f-4563-a560-a0ed9b1edac1","description":""},{"name":"Update","item":[{"name":"api/v1/orders/{order}","id":"cee13979-ecfc-43c4-9bf6-cbf848e1bbd1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Optional), (Nullable), The bid id field must be an integer.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"client_person_id","value":null,"description":"<p>(Optional), (Nullable), The client person id field must be an integer.</p>\n","type":"text"},{"key":"contract_identifier","value":null,"description":"<p>(Optional), (Nullable), The contract identifier field must be a string., The contract identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"critical_path","value":null,"description":"<p>(Optional), The critical path field must be true or false.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), (Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable), The inspection business id field must be an integer.</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable), The inspection person id field must be an integer.</p>\n","type":"text"},{"key":"inspection_coordinator_user_id","value":null,"description":"<p>(Nullable), The inspection coordinator user id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Optional), (Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata.*.*","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.</em> field must be a string., The metadata.<em>.</em> field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), (Nullable), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>(Optional), (Nullable), The offer id field must be an integer.</p>\n","type":"text"},{"key":"order_identifier","value":null,"description":"<p>(Optional), (Nullable), The order identifier field must be a string., The order identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"order_contact","value":null,"description":"<p>(Optional), (Nullable), The order contact field must be a string., The selected order contact is invalid, it must exist in buyer_user, manager_user, responsible_engineer_user, client_person.</p>\n","type":"text"},{"key":"order_header","value":null,"description":"<p>(Optional), (Nullable), The order header field must be an array.</p>\n","type":"text"},{"key":"order_type","value":null,"description":"<p>(Optional), The order type field must be a string., The selected order type is invalid, it must exist in purchase_order, contract_release, service_order.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Optional), (Nullable), The requisition id field must be an integer.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), (Nullable), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders/:order","description":"<p>Update the specified <code>Order</code> .</p>\n","urlObject":{"path":["api","v1","orders",":order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"cee13979-ecfc-43c4-9bf6-cbf848e1bbd1"},{"name":"api/v1/orders/{order}","id":"e4104ba3-6eae-4c58-af97-e253575c6979","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Optional), (Nullable), The bid id field must be an integer.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"client_person_id","value":null,"description":"<p>(Optional), (Nullable), The client person id field must be an integer.</p>\n","type":"text"},{"key":"contract_identifier","value":null,"description":"<p>(Optional), (Nullable), The contract identifier field must be a string., The contract identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"critical_path","value":null,"description":"<p>(Optional), The critical path field must be true or false.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), (Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable), The inspection business id field must be an integer.</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable), The inspection person id field must be an integer.</p>\n","type":"text"},{"key":"inspection_coordinator_user_id","value":null,"description":"<p>(Nullable), The inspection coordinator user id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Optional), (Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"metadata.*.*","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.</em> field must be a string., The metadata.<em>.</em> field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), (Nullable), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>(Optional), (Nullable), The offer id field must be an integer.</p>\n","type":"text"},{"key":"order_identifier","value":null,"description":"<p>(Optional), (Nullable), The order identifier field must be a string., The order identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"order_contact","value":null,"description":"<p>(Optional), (Nullable), The order contact field must be a string., The selected order contact is invalid, it must exist in buyer_user, manager_user, responsible_engineer_user, client_person.</p>\n","type":"text"},{"key":"order_header","value":null,"description":"<p>(Optional), (Nullable), The order header field must be an array.</p>\n","type":"text"},{"key":"order_type","value":null,"description":"<p>(Optional), The order type field must be a string., The selected order type is invalid, it must exist in purchase_order, contract_release, service_order.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Optional), (Nullable), The requisition id field must be an integer.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), (Nullable), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/orders/:order","description":"<p>Update the specified <code>Order</code> .</p>\n","urlObject":{"path":["api","v1","orders",":order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"e4104ba3-6eae-4c58-af97-e253575c6979"}],"id":"1e3d2366-2ef1-4a94-ba09-8ed402f49f31","_postman_id":"1e3d2366-2ef1-4a94-ba09-8ed402f49f31","description":""},{"name":"View Chain","item":[{"name":"api/v1/orders/{order}/chain","id":"9bbe811b-d749-401c-b9b2-741aa999a1fc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:order/chain","description":"<p>Returns the linked <code>Orderables</code> associated with a specified <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","orders",":order","chain"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"order"}]}},"response":[],"_postman_id":"9bbe811b-d749-401c-b9b2-741aa999a1fc"}],"id":"257a5934-b6de-4cc8-87f9-24400f29377a","_postman_id":"257a5934-b6de-4cc8-87f9-24400f29377a","description":""},{"name":"Api/V1/Orders/{Orderid}/Childrenandparentattachables","id":"60a6d652-7d81-495c-9e0c-0b11bd5f65a5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/orders/:orderId/childrenandparentattachables","urlObject":{"path":["api","v1","orders",":orderId","childrenandparentattachables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderId"}]}},"response":[],"_postman_id":"60a6d652-7d81-495c-9e0c-0b11bd5f65a5"}],"id":"9defda48-9745-46b4-9998-4a1512e11e89","description":"<p><code>Orders</code> represent a transaction to purchase goods, materials, or services.</p>\n<p><code>Orders</code> can take various types.</p>\n<p><code>Orders' occur in the context a specific </code>Project<code>. The purchasing organization of a specific</code>Order<code>is defined by the</code>Client<code>of that</code>Project`.</p>\n<p><code>Orders</code> have a number of tightly coupled related entities:</p>\n<ul>\n<li><code>OrderDocument</code></li>\n<li><code>OrderExpedites</code></li>\n<li><code>OrderInvoices</code></li>\n</ul>\n<p>Line level details are stored as <code>OrderItems</code></p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> buyer_user_id</code>,<code> critical_path</code>,<code> currency_code</code>,<code> default_taxes_id</code>,<code> expeditor_user_id</code>,<code> id</code>,<code> inspection_business_id</code>,<code> inspection_coordinator_user_id</code>,<code> inspection_person_id</code>,<code> metadata</code>,<code> order_identifier</code>,<code> project_id</code>,<code> status</code>,<code> team_id</code>,<code> vendor_business_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bid</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billingPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientSuppliedItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>defaultCostCode</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>defaultTax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>destination</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>documentRequirements</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>drawings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>evaluations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expedite</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expeditorUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fabricationPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>feedThroughItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>incoTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionActions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionCoordinatorUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionPerson</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionReleases</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionRequirements</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspections</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>invoices</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>managerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>materialAllocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>materialLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>openTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderDocument</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>origin</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>osds</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>overdueTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTeamRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>serviceReleases</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specifications</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storageAllocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storageLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storagePlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorSuppliedItems</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>chain_dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>committed_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>effective_exchange_rate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>financial_summary</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>invoiced_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>latest_promised_by_vendor</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>latest_receive_date</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>local_committed_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>local_current_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>planned_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>revision</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>subtotal</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9defda48-9745-46b4-9998-4a1512e11e89"},{"name":"Osds","item":[{"name":"Index","item":[{"name":"api/v1/osds","id":"4a92c2ca-eaec-45e4-a647-873ffadb0e30","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/osds","description":"<p>Display a listing of the Osd. GET|HEAD /osds.</p>\n","urlObject":{"path":["api","v1","osds"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a92c2ca-eaec-45e4-a647-873ffadb0e30"}],"id":"50d68d6e-fd5a-4ab8-800a-592caaac7f48","_postman_id":"50d68d6e-fd5a-4ab8-800a-592caaac7f48","description":""},{"name":"Show","item":[{"name":"api/v1/osds/{osd}","id":"2d6cec15-07ef-48cc-a60b-ba9143cf4a22","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/osds/:osd","description":"<p>Display the specified Osd. GET|HEAD /osds/{id}.</p>\n","urlObject":{"path":["api","v1","osds",":osd"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"osd"}]}},"response":[],"_postman_id":"2d6cec15-07ef-48cc-a60b-ba9143cf4a22"}],"id":"30638076-f837-4d10-8daf-a005a3e18028","_postman_id":"30638076-f837-4d10-8daf-a005a3e18028","description":""},{"name":"Touching Order","item":[{"name":"api/v1/osds/touching_order/{orderId}","id":"1f1c26a2-a06c-48ae-bb9e-526f13bd5a56","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/osds/touching_order/:orderId","description":"<p>Display a listing of the Osds touching a specific Order. GET|HEAD /orders/{orderId}/osds.</p>\n","urlObject":{"path":["api","v1","osds","touching_order",":orderId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderId"}]}},"response":[],"_postman_id":"1f1c26a2-a06c-48ae-bb9e-526f13bd5a56"}],"id":"87ef9d54-c6f0-48e6-b551-a6512b3f862b","_postman_id":"87ef9d54-c6f0-48e6-b551-a6512b3f862b","description":""}],"id":"0da8a9f3-2f75-4261-9e13-61a361fa45e0","_postman_id":"0da8a9f3-2f75-4261-9e13-61a361fa45e0","description":""},{"name":"Paymentterms","item":[{"name":"Destroy","item":[{"name":"api/v1/paymentterms/{paymentterm}","id":"ac32300e-504d-4c11-9e36-71273c242f5d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/paymentterms/:paymentterm","description":"<p>Remove the specified <code>Paymentterm</code> from storage.</p>\n","urlObject":{"path":["api","v1","paymentterms",":paymentterm"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"paymentterm"}]}},"response":[],"_postman_id":"ac32300e-504d-4c11-9e36-71273c242f5d"}],"id":"2c0a9919-a1dd-4921-b467-5c2737d8fa16","_postman_id":"2c0a9919-a1dd-4921-b467-5c2737d8fa16","description":""},{"name":"Index","item":[{"name":"api/v1/paymentterms","id":"4aaac9ea-c0a5-4ccf-8514-8a35b7acbf86","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/paymentterms","description":"<p>Returns a list of multiple <code>Paymentterm</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","paymentterms"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4aaac9ea-c0a5-4ccf-8514-8a35b7acbf86"}],"id":"7463defc-945c-4b21-83de-ab45f961c454","_postman_id":"7463defc-945c-4b21-83de-ab45f961c454","description":""},{"name":"Show","item":[{"name":"api/v1/paymentterms/{paymentterm}","id":"0e312997-a879-46f5-a915-bf188cb886d3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/paymentterms/:paymentterm","description":"<p>Display the specified <code>Paymentterm</code>.</p>\n","urlObject":{"path":["api","v1","paymentterms",":paymentterm"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"paymentterm"}]}},"response":[],"_postman_id":"0e312997-a879-46f5-a915-bf188cb886d3"}],"id":"5c8cfa24-53b3-4775-b68c-4dce7a844944","_postman_id":"5c8cfa24-53b3-4775-b68c-4dce7a844944","description":""},{"name":"Store","item":[{"name":"api/v1/paymentterms","id":"3780d845-c451-41ca-91bf-8f4883a091e0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"can_edit","value":null,"description":"<p>The can edit field is required., The can edit field must be true or false.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"due_days","value":null,"description":"<p>The due days field is required., The due days field must be an integer., The due days field must be at least -2147483649., The due days field must not be greater than 2147483647.</p>\n","type":"text"},{"key":"due_slug","value":null,"description":"<p>(Nullable), The due slug field must be a string., The due slug field must not be greater than 20 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/paymentterms","description":"<p>Create a new <code>Paymentterm</code> object.</p>\n","urlObject":{"path":["api","v1","paymentterms"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"3780d845-c451-41ca-91bf-8f4883a091e0"}],"id":"d2e15d24-978f-49fd-a4c7-47b8e0695f8f","_postman_id":"d2e15d24-978f-49fd-a4c7-47b8e0695f8f","description":""},{"name":"Update","item":[{"name":"api/v1/paymentterms/{paymentterm}","id":"87405045-2812-4ccf-bdb6-8a62e5f139f8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"can_edit","value":null,"description":"<p>The can edit field must be true or false.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"due_days","value":null,"description":"<p>The due days field must be an integer., The due days field must be at least -2147483649., The due days field must not be greater than 2147483647.</p>\n","type":"text"},{"key":"due_slug","value":null,"description":"<p>(Nullable), The due slug field must be a string., The due slug field must not be greater than 20 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field must be true or false.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/paymentterms/:paymentterm","description":"<p>Update the specified <code>Paymentterm</code> .</p>\n","urlObject":{"path":["api","v1","paymentterms",":paymentterm"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"paymentterm"}]}},"response":[],"_postman_id":"87405045-2812-4ccf-bdb6-8a62e5f139f8"},{"name":"api/v1/paymentterms/{paymentterm}","id":"b7548903-7f56-4902-8a56-511087456fc2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"can_edit","value":null,"description":"<p>The can edit field must be true or false.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"due_days","value":null,"description":"<p>The due days field must be an integer., The due days field must be at least -2147483649., The due days field must not be greater than 2147483647.</p>\n","type":"text"},{"key":"due_slug","value":null,"description":"<p>(Nullable), The due slug field must be a string., The due slug field must not be greater than 20 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field must be true or false.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/paymentterms/:paymentterm","description":"<p>Update the specified <code>Paymentterm</code> .</p>\n","urlObject":{"path":["api","v1","paymentterms",":paymentterm"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"paymentterm"}]}},"response":[],"_postman_id":"b7548903-7f56-4902-8a56-511087456fc2"}],"id":"498ab586-0a1f-4c5a-aeea-b5bb4982da7f","_postman_id":"498ab586-0a1f-4c5a-aeea-b5bb4982da7f","description":""}],"id":"8fa2763f-fa79-4d5d-96e5-bb0c78bc95dd","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> can_edit</code>,<code> description</code>,<code> due_days</code>,<code> due_slug</code>,<code> is_active</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inUse</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>onDocument</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrders</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>on_document_count</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8fa2763f-fa79-4d5d-96e5-bb0c78bc95dd"},{"name":"People","item":[{"name":"Destroy","item":[{"name":"api/v1/people/{person}","id":"ab94d2e3-6299-474a-aa75-ab600a53259a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/people/:person","description":"<p>Remove the specified <code>Person</code> from storage.</p>\n","urlObject":{"path":["api","v1","people",":person"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"person"}]}},"response":[],"_postman_id":"ab94d2e3-6299-474a-aa75-ab600a53259a"}],"id":"b1f63d2f-41de-4e6c-bac6-d81a54e39286","_postman_id":"b1f63d2f-41de-4e6c-bac6-d81a54e39286","description":""},{"name":"Index","item":[{"name":"api/v1/people","id":"947776b8-a878-474f-ab1f-31b4a5a7bad1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/people","description":"<p>Returns a list of multiple <code>Person</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","people"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"947776b8-a878-474f-ab1f-31b4a5a7bad1"}],"id":"87b422b3-7421-4cd6-afa0-65097ce3f28a","_postman_id":"87b422b3-7421-4cd6-afa0-65097ce3f28a","description":""},{"name":"Show","item":[{"name":"api/v1/people/{person}","id":"c12a8439-8463-40f8-b9da-1e7a784fb89f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/people/:person","description":"<p>Display the specified <code>Person</code>.</p>\n","urlObject":{"path":["api","v1","people",":person"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"person"}]}},"response":[],"_postman_id":"c12a8439-8463-40f8-b9da-1e7a784fb89f"}],"id":"0c62178d-5582-43c9-b6e3-cc9db1e9c53f","_postman_id":"0c62178d-5582-43c9-b6e3-cc9db1e9c53f","description":""},{"name":"Store","item":[{"name":"api/v1/people","id":"d16aff02-d20f-48a8-8b90-cba2b9b2867a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required., The business id field must be an integer.</p>\n","type":"text"},{"key":"department","value":null,"description":"<p>(Nullable), The department field must be a string., The department field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"email","value":null,"description":"<p>(Nullable), The email field must be a string., The email field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"first_name","value":null,"description":"<p>The first name field is required., The first name field must be a string., The first name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"last_name","value":null,"description":"<p>(Nullable), The last name field must be a string., The last name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Nullable), The notes field must be a string., The notes field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"primary_location_id","value":null,"description":"<p>(Nullable), The primary location id field must be an integer.</p>\n","type":"text"},{"key":"role","value":null,"description":"<p>(Nullable), The role field must be a string., The role field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Nullable), The telephone field must be a string., The telephone field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"telephone2","value":null,"description":"<p>(Nullable), The telephone2 field must be a string., The telephone2 field must not be greater than 30 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/people","description":"<p>Create a new <code>Person</code> object.</p>\n","urlObject":{"path":["api","v1","people"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d16aff02-d20f-48a8-8b90-cba2b9b2867a"}],"id":"9d6d8119-fad0-4d25-a4fa-709af6d9d9a6","_postman_id":"9d6d8119-fad0-4d25-a4fa-709af6d9d9a6","description":""},{"name":"Update","item":[{"name":"api/v1/people/{person}","id":"16137424-7fb6-4b09-8d51-4e545684a032","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"department","value":null,"description":"<p>(Optional), (Nullable), The department field must be a string., The department field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"email","value":null,"description":"<p>(Optional), (Nullable), The email field must be a string., The email field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"first_name","value":null,"description":"<p>(Optional), The first name field must be a string., The first name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"last_name","value":null,"description":"<p>(Optional), (Nullable), The last name field must be a string., The last name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Optional), (Nullable), The notes field must be a string., The notes field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"primary_location_id","value":null,"description":"<p>(Optional), (Nullable), The primary location id field must be an integer.</p>\n","type":"text"},{"key":"role","value":null,"description":"<p>(Optional), (Nullable), The role field must be a string., The role field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Optional), (Nullable), The telephone field must be a string., The telephone field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"telephone2","value":null,"description":"<p>(Optional), (Nullable), The telephone2 field must be a string., The telephone2 field must not be greater than 30 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/people/:person","description":"<p>Update the specified <code>Person</code> .</p>\n","urlObject":{"path":["api","v1","people",":person"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"person"}]}},"response":[],"_postman_id":"16137424-7fb6-4b09-8d51-4e545684a032"},{"name":"api/v1/people/{person}","id":"c3c0d268-996f-4912-a278-c96974d64bd6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text"},{"key":"department","value":null,"description":"<p>(Optional), (Nullable), The department field must be a string., The department field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"email","value":null,"description":"<p>(Optional), (Nullable), The email field must be a string., The email field must not be greater than 144 characters.</p>\n","type":"text"},{"key":"first_name","value":null,"description":"<p>(Optional), The first name field must be a string., The first name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"last_name","value":null,"description":"<p>(Optional), (Nullable), The last name field must be a string., The last name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Optional), (Nullable), The notes field must be a string., The notes field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"primary_location_id","value":null,"description":"<p>(Optional), (Nullable), The primary location id field must be an integer.</p>\n","type":"text"},{"key":"role","value":null,"description":"<p>(Optional), (Nullable), The role field must be a string., The role field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"telephone","value":null,"description":"<p>(Optional), (Nullable), The telephone field must be a string., The telephone field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"telephone2","value":null,"description":"<p>(Optional), (Nullable), The telephone2 field must be a string., The telephone2 field must not be greater than 30 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/people/:person","description":"<p>Update the specified <code>Person</code> .</p>\n","urlObject":{"path":["api","v1","people",":person"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"person"}]}},"response":[],"_postman_id":"c3c0d268-996f-4912-a278-c96974d64bd6"}],"id":"1306247c-8af0-49ac-8389-724cfa08d866","_postman_id":"1306247c-8af0-49ac-8389-724cfa08d866","description":""}],"id":"af280a13-f148-47e7-8825-1a62cfd73cf3","description":"<p><code>People</code> are used in many transactions within the application.</p>\n<p><code>People</code> belong to <code>Businesses</code>.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_id</code>,<code> email</code>,<code> first_name</code>,<code> last_name</code>,<code> metadata</code>,<code> notes</code>,<code> primary_location_id</code>,<code> team_id</code>,<code> telephone</code>,<code> telephone2</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>businessGroups</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>hasIntegrationKey</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>primaryLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"af280a13-f148-47e7-8825-1a62cfd73cf3"},{"name":"Permission Users","item":[{"name":"Destroy","item":[{"name":"api/v1/permission_users/{permission_user}","id":"e6b8d3ab-56a0-4c6b-8097-e68ce4080653","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/permission_users/:permission_user","description":"<p>Remove the specified PermissionUser from storage. DELETE /permissionUsers/{id}.</p>\n","urlObject":{"path":["api","v1","permission_users",":permission_user"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"permission_user"}]}},"response":[],"_postman_id":"e6b8d3ab-56a0-4c6b-8097-e68ce4080653"}],"id":"3b5e850f-e007-4dbb-be2b-7feedff6e60f","_postman_id":"3b5e850f-e007-4dbb-be2b-7feedff6e60f","description":""},{"name":"Index","item":[{"name":"api/v1/permission_users","id":"bd70ad92-e4e1-4e0d-b06b-7df41d72ec30","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/permission_users","description":"<p>Display a listing of the PermissionUser. GET|HEAD /permissionUsers.</p>\n","urlObject":{"path":["api","v1","permission_users"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd70ad92-e4e1-4e0d-b06b-7df41d72ec30"}],"id":"c7bcf113-35a8-4da2-8778-903aa1b2018d","_postman_id":"c7bcf113-35a8-4da2-8778-903aa1b2018d","description":""},{"name":"Show","item":[{"name":"api/v1/permission_users/{permission_user}","id":"a8d94677-74b3-403d-8880-1b811de92122","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/permission_users/:permission_user","description":"<p>Display the specified PermissionUser. GET|HEAD /permissionUsers/{id}.</p>\n","urlObject":{"path":["api","v1","permission_users",":permission_user"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"permission_user"}]}},"response":[],"_postman_id":"a8d94677-74b3-403d-8880-1b811de92122"}],"id":"2abae66b-69ed-4c83-83c4-9b0990069e5f","_postman_id":"2abae66b-69ed-4c83-83c4-9b0990069e5f","description":""},{"name":"Store","item":[{"name":"api/v1/permission_users","id":"5bbfa58d-ece2-492a-954d-e4968db6d53a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"permission_id","value":null,"description":"<p>The permission id field is required., The permission id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"user_type","value":null,"description":"<p>The user type field is required., The user type field must be a string., The user type field must not be greater than 255 characters., The selected user type is invalid, it must exist in User.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/permission_users","description":"<p>Store a newly created PermissionUser . POST /permissionUsers.</p>\n","urlObject":{"path":["api","v1","permission_users"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"5bbfa58d-ece2-492a-954d-e4968db6d53a"}],"id":"b5ca9b6d-ef9d-4677-a05f-5265fb7b728c","_postman_id":"b5ca9b6d-ef9d-4677-a05f-5265fb7b728c","description":""},{"name":"Update","item":[{"name":"api/v1/permission_users/{permission_user}","id":"c112af3e-60e1-46fb-aba8-6d0ae214378d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"permission_id","value":null,"description":"<p>The permission id field is required., The permission id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"user_type","value":null,"description":"<p>The user type field is required., The user type field must be a string., The user type field must not be greater than 255 characters., The selected user type is invalid, it must exist in User.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/permission_users/:permission_user","description":"<p>Update the specified PermissionUser . PUT/PATCH /permissionUsers/{id}.</p>\n","urlObject":{"path":["api","v1","permission_users",":permission_user"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"permission_user"}]}},"response":[],"_postman_id":"c112af3e-60e1-46fb-aba8-6d0ae214378d"},{"name":"api/v1/permission_users/{permission_user}","id":"d72dbc0b-cd57-42f5-b025-9fa3167f5994","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"permission_id","value":null,"description":"<p>The permission id field is required., The permission id field must be an integer.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"user_type","value":null,"description":"<p>The user type field is required., The user type field must be a string., The user type field must not be greater than 255 characters., The selected user type is invalid, it must exist in User.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/permission_users/:permission_user","description":"<p>Update the specified PermissionUser . PUT/PATCH /permissionUsers/{id}.</p>\n","urlObject":{"path":["api","v1","permission_users",":permission_user"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"permission_user"}]}},"response":[],"_postman_id":"d72dbc0b-cd57-42f5-b025-9fa3167f5994"}],"id":"f5916ef3-fb30-4ac3-965b-b8287f685006","_postman_id":"f5916ef3-fb30-4ac3-965b-b8287f685006","description":""}],"id":"48a6a5bb-5e99-4143-879e-755ee2de9c63","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> permission_id</code>,<code> project_id</code>,<code> team_id</code>,<code> user_id</code>,<code> user_type</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>permission</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"48a6a5bb-5e99-4143-879e-755ee2de9c63"},{"name":"Permissions","item":[{"name":"Index","item":[{"name":"api/v1/permissions","id":"19fa0d05-e66e-4420-b8ca-618059196c7e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/permissions","description":"<p>Returns a list of multiple <code>Permission</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","permissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"19fa0d05-e66e-4420-b8ca-618059196c7e"}],"id":"65721c84-2cbc-4bb4-b0d6-378a0dcd498a","_postman_id":"65721c84-2cbc-4bb4-b0d6-378a0dcd498a","description":""},{"name":"Show","item":[{"name":"api/v1/permissions/{permission}","id":"2e5dd624-236d-44ee-8058-7233b62af117","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/permissions/:permission","description":"<p>Display the specified <code>Permission</code>.</p>\n","urlObject":{"path":["api","v1","permissions",":permission"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"permission"}]}},"response":[],"_postman_id":"2e5dd624-236d-44ee-8058-7233b62af117"}],"id":"e1ed6932-5760-4b7a-ab17-8a1e78439e99","_postman_id":"e1ed6932-5760-4b7a-ab17-8a1e78439e99","description":""}],"id":"e3fe1075-4da6-461a-8d8b-73eaf557edf2","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> description</code>,<code> display_name</code>,<code> domain</code>,<code> is_team_scoped</code>,<code> is_workflow_permission</code>,<code> name</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>roles</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationStates</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e3fe1075-4da6-461a-8d8b-73eaf557edf2"},{"name":"Printable Attachments","item":[{"name":"Bulk Update","item":[{"name":"api/v1/bulk_printable_attachments","id":"5524f356-4e1e-4aff-807c-dff961addedb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.to_print","value":null,"description":"<p>(Optional), The data.*.to print field must be true or false.</p>\n","type":"text"},{"key":"data.*.type","value":null,"description":"<p>(Nullable), The data.<em>.type field must be a string., The data.</em>.type field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"data.*.attachment_id","value":null,"description":"<p>(Optional), The data.*.attachment id field must be an integer.</p>\n","type":"text"},{"key":"data.*.attachable_type","value":null,"description":"<p>(Optional), The data.<em>.attachable type field must be a string., The data.</em>.attachable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"data.*.title","value":null,"description":"<p>(Nullable), The data.<em>.title field must be a string., The data.</em>.title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.scopes","value":null,"description":"<p>(Nullable), The data.*.scopes field must be an array.</p>\n","type":"text"},{"key":"data.*.order","value":null,"description":"<p>(Optional), The data.<em>.order field must be an integer., The data.</em>.order field must not be greater than 999 characters., The data.*.order field must be at least 0 characters.</p>\n","type":"text"},{"key":"data.*.created_at","value":null,"description":"<p>(Optional), (Nullable), The data.*.created at field must be a valid date.</p>\n","type":"text"},{"key":"data.*.updated_at","value":null,"description":"<p>(Optional), (Nullable), The data.*.updated at field must be a valid date.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_printable_attachments","description":"<p>Update multiple <code>PrintableAttachment</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_printable_attachments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"5524f356-4e1e-4aff-807c-dff961addedb"}],"id":"7878c5a6-8bbc-4a04-82ce-d9b8322bc0cb","_postman_id":"7878c5a6-8bbc-4a04-82ce-d9b8322bc0cb","description":""},{"name":"Destroy","item":[{"name":"api/v1/printable_attachments/{printable_attachment}","id":"ca3bc907-0928-44b2-a374-c5a4129fc46d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/printable_attachments/:printable_attachment","description":"<p>Remove the specified PrintableAttachment from storage. DELETE /printableAttachments/{id}.</p>\n","urlObject":{"path":["api","v1","printable_attachments",":printable_attachment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"printable_attachment"}]}},"response":[],"_postman_id":"ca3bc907-0928-44b2-a374-c5a4129fc46d"}],"id":"c30cece1-cb9f-496b-ae2c-1dab70a1eca1","_postman_id":"c30cece1-cb9f-496b-ae2c-1dab70a1eca1","description":""},{"name":"Index","item":[{"name":"api/v1/printable_attachments","id":"7bf6e61a-9dd5-4f08-970c-af6ad6890351","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/printable_attachments","description":"<p>Display a listing of the PrintableAttachment. GET|HEAD /printableAttachments.</p>\n","urlObject":{"path":["api","v1","printable_attachments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bf6e61a-9dd5-4f08-970c-af6ad6890351"}],"id":"bee894f8-6e32-4ab8-9e0d-4a3f9649858c","_postman_id":"bee894f8-6e32-4ab8-9e0d-4a3f9649858c","description":""},{"name":"Show","item":[{"name":"api/v1/printable_attachments/{printable_attachment}","id":"dd29ec83-6a39-40a5-bc4a-5f5cd955d55a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/printable_attachments/:printable_attachment","description":"<p>Display the specified PrintableAttachment. GET|HEAD /printableAttachments/{id}.</p>\n","urlObject":{"path":["api","v1","printable_attachments",":printable_attachment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"printable_attachment"}]}},"response":[],"_postman_id":"dd29ec83-6a39-40a5-bc4a-5f5cd955d55a"}],"id":"61b40321-0fb2-410a-8588-cdb529303c45","_postman_id":"61b40321-0fb2-410a-8588-cdb529303c45","description":""},{"name":"Store","item":[{"name":"api/v1/printable_attachments","id":"65f97568-92cf-40c6-bf3c-665e6a714459","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"attachment_id","value":null,"description":"<p>The attachment id field is required., The attachment id field must be an integer.</p>\n","type":"text"},{"key":"attachable_type","value":null,"description":"<p>The attachable type field is required., The attachable type field must be a string., The attachable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attachable_id","value":null,"description":"<p>The attachable id field is required.</p>\n","type":"text"},{"key":"to_print","value":null,"description":"<p>(Optional), The to print field must be true or false.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Nullable), The type field must be a string., The type field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"scopes","value":null,"description":"<p>(Nullable), The scopes field must be an array.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), The order field must be an integer., The order field must not be greater than 999., The order field must be at least 0.</p>\n","type":"text"},{"key":"created_at","value":null,"description":"<p>(Optional), (Nullable), The created at field must be a valid date.</p>\n","type":"text"},{"key":"updated_at","value":null,"description":"<p>(Optional), (Nullable), The updated at field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/printable_attachments","description":"<p>Store a newly created PrintableAttachment . POST /printableAttachments.</p>\n","urlObject":{"path":["api","v1","printable_attachments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"65f97568-92cf-40c6-bf3c-665e6a714459"}],"id":"e58f8d75-c474-43cd-ac96-a514ce34eb8b","_postman_id":"e58f8d75-c474-43cd-ac96-a514ce34eb8b","description":""},{"name":"Update","item":[{"name":"api/v1/printable_attachments/{printable_attachment}","id":"de4f7484-73bb-4a7e-8c48-5668faace9f0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"to_print","value":null,"description":"<p>(Optional), The to print field must be true or false.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Nullable), The type field must be a string., The type field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"attachment_id","value":null,"description":"<p>(Optional), The attachment id field must be an integer.</p>\n","type":"text"},{"key":"attachable_type","value":null,"description":"<p>(Optional), The attachable type field must be a string., The attachable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"scopes","value":null,"description":"<p>(Nullable), The scopes field must be an array.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), The order field must be an integer., The order field must not be greater than 999., The order field must be at least 0.</p>\n","type":"text"},{"key":"created_at","value":null,"description":"<p>(Optional), (Nullable), The created at field must be a valid date.</p>\n","type":"text"},{"key":"updated_at","value":null,"description":"<p>(Optional), (Nullable), The updated at field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/printable_attachments/:printable_attachment","description":"<p>Update the specified PrintableAttachment . Note this endp PUT/PATCH /printableAttachments/{id}.</p>\n","urlObject":{"path":["api","v1","printable_attachments",":printable_attachment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"printable_attachment"}]}},"response":[],"_postman_id":"de4f7484-73bb-4a7e-8c48-5668faace9f0"},{"name":"api/v1/printable_attachments/{printable_attachment}","id":"4b1b6aeb-f96f-4cda-8ce4-0e9741d62734","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"to_print","value":null,"description":"<p>(Optional), The to print field must be true or false.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Nullable), The type field must be a string., The type field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"attachment_id","value":null,"description":"<p>(Optional), The attachment id field must be an integer.</p>\n","type":"text"},{"key":"attachable_type","value":null,"description":"<p>(Optional), The attachable type field must be a string., The attachable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"scopes","value":null,"description":"<p>(Nullable), The scopes field must be an array.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), The order field must be an integer., The order field must not be greater than 999., The order field must be at least 0.</p>\n","type":"text"},{"key":"created_at","value":null,"description":"<p>(Optional), (Nullable), The created at field must be a valid date.</p>\n","type":"text"},{"key":"updated_at","value":null,"description":"<p>(Optional), (Nullable), The updated at field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/printable_attachments/:printable_attachment","description":"<p>Update the specified PrintableAttachment . Note this endp PUT/PATCH /printableAttachments/{id}.</p>\n","urlObject":{"path":["api","v1","printable_attachments",":printable_attachment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"printable_attachment"}]}},"response":[],"_postman_id":"4b1b6aeb-f96f-4cda-8ce4-0e9741d62734"}],"id":"2a9b8cc1-26ca-48f6-8478-67b44b3304ce","_postman_id":"2a9b8cc1-26ca-48f6-8478-67b44b3304ce","description":""},{"name":"Upload And Link","item":[{"name":"api/v1/printable_attachments/upload_and_link","id":"e61cc2d8-4b12-40e9-b6b0-0c46ce63f2d1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"attachable_type","value":null,"description":"<p>The attachable type field is required., The attachable type field must be a string., The attachable type field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attachable_id","value":null,"description":"<p>The attachable id field is required.</p>\n","type":"text"},{"key":"to_print","value":null,"description":"<p>(Optional), The to print field must be true or false.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Nullable), The type field must be a string., The type field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Nullable), The title field must be a string., The title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"scopes","value":null,"description":"<p>(Nullable), The scopes field must be an array.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>(Optional), The order field must be an integer., The order field must not be greater than 999., The order field must be at least 0.</p>\n","type":"text"},{"key":"created_at","value":null,"description":"<p>(Optional), (Nullable), The created at field must be a valid date.</p>\n","type":"text"},{"key":"updated_at","value":null,"description":"<p>(Optional), (Nullable), The updated at field must be a valid date.</p>\n","type":"text"},{"key":"file","value":null,"description":"<p>The file field is required., The file field must be a file of type: pdf.</p>\n","type":"text"},{"key":"change_name","value":null,"description":"<p>(Optional), (Nullable), The change name field must be a string., The change name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"attachment_type","value":null,"description":"<p>The attachment type field must be a string., The attachment type field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"size","value":null,"description":"<p>(Optional), The size field must be an integer., The size field must not be greater than 20480.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/printable_attachments/upload_and_link","description":"<p>Unified endpoint to create an <code>Attachment</code> and attach it to an entity as a <code>PrintableAttachment</code>. Note: this process also ensures the provided file can be parsed by the PDF engine.</p>\n","urlObject":{"path":["api","v1","printable_attachments","upload_and_link"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e61cc2d8-4b12-40e9-b6b0-0c46ce63f2d1"}],"id":"ae0909c0-a90f-42ab-8051-9465d1452ef2","_postman_id":"ae0909c0-a90f-42ab-8051-9465d1452ef2","description":""}],"id":"7a0f5b20-35f2-493f-96d6-4d1b4534312e","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> attachable_id</code>,<code> attachable_type</code>,<code> attachment_id</code>,<code> project_id</code>,<code> scopes</code>,<code> team_id</code>,<code> title</code>,<code> to_print</code>,<code> type</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachment</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7a0f5b20-35f2-493f-96d6-4d1b4534312e"},{"name":"Project","item":[{"name":"Potential Releases","item":[{"name":"api/v1/project/{project}/potential_releases","id":"e8192b60-df0c-46dc-9c99-9d1290b76932","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project/:project/potential_releases","urlObject":{"path":["api","v1","project",":project","potential_releases"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"e8192b60-df0c-46dc-9c99-9d1290b76932"}],"id":"f3bf973a-97f5-4ff8-900d-5716612f2b0d","_postman_id":"f3bf973a-97f5-4ff8-900d-5716612f2b0d","description":""}],"id":"419ebb08-c7d3-4356-a29e-152f2289b016","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> client_business_id</code>,<code> cost_structure_id</code>,<code> currency_code</code>,<code> default_taxes_id</code>,<code> engineering_manager_user_id</code>,<code> id</code>,<code> incoterm_id</code>,<code> is_active</code>,<code> manager_user_id</code>,<code> metadata</code>,<code> paymentterm_id</code>,<code> pm_user_id</code>,<code> project_controls_manager_user_id</code>,<code> project_description</code>,<code> project_identifier</code>,<code> project_name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billOfMaterials</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bill_of_materials</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billingPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>budget</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>client</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>datesNextWeek</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>defaultTax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>destination</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>engineeringManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fabricationPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>history</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>incoTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionActions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionReleases</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionRequirements</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspections</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransactions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>managerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>ncrs</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderableLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>origin</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>procurementManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectControlsManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesComplete</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesNextWeek</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesOnSchedule</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesOpen</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesOverdue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectRoles</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasksComplete</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasksOnSchedule</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasksOpen</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasksOverdue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>salesOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specStandards</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storagePlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>users</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>activity</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_invoice_overage_tolerance</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>budgetted_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>committed_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>committed_revenue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>display_name</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>invoiced_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>last_activity</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>planned_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>planned_revenue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project_access</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>users_count</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"419ebb08-c7d3-4356-a29e-152f2289b016"},{"name":"Project Budget Items","item":[{"name":"Destroy","item":[{"name":"api/v1/project_budget_items/{project_budget_item}","id":"b4638aae-ec3d-4ada-a586-8a24c50f06e5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budget_items/:project_budget_item","description":"<p>Remove the specified ProjectBudgetItem from storage. DELETE /project-budget-items/{id}.</p>\n","urlObject":{"path":["api","v1","project_budget_items",":project_budget_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_budget_item"}]}},"response":[],"_postman_id":"b4638aae-ec3d-4ada-a586-8a24c50f06e5"}],"id":"247abc8c-471d-4b72-93fa-b2007bf8a16d","_postman_id":"247abc8c-471d-4b72-93fa-b2007bf8a16d","description":""},{"name":"Index","item":[{"name":"api/v1/project_budget_items","id":"380181b2-8a9a-46da-a02b-9f301eea7166","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budget_items","description":"<p>Display a listing of the ProjectBudgetItems. GET|HEAD /project-budget-items.</p>\n","urlObject":{"path":["api","v1","project_budget_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"380181b2-8a9a-46da-a02b-9f301eea7166"}],"id":"0dfc4415-2dfd-44e4-aac4-f2fd14910e1c","_postman_id":"0dfc4415-2dfd-44e4-aac4-f2fd14910e1c","description":""},{"name":"Show","item":[{"name":"api/v1/project_budget_items/{project_budget_item}","id":"5843609c-08bc-4c15-8721-08c620de1d17","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budget_items/:project_budget_item","description":"<p>Display the specified ProjectBudgetItem. GET|HEAD /project-budget-items/{id}.</p>\n","urlObject":{"path":["api","v1","project_budget_items",":project_budget_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_budget_item"}]}},"response":[],"_postman_id":"5843609c-08bc-4c15-8721-08c620de1d17"}],"id":"42e5d4b9-fb2c-44c2-8ee7-6f7cd3b72c0a","_postman_id":"42e5d4b9-fb2c-44c2-8ee7-6f7cd3b72c0a","description":""},{"name":"Store","item":[{"name":"api/v1/project_budget_items","id":"12d38bcf-6567-46e6-a9ab-d3622a405726","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_budget_id","value":null,"description":"<p>The project budget id field is required., The project budget id field must be an integer.</p>\n","type":"text"},{"key":"cost_code_id","value":null,"description":"<p>The cost code id field is required., The cost code id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>The type field is required., The type field must be a string., The type field must not be greater than 12 characters.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>The value field is required., The value field must be a number.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Nullable), The notes field must be a string., The notes field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"version","value":null,"description":"<p>The version field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_budget_items","description":"<p>Store a newly created ProjectBudgetItem . POST /project-budget-items.</p>\n","urlObject":{"path":["api","v1","project_budget_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"12d38bcf-6567-46e6-a9ab-d3622a405726"}],"id":"519caaf0-043f-4169-90da-b22c39a21841","_postman_id":"519caaf0-043f-4169-90da-b22c39a21841","description":""},{"name":"Update","item":[{"name":"api/v1/project_budget_items/{project_budget_item}","id":"3748a793-35bb-454b-8b4f-bb305d494e47","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_budget_id","value":null,"description":"<p>The project budget id field is required., The project budget id field must be an integer.</p>\n","type":"text"},{"key":"cost_code_id","value":null,"description":"<p>The cost code id field is required., The cost code id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>The type field is required., The type field must be a string., The type field must not be greater than 12 characters.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>The value field is required., The value field must be a number.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Nullable), The notes field must be a string., The notes field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"version","value":null,"description":"<p>The version field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_budget_items/:project_budget_item","description":"<p>Update the specified ProjectBudgetItem . PUT/PATCH /project-budget-items/{id}.</p>\n","urlObject":{"path":["api","v1","project_budget_items",":project_budget_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_budget_item"}]}},"response":[],"_postman_id":"3748a793-35bb-454b-8b4f-bb305d494e47"},{"name":"api/v1/project_budget_items/{project_budget_item}","id":"f903a492-7306-45c5-8e5c-8ab2d91a77b7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_budget_id","value":null,"description":"<p>The project budget id field is required., The project budget id field must be an integer.</p>\n","type":"text"},{"key":"cost_code_id","value":null,"description":"<p>The cost code id field is required., The cost code id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>The type field is required., The type field must be a string., The type field must not be greater than 12 characters.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>The value field is required., The value field must be a number.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Nullable), The notes field must be a string., The notes field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"version","value":null,"description":"<p>The version field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_budget_items/:project_budget_item","description":"<p>Update the specified ProjectBudgetItem . PUT/PATCH /project-budget-items/{id}.</p>\n","urlObject":{"path":["api","v1","project_budget_items",":project_budget_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_budget_item"}]}},"response":[],"_postman_id":"f903a492-7306-45c5-8e5c-8ab2d91a77b7"}],"id":"dee989d0-50b7-4488-8aed-e90eb2efd1e8","_postman_id":"dee989d0-50b7-4488-8aed-e90eb2efd1e8","description":""}],"id":"a8af4bb4-f8b4-4b29-8b58-48e849c02571","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> cost_code_id</code>,<code> notes</code>,<code> project_budget_id</code>,<code> team_id</code>,<code> type</code>,<code> value</code>,<code> version</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>costCode</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a8af4bb4-f8b4-4b29-8b58-48e849c02571"},{"name":"Project Budgets","item":[{"name":"Create Change Group","item":[{"name":"api/v1/project_budgets/create_change_group/{projectId}","id":"4e8b6483-0e61-423a-96c1-7ba9f2452a52","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"*.cost_code_id","value":null,"description":"<p>The *.cost code id field must be an integer.</p>\n","type":"text"},{"key":"*.value","value":null,"description":"<p>The *.value field must be a number.</p>\n","type":"text"},{"key":"*.notes","value":null,"description":"<p>(Nullable), The *.notes field must be a string., The *.notes field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"*.type","value":null,"description":"<p>The selected *.type is invalid.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_budgets/create_change_group/:projectId","description":"<p>Accepts a group of budget changes and applies to the <code>Project</code>'s budget.</p>\n","urlObject":{"path":["api","v1","project_budgets","create_change_group",":projectId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"projectId"}]}},"response":[],"_postman_id":"4e8b6483-0e61-423a-96c1-7ba9f2452a52"}],"id":"2af9a29d-fdeb-411a-ada7-f1abc18eacb5","_postman_id":"2af9a29d-fdeb-411a-ada7-f1abc18eacb5","description":""},{"name":"Destroy","item":[{"name":"api/v1/project_budgets/{project_budget}","id":"bd36264c-cc9f-43cf-b43e-2ff9fe8de7b0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budgets/:project_budget","description":"<p>Remove the specified ProjectBudget from storage. DELETE /project-budgets/{id}.</p>\n","urlObject":{"path":["api","v1","project_budgets",":project_budget"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_budget"}]}},"response":[],"_postman_id":"bd36264c-cc9f-43cf-b43e-2ff9fe8de7b0"}],"id":"b38f09cb-d5b5-4d46-a6f4-1d859d777400","_postman_id":"b38f09cb-d5b5-4d46-a6f4-1d859d777400","description":""},{"name":"Index","item":[{"name":"api/v1/project_budgets","id":"219e560f-e350-49e3-b87a-a2891bc2f358","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budgets","description":"<p>Display a listing of the ProjectBudgets. GET|HEAD /project-budgets.</p>\n","urlObject":{"path":["api","v1","project_budgets"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"219e560f-e350-49e3-b87a-a2891bc2f358"}],"id":"b52742fa-fc60-4bab-aeb9-6474408f6931","_postman_id":"b52742fa-fc60-4bab-aeb9-6474408f6931","description":""},{"name":"Initialize Project","item":[{"name":"api/v1/project_budgets/initialize/{projectId}","id":"7ef6599e-02ef-4da6-94da-bad95410d439","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budgets/initialize/:projectId","description":"<p>Initializes the <code>ProjectBudget</code> for a specified <code>Project</code>. Process builds a structure of <code>ProjectBudgetItems</code> based on the associated <code>CostStructure</code> to aid the developer</p>\n","urlObject":{"path":["api","v1","project_budgets","initialize",":projectId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"projectId"}]}},"response":[],"_postman_id":"7ef6599e-02ef-4da6-94da-bad95410d439"}],"id":"801bc72d-5914-496b-a8e6-e49cbabdb49c","_postman_id":"801bc72d-5914-496b-a8e6-e49cbabdb49c","description":""},{"name":"List Baseline Budget","item":[{"name":"api/v1/project_budgets/list_baseline/{projectId}","id":"f2b469e3-44c4-4ce2-9787-2c87bf206c56","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budgets/list_baseline/:projectId","description":"<p>Provides the baseline <code>Project</code> Budget. This is used primarily during the drafting of the budget in advance of \"baselining\" the budget</p>\n","urlObject":{"path":["api","v1","project_budgets","list_baseline",":projectId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"projectId"}]}},"response":[],"_postman_id":"f2b469e3-44c4-4ce2-9787-2c87bf206c56"}],"id":"9b3a6a5b-71e3-48f7-845a-ac1cc45065a8","_postman_id":"9b3a6a5b-71e3-48f7-845a-ac1cc45065a8","description":""},{"name":"List Budget","item":[{"name":"api/v1/project_budgets/list/{projectId}","id":"335fa4ea-8ea8-499f-ba35-f943cd1a82a9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budgets/list/:projectId","description":"<p>Provides the baseline <code>Project</code> Budget. This is used primarily during the drafting of the budget in advance of \"baselining\" the budget</p>\n","urlObject":{"path":["api","v1","project_budgets","list",":projectId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"projectId"}]}},"response":[],"_postman_id":"335fa4ea-8ea8-499f-ba35-f943cd1a82a9"}],"id":"044b6881-adf6-4a4d-86a4-2415b17baf11","_postman_id":"044b6881-adf6-4a4d-86a4-2415b17baf11","description":""},{"name":"Show","item":[{"name":"api/v1/project_budgets/{project_budget}","id":"d7c467af-99f0-477e-aace-bdf53fd5f0c9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_budgets/:project_budget","description":"<p>Display the specified ProjectBudget. GET|HEAD /project-budgets/{id}.</p>\n","urlObject":{"path":["api","v1","project_budgets",":project_budget"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_budget"}]}},"response":[],"_postman_id":"d7c467af-99f0-477e-aace-bdf53fd5f0c9"}],"id":"73939e53-4b49-42d9-b984-e6fad7577083","_postman_id":"73939e53-4b49-42d9-b984-e6fad7577083","description":""},{"name":"Store","item":[{"name":"api/v1/project_budgets","id":"7e10088c-e3a3-4d6d-80bc-fffad8647cd4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>The cost structure id field is required., The cost structure id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>The currency code field is required., The currency code field must be a string., The currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"is_baselined","value":null,"description":"<p>The is baselined field is required., The is baselined field must be true or false.</p>\n","type":"text"},{"key":"active_version","value":null,"description":"<p>The active version field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_budgets","description":"<p>Store a newly created ProjectBudget . POST /project-budgets.</p>\n","urlObject":{"path":["api","v1","project_budgets"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e10088c-e3a3-4d6d-80bc-fffad8647cd4"}],"id":"89a51dfc-db6e-42cf-ad0f-8ec2be6bb46d","_postman_id":"89a51dfc-db6e-42cf-ad0f-8ec2be6bb46d","description":""},{"name":"Update","item":[{"name":"api/v1/project_budgets/{project_budget}","id":"fe8073ee-8b86-4473-8b64-7e42c77b3db7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field is required.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>(Optional), The cost structure id field is required.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), (Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), The currency code field must be a string., The currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"is_baselined","value":null,"description":"<p>(Optional), The is baselined field must be true or false.</p>\n","type":"text"},{"key":"active_version","value":null,"description":"<p>(Optional), The active version field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_budgets/:project_budget","description":"<p>Update the specified ProjectBudget . PUT/PATCH /project-budgets/{id}.</p>\n","urlObject":{"path":["api","v1","project_budgets",":project_budget"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_budget"}]}},"response":[],"_postman_id":"fe8073ee-8b86-4473-8b64-7e42c77b3db7"},{"name":"api/v1/project_budgets/{project_budget}","id":"ef2c66e4-2434-4664-8b6c-11f959d255e3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field is required.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>(Optional), The cost structure id field is required.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), (Nullable), The validation graph uuid field must be a string., The validation graph uuid field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), The currency code field must be a string., The currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"is_baselined","value":null,"description":"<p>(Optional), The is baselined field must be true or false.</p>\n","type":"text"},{"key":"active_version","value":null,"description":"<p>(Optional), The active version field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_budgets/:project_budget","description":"<p>Update the specified ProjectBudget . PUT/PATCH /project-budgets/{id}.</p>\n","urlObject":{"path":["api","v1","project_budgets",":project_budget"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_budget"}]}},"response":[],"_postman_id":"ef2c66e4-2434-4664-8b6c-11f959d255e3"}],"id":"e08bfa04-71c4-49fb-8d1b-ff85d6fb28ea","_postman_id":"e08bfa04-71c4-49fb-8d1b-ff85d6fb28ea","description":""},{"name":"Update Baseline Budget","item":[{"name":"api/v1/project_budgets/update_baseline/{projectId}","id":"d81deccf-2d36-4d09-bcd2-51975817baf1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"*.relations.project_budget_item","value":null,"description":"<p>(Optional), The *.relations.project budget item field must be an array.</p>\n","type":"text"},{"key":"*.relations.project_budget_item.id","value":null,"description":"<p>The *.relations.project budget item.id field is required when *.relations.project budget item is present., The *.relations.project budget item.id field must be an integer.</p>\n","type":"text"},{"key":"*.relations.project_budget_item.value","value":null,"description":"<p>The *.relations.project budget item.value field is required when *.relations.project budget item is present., The *.relations.project budget item.value field must be a number.</p>\n","type":"text"},{"key":"*.relations.project_budget_item.notes","value":null,"description":"<p>(Nullable), The *.relations.project budget item.notes field must be a string., The *.relations.project budget item.notes field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_budgets/update_baseline/:projectId","description":"<p>Accepts changes to some or all of an existing <code>Project</code> payload and applies the change to the baseline. The service will disallow the creation of new cost codes, or when the <code>ProjectBudget</code> has already been baselined. Tip: Use the <code>list_baseline</code> endpoint to prepare the data structure ready for change</p>\n","urlObject":{"path":["api","v1","project_budgets","update_baseline",":projectId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"projectId"}]}},"response":[],"_postman_id":"d81deccf-2d36-4d09-bcd2-51975817baf1"}],"id":"48655823-5e6a-4f25-8d8f-555d7995d62f","_postman_id":"48655823-5e6a-4f25-8d8f-555d7995d62f","description":""}],"id":"efc521f4-5c29-4a8b-a7d0-84c7192b99ec","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> active_version</code>,<code> cost_structure_id</code>,<code> currency_code</code>,<code> is_baselined</code>,<code> project_id</code>,<code> status</code>,<code> team_id</code>,<code> validation_graph_uuid</code>,</p>\n","_postman_id":"efc521f4-5c29-4a8b-a7d0-84c7192b99ec"},{"name":"Project Businesses","item":[{"name":"Bulk Patch","item":[{"name":"api/v1/project_businesses/patch","id":"fe157959-9e84-4647-91bb-0f36ca1b5ff5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.business_id","value":null,"description":"<p>The data.*.business id field is required.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.*.project id field is required.</p>\n","type":"text"},{"key":"data.*.disallowed_types","value":null,"description":"<p>(Nullable), The data.*.disallowed types field must be an array.</p>\n","type":"text"},{"key":"data.*.disallowed_types.*","value":null,"description":"<p>(Optional), The data.<em>.disallowed types.</em> field must be a string., The data.<em>.disallowed types.</em> field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"data.*.notes","value":null,"description":"<p>(Nullable), The data.<em>.notes field must be a string., The data.</em>.notes field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"data.*.is_approved","value":null,"description":"<p>The data.<em>.is approved field is required., The data.</em>.is approved field must be true or false.</p>\n","type":"text"},{"key":"data.*.agreements","value":null,"description":"<p>(Nullable), The data.*.agreements field must be an array.</p>\n","type":"text"},{"key":"data.*.agreements.*","value":null,"description":"<p>(Optional), The data.<em>.agreements.</em> field must be a string., The data.<em>.agreements.</em> field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.id field must be an integer., The data.</em>.id field must be at least 1 characters., The data.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_businesses/patch","description":"<p>Unified endpoint to support patching the collection of <code>ProjectBusinesses</code>, where an id is provided for an entity, we will attempt to update the existing attribute, where no id is provided we will create a new <code>ProjectBusiness</code>.</p>\n","urlObject":{"path":["api","v1","project_businesses","patch"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe157959-9e84-4647-91bb-0f36ca1b5ff5"}],"id":"b1e08234-d3ea-4101-8f8a-ccdf5a8be6e6","_postman_id":"b1e08234-d3ea-4101-8f8a-ccdf5a8be6e6","description":""},{"name":"Destroy","item":[{"name":"api/v1/project_businesses/{project_business}","id":"007000da-b7e0-4c44-a8f2-39771b3c5fb9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_businesses/:project_business","description":"<p>Remove the specified ProjectBusiness from storage. DELETE /project-businesses/{id}.</p>\n","urlObject":{"path":["api","v1","project_businesses",":project_business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_business"}]}},"response":[],"_postman_id":"007000da-b7e0-4c44-a8f2-39771b3c5fb9"}],"id":"be35f355-7a5f-441b-ab70-c84ddd75028f","_postman_id":"be35f355-7a5f-441b-ab70-c84ddd75028f","description":""},{"name":"Index","item":[{"name":"api/v1/project_businesses","id":"724a4531-8ede-4ce2-ae13-668b49bddd6c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_businesses","description":"<p>Returns a list of multiple <code>ProjectBusiness</code> objects based on optional criteria. GET|HEAD /project_businesses.</p>\n","urlObject":{"path":["api","v1","project_businesses"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"724a4531-8ede-4ce2-ae13-668b49bddd6c"}],"id":"e68dca84-7c7b-4e76-80f4-b35f6f56c162","_postman_id":"e68dca84-7c7b-4e76-80f4-b35f6f56c162","description":""},{"name":"Show","item":[{"name":"api/v1/project_businesses/{project_business}","id":"b440c4f8-1a3b-4600-bf90-267dbd6f2285","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_businesses/:project_business","description":"<p>Display the specified ProjectBusiness. GET|HEAD /project-businesses/{id}.</p>\n","urlObject":{"path":["api","v1","project_businesses",":project_business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_business"}]}},"response":[],"_postman_id":"b440c4f8-1a3b-4600-bf90-267dbd6f2285"}],"id":"0ab9c0b9-7eba-407c-bc00-8024a0e0b212","_postman_id":"0ab9c0b9-7eba-407c-bc00-8024a0e0b212","description":""},{"name":"Store","item":[{"name":"api/v1/project_businesses","id":"708fb994-13c4-4630-ba82-14619462dc01","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required.</p>\n","type":"text"},{"key":"disallowed_types","value":null,"description":"<p>(Nullable), The disallowed types field must be an array.</p>\n","type":"text"},{"key":"disallowed_types.*","value":null,"description":"<p>(Optional), The disallowed types.* field must be a string., The disallowed types.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Nullable), The notes field must be a string., The notes field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"is_approved","value":null,"description":"<p>The is approved field is required., The is approved field must be true or false.</p>\n","type":"text"},{"key":"agreements","value":null,"description":"<p>(Nullable), The agreements field must be an array.</p>\n","type":"text"},{"key":"agreements.*","value":null,"description":"<p>(Optional), The agreements.* field must be a string., The agreements.* field must not be greater than 32 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_businesses","description":"<p>Store a newly created <code>ProjectBusiness</code> . POST /project-businesses.</p>\n","urlObject":{"path":["api","v1","project_businesses"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"708fb994-13c4-4630-ba82-14619462dc01"}],"id":"9a7ff878-da65-4e18-8c4f-a205fac4c8f3","_postman_id":"9a7ff878-da65-4e18-8c4f-a205fac4c8f3","description":""},{"name":"Update","item":[{"name":"api/v1/project_businesses/{project_business}","id":"39b6cd99-8500-4337-b747-e8ed64ae636a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required.</p>\n","type":"text"},{"key":"disallowed_types","value":null,"description":"<p>(Nullable), The disallowed types field must be an array.</p>\n","type":"text"},{"key":"disallowed_types.*","value":null,"description":"<p>(Optional), The disallowed types.* field must be a string., The disallowed types.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Nullable), The notes field must be a string., The notes field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"is_approved","value":null,"description":"<p>The is approved field is required., The is approved field must be true or false.</p>\n","type":"text"},{"key":"agreements","value":null,"description":"<p>(Nullable), The agreements field must be an array.</p>\n","type":"text"},{"key":"agreements.*","value":null,"description":"<p>(Optional), The agreements.* field must be a string., The agreements.* field must not be greater than 32 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_businesses/:project_business","description":"<p>Update the specified ProjectBusiness . PUT/PATCH /project-businesses/{id}.</p>\n","urlObject":{"path":["api","v1","project_businesses",":project_business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_business"}]}},"response":[],"_postman_id":"39b6cd99-8500-4337-b747-e8ed64ae636a"},{"name":"api/v1/project_businesses/{project_business}","id":"fd1dea3e-a56a-40f5-965a-f08958729991","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>The business id field is required.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required.</p>\n","type":"text"},{"key":"disallowed_types","value":null,"description":"<p>(Nullable), The disallowed types field must be an array.</p>\n","type":"text"},{"key":"disallowed_types.*","value":null,"description":"<p>(Optional), The disallowed types.* field must be a string., The disallowed types.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"notes","value":null,"description":"<p>(Nullable), The notes field must be a string., The notes field must not be greater than 500 characters.</p>\n","type":"text"},{"key":"is_approved","value":null,"description":"<p>The is approved field is required., The is approved field must be true or false.</p>\n","type":"text"},{"key":"agreements","value":null,"description":"<p>(Nullable), The agreements field must be an array.</p>\n","type":"text"},{"key":"agreements.*","value":null,"description":"<p>(Optional), The agreements.* field must be a string., The agreements.* field must not be greater than 32 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_businesses/:project_business","description":"<p>Update the specified ProjectBusiness . PUT/PATCH /project-businesses/{id}.</p>\n","urlObject":{"path":["api","v1","project_businesses",":project_business"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_business"}]}},"response":[],"_postman_id":"fd1dea3e-a56a-40f5-965a-f08958729991"}],"id":"ee1cd320-387e-4170-9d9f-30a91aea0043","_postman_id":"ee1cd320-387e-4170-9d9f-30a91aea0043","description":""}],"id":"085b8b83-6d00-46b2-8ebd-caba0fab483b","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> agreements</code>,<code> business_id</code>,<code> disallowed_types</code>,<code> is_approved</code>,<code> notes</code>,<code> project_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"085b8b83-6d00-46b2-8ebd-caba0fab483b"},{"name":"Project Closeout","item":[{"name":"Export","item":[{"name":"api/v1/project_closeout/file_export","id":"bff3b0af-fd40-48be-a2fe-5b28e36d41ce","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_closeout/file_export","description":"<p>Request project closeout file export.</p>\n","urlObject":{"path":["api","v1","project_closeout","file_export"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bff3b0af-fd40-48be-a2fe-5b28e36d41ce"}],"id":"910fac89-9338-4ef8-8f3e-d3f1b3118ccf","_postman_id":"910fac89-9338-4ef8-8f3e-d3f1b3118ccf","description":""}],"id":"7262df83-8506-43e8-ac5c-11473215aa79","_postman_id":"7262df83-8506-43e8-ac5c-11473215aa79","description":""},{"name":"Project Customizations","item":[{"name":"Destroy","item":[{"name":"api/v1/project_customizations/{project_customization}","id":"6c42290b-37e0-4331-8910-2feadd16d4ad","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_customizations/:project_customization","description":"<p>Remove the specified <code>Project</code> from storage.</p>\n","urlObject":{"path":["api","v1","project_customizations",":project_customization"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_customization"}]}},"response":[],"_postman_id":"6c42290b-37e0-4331-8910-2feadd16d4ad"}],"id":"25fecc4e-549c-4879-bd7a-9bb16e95640f","_postman_id":"25fecc4e-549c-4879-bd7a-9bb16e95640f","description":""},{"name":"Index","item":[{"name":"api/v1/project_customizations","id":"bd80e3cb-2246-4659-b7c9-086e8ee82bdc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_customizations","description":"<p>Returns a list of multiple <code>ProjectCustomization</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","project_customizations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd80e3cb-2246-4659-b7c9-086e8ee82bdc"}],"id":"727c2f9a-1be8-4728-aa6f-642c2785453a","_postman_id":"727c2f9a-1be8-4728-aa6f-642c2785453a","description":""},{"name":"Show","item":[{"name":"api/v1/project_customizations/{project_customization}","id":"511e8238-2261-4785-8c26-9c91a8ef183b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_customizations/:project_customization","description":"<p>Display the specified <code>ProjectCustomization</code>.</p>\n","urlObject":{"path":["api","v1","project_customizations",":project_customization"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_customization"}]}},"response":[],"_postman_id":"511e8238-2261-4785-8c26-9c91a8ef183b"}],"id":"b6fc6704-526a-442d-b90f-bbaacda38bbe","_postman_id":"b6fc6704-526a-442d-b90f-bbaacda38bbe","description":""}],"id":"55cb65d0-2b40-4e1d-8164-1a7b85b38760","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> key</code>,<code> project_id</code>,<code> team_id</code>,</p>\n","_postman_id":"55cb65d0-2b40-4e1d-8164-1a7b85b38760"},{"name":"Project File Exports","item":[{"name":"Destroy","item":[{"name":"api/v1/project_file_exports/{project_file_export}","id":"3c1c4218-fa27-4e16-9408-7953073e2e9a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_file_exports/:project_file_export","description":"<p>Remove the specified <code>ProjectFileExport</code> from storage.</p>\n","urlObject":{"path":["api","v1","project_file_exports",":project_file_export"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_file_export"}]}},"response":[],"_postman_id":"3c1c4218-fa27-4e16-9408-7953073e2e9a"}],"id":"ac738571-338c-4594-93bc-d3b6e67427ae","_postman_id":"ac738571-338c-4594-93bc-d3b6e67427ae","description":""},{"name":"Index","item":[{"name":"api/v1/project_file_exports","id":"785ecf4c-c1e2-49b7-ab06-2e89215f59f2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_file_exports","description":"<p>Returns a list of multiple <code>ProjectFileExport</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","project_file_exports"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"785ecf4c-c1e2-49b7-ab06-2e89215f59f2"}],"id":"b63548ec-642b-47a9-a2d0-12e1b2e9df82","_postman_id":"b63548ec-642b-47a9-a2d0-12e1b2e9df82","description":""},{"name":"Show","item":[{"name":"api/v1/project_file_exports/{project_file_export}","id":"ec2a13e3-5bef-4150-9aea-0e3025fa875b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_file_exports/:project_file_export","description":"<p>Display the specified <code>ProjectFileExport</code>.</p>\n","urlObject":{"path":["api","v1","project_file_exports",":project_file_export"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_file_export"}]}},"response":[],"_postman_id":"ec2a13e3-5bef-4150-9aea-0e3025fa875b"}],"id":"cc5574c5-36fb-45ab-a244-82639f05ad20","_postman_id":"cc5574c5-36fb-45ab-a244-82639f05ad20","description":""},{"name":"Update","item":[{"name":"api/v1/project_file_exports/{project_file_export}","id":"93c6e6b8-3b0e-422d-8958-869b3e856b11","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"filename","value":null,"description":"<p>(Optional), The filename field must be a string., The filename field must not be greater than 144 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_file_exports/:project_file_export","description":"<p>Update the specified <code>ProjectFileExport</code> . This process only handles the document data and will not modify the underlying file.</p>\n","urlObject":{"path":["api","v1","project_file_exports",":project_file_export"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_file_export"}]}},"response":[],"_postman_id":"93c6e6b8-3b0e-422d-8958-869b3e856b11"},{"name":"api/v1/project_file_exports/{project_file_export}","id":"c65c5cde-23cf-492c-8344-5b36231559c2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"filename","value":null,"description":"<p>(Optional), The filename field must be a string., The filename field must not be greater than 144 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_file_exports/:project_file_export","description":"<p>Update the specified <code>ProjectFileExport</code> . This process only handles the document data and will not modify the underlying file.</p>\n","urlObject":{"path":["api","v1","project_file_exports",":project_file_export"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project_file_export"}]}},"response":[],"_postman_id":"c65c5cde-23cf-492c-8344-5b36231559c2"}],"id":"585b8371-d363-4a96-94de-06680676b504","_postman_id":"585b8371-d363-4a96-94de-06680676b504","description":""}],"id":"72a9cf55-38fa-4e93-859d-46de4a68d060","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> checksum</code>,<code> extension</code>,<code> filename</code>,<code> percent_complete</code>,<code> project_id</code>,<code> size</code>,<code> status</code>,<code> user_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"72a9cf55-38fa-4e93-859d-46de4a68d060"},{"name":"Projects","item":[{"name":"All Projects","item":[{"name":"api/v1/projects/all","id":"c01cc640-3134-4abb-bb81-ceb917464d7a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/all","description":"<p>Provides non sensitive data for all <code>Projects</code> for the purpose of listings.</p>\n","urlObject":{"path":["api","v1","projects","all"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c01cc640-3134-4abb-bb81-ceb917464d7a"}],"id":"3a25b4ac-b278-4f7f-972e-355639379008","_postman_id":"3a25b4ac-b278-4f7f-972e-355639379008","description":""},{"name":"Chains","item":[{"name":"api/v1/projects/{project}/chain","id":"5979626f-b945-49b7-9839-01ac9c908c82","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/chain","description":"<p>Return all of the orderable chains within the context of a <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","projects",":project","chain"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"5979626f-b945-49b7-9839-01ac9c908c82"}],"id":"ab54543f-b315-48f4-b63c-ac8d470dc920","_postman_id":"ab54543f-b315-48f4-b63c-ac8d470dc920","description":""},{"name":"Config Show","item":[{"name":"api/v1/projects/{project}/config","id":"efe947f8-cd1c-48d3-a936-ed89f848a865","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/config","description":"<p>Prepares the <code>Projects</code> Customization.</p>\n","urlObject":{"path":["api","v1","projects",":project","config"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"efe947f8-cd1c-48d3-a936-ed89f848a865"}],"id":"5ebb408e-24ed-4e81-b0f3-3993ef5243b1","_postman_id":"5ebb408e-24ed-4e81-b0f3-3993ef5243b1","description":""},{"name":"Config Update Or Create","item":[{"name":"api/v1/projects/{project}/config","id":"9042370b-52d7-498d-9985-04a9698dee82","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"dates_bid","value":null,"description":"<p>(Nullable), The dates bid field must be an array.</p>\n","type":"text"},{"key":"dates_bid.*.name","value":null,"description":"<p>The dates bid.<em>.name field is required when dates bid is present., The dates bid.</em>.name field must be a string., The dates bid.<em>.name field must be at least 1 characters., The dates bid.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_bid.*.slug","value":null,"description":"<p>The dates bid.<em>.slug field is required when dates bid is present., The dates bid.</em>.slug field must be a string., The dates bid.<em>.slug field must be at least 1 characters., The dates bid.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_bid.*.required","value":null,"description":"<p>The dates bid.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_expedite","value":null,"description":"<p>(Nullable), The dates expedite field must be an array.</p>\n","type":"text"},{"key":"dates_expedite.*.name","value":null,"description":"<p>The dates expedite.<em>.name field is required when dates expedite is present., The dates expedite.</em>.name field must be a string., The dates expedite.<em>.name field must be at least 1 characters., The dates expedite.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_expedite.*.slug","value":null,"description":"<p>The dates expedite.<em>.slug field is required when dates expedite is present., The dates expedite.</em>.slug field must be a string., The dates expedite.<em>.slug field must be at least 1 characters., The dates expedite.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_expedite.*.required","value":null,"description":"<p>The dates expedite.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_offer","value":null,"description":"<p>(Nullable), The dates offer field must be an array.</p>\n","type":"text"},{"key":"dates_offer.*.name","value":null,"description":"<p>The dates offer.<em>.name field is required when dates offer is present., The dates offer.</em>.name field must be a string., The dates offer.<em>.name field must be at least 1 characters., The dates offer.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_offer.*.slug","value":null,"description":"<p>The dates offer.<em>.slug field is required when dates offer is present., The dates offer.</em>.slug field must be a string., The dates offer.<em>.slug field must be at least 1 characters., The dates offer.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_offer.*.required","value":null,"description":"<p>The dates offer.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_order","value":null,"description":"<p>(Nullable), The dates order field must be an array.</p>\n","type":"text"},{"key":"dates_order.*.name","value":null,"description":"<p>The dates order.<em>.name field is required when dates order is present., The dates order.</em>.name field must be a string., The dates order.<em>.name field must be at least 1 characters., The dates order.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_order.*.slug","value":null,"description":"<p>The dates order.<em>.slug field is required when dates order is present., The dates order.</em>.slug field must be a string., The dates order.<em>.slug field must be at least 1 characters., The dates order.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_order.*.required","value":null,"description":"<p>The dates order.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_purchase_order","value":null,"description":"<p>(Nullable), The dates purchase order field must be an array.</p>\n","type":"text"},{"key":"dates_purchase_order.*.name","value":null,"description":"<p>The dates purchase order.<em>.name field is required when dates purchase order is present., The dates purchase order.</em>.name field must be a string., The dates purchase order.<em>.name field must be at least 1 characters., The dates purchase order.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_purchase_order.*.slug","value":null,"description":"<p>The dates purchase order.<em>.slug field is required when dates purchase order is present., The dates purchase order.</em>.slug field must be a string., The dates purchase order.<em>.slug field must be at least 1 characters., The dates purchase order.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_purchase_order.*.required","value":null,"description":"<p>The dates purchase order.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_requisition","value":null,"description":"<p>(Nullable), The dates requisition field must be an array.</p>\n","type":"text"},{"key":"dates_requisition.*.name","value":null,"description":"<p>The dates requisition.<em>.name field is required when dates requisition is present., The dates requisition.</em>.name field must be a string., The dates requisition.<em>.name field must be at least 1 characters., The dates requisition.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_requisition.*.slug","value":null,"description":"<p>The dates requisition.<em>.slug field is required when dates requisition is present., The dates requisition.</em>.slug field must be a string., The dates requisition.<em>.slug field must be at least 1 characters., The dates requisition.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_requisition.*.required","value":null,"description":"<p>The dates requisition.*.required field must be true or false.</p>\n","type":"text"},{"key":"inspection_requirement_terms","value":null,"description":"<p>(Nullable), The inspection requirement terms field must be a string.</p>\n","type":"text"},{"key":"release_order_terms","value":null,"description":"<p>(Nullable), The release order terms field must be a string.</p>\n","type":"text"},{"key":"receiving_report_terms","value":null,"description":"<p>(Nullable), The receiving report terms field must be a string.</p>\n","type":"text"},{"key":"service_release_terms","value":null,"description":"<p>(Nullable), The service release terms field must be a string.</p>\n","type":"text"},{"key":"evaluations_bid","value":null,"description":"<p>(Nullable), The evaluations bid field must be an array.</p>\n","type":"text"},{"key":"evaluations_bid.*.title","value":null,"description":"<p>The evaluations bid.<em>.title field is required when evaluations bid is present., The evaluations bid.</em>.title field must be a string., The evaluations bid.<em>.title field must be at least 1 characters., The evaluations bid.</em>.title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"evaluations_bid.*.field_type","value":null,"description":"<p>The evaluations bid.<em>.field type field is required when evaluations bid is present., The evaluations bid.</em>.field type field must be a string., The evaluations bid.<em>.field type field must be at least 1 characters., The evaluations bid.</em>.field type field must not be greater than 12 characters.</p>\n","type":"text"},{"key":"evaluations_bid.*.select_options","value":null,"description":"<p>(Nullable), The evaluations bid.*.select options field must be an array.</p>\n","type":"text"},{"key":"evaluations_bid.*.select_options.*","value":null,"description":"<p>The evaluations bid.<em>.select options.</em> field is required when evaluations bid.select options is present., The evaluations bid.<em>.select options.</em> field must be a string., The evaluations bid.<em>.select options.</em> field must be at least 1 characters., The evaluations bid.<em>.select options.</em> field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"evaluations_offer","value":null,"description":"<p>(Nullable), The evaluations offer field must be an array.</p>\n","type":"text"},{"key":"evaluations_offer.*.title","value":null,"description":"<p>The evaluations offer.<em>.title field is required when evaluations offer is present., The evaluations offer.</em>.title field must be a string., The evaluations offer.<em>.title field must be at least 1 characters., The evaluations offer.</em>.title field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"evaluations_offer.*.field_type","value":null,"description":"<p>The evaluations offer.<em>.field type field is required when evaluations offer is present., The evaluations offer.</em>.field type field must be a string., The evaluations offer.<em>.field type field must be at least 1 characters., The evaluations offer.</em>.field type field must not be greater than 12 characters.</p>\n","type":"text"},{"key":"evaluations_offer.*.select_options","value":null,"description":"<p>(Nullable), The evaluations offer.*.select options field must be an array.</p>\n","type":"text"},{"key":"evaluations_offer.*.select_options.*","value":null,"description":"<p>The evaluations offer.<em>.select options.</em> field must be a string., The evaluations offer.<em>.select options.</em> field must be at least 1 characters., The evaluations offer.<em>.select options.</em> field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"print_area_contract_1","value":null,"description":"<p>(Optional), The print area contract 1 field must be a string.</p>\n","type":"text"},{"key":"print_area_contract_2","value":null,"description":"<p>(Optional), The print area contract 2 field must be a string.</p>\n","type":"text"},{"key":"print_area_contract_3","value":null,"description":"<p>(Optional), The print area contract 3 field must be a string.</p>\n","type":"text"},{"key":"print_area_technical_1","value":null,"description":"<p>(Optional), The print area technical 1 field must be a string.</p>\n","type":"text"},{"key":"print_area_technical_2","value":null,"description":"<p>(Optional), The print area technical 2 field must be a string.</p>\n","type":"text"},{"key":"print_area_technical_3","value":null,"description":"<p>(Optional), The print area technical 3 field must be a string.</p>\n","type":"text"},{"key":"triggers_line_item_revisions_orders","value":null,"description":"<p>(Nullable), The triggers line item revisions orders field must be an array.</p>\n","type":"text"},{"key":"triggers_line_item_revisions_orders.*","value":null,"description":"<p>The triggers line item revisions orders.* field is required when triggers line item revisions orders is present., The selected triggers line item revisions orders.* is invalid, it must exist in line_number, quantity, unit_price, subtotal, inspection_level, promised_by_date, comment.</p>\n","type":"text"},{"key":"allowed_invoice_overage_tolerance","value":null,"description":"<p>(Nullable), (Optional), The allowed invoice overage tolerance field must be an integer., The allowed invoice overage tolerance field must be at least 0., The allowed invoice overage tolerance field must not be greater than 100.</p>\n","type":"text"},{"key":"allowed_invoice_value_tolerance","value":null,"description":"<p>(Optional), The allowed invoice value tolerance field must be a number., The allowed invoice value tolerance field must be at least 0.</p>\n","type":"text"},{"key":"bids_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Nullable), (Optional), The bids must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"bid_items_must_be_purchasable","value":null,"description":"<p>(Nullable), The bid items must be purchasable field must be true or false.</p>\n","type":"text"},{"key":"bid_print_incoterms","value":null,"description":"<p>(Nullable), The bid print incoterms field must be true or false.</p>\n","type":"text"},{"key":"client_supplied_revisioning","value":null,"description":"<p>(Optional), The client supplied revisioning field must be true or false.</p>\n","type":"text"},{"key":"expediting_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Nullable), (Optional), The expediting must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"issue_bids_to_approved_vendors_only","value":null,"description":"<p>(Nullable), (Optional), The issue bids to approved vendors only field must be true or false.</p>\n","type":"text"},{"key":"issue_orders_to_approved_vendors_only","value":null,"description":"<p>(Nullable), (Optional), The issue orders to approved vendors only field must be true or false.</p>\n","type":"text"},{"key":"offers_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Nullable), (Optional), The offers must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"offer_items_must_be_purchasable","value":null,"description":"<p>(Nullable), The offer items must be purchasable field must be true or false.</p>\n","type":"text"},{"key":"order_custom_field_is_printed","value":null,"description":"<p>(Nullable), (Optional), The order custom field is printed field must be true or false.</p>\n","type":"text"},{"key":"order_custom_field_keys","value":null,"description":"<p>(Nullable), (Optional), The order custom field keys field must be an array.</p>\n","type":"text"},{"key":"order_items_custom_field_keys","value":null,"description":"<p>(Nullable), (Optional), The order items custom field keys field must be an array.</p>\n","type":"text"},{"key":"order_items_documentation_required","value":null,"description":"<p>(Nullable), The order items documentation required field must be true or false.</p>\n","type":"text"},{"key":"order_items_must_have_cost_codes","value":null,"description":"<p>(Nullable), The order items must have cost codes field must be true or false.</p>\n","type":"text"},{"key":"order_items_must_be_purchasable","value":null,"description":"<p>(Nullable), The order items must be purchasable field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_quantity_in_quarantine","value":null,"description":"<p>(Nullable), (Optional), The projects must not have quantity in quarantine field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_inventory","value":null,"description":"<p>(Nullable), (Optional), The projects must not have inventory field must be true or false.</p>\n","type":"text"},{"key":"project_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Nullable), (Optional), The project must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"po_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Nullable), (Optional), The po must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"purchase_order_invoices_must_be_closed","value":null,"description":"<p>(Nullable), (Optional), The purchase order invoices must be closed field must be true or false.</p>\n","type":"text"},{"key":"po_invoice_values_must_be_within_tolerance","value":null,"description":"<p>(Nullable), (Optional), The po invoice values must be within tolerance field must be true or false.</p>\n","type":"text"},{"key":"po_must_not_have_outstanding_receiving","value":null,"description":"<p>(Nullable), (Optional), The po must not have outstanding receiving field must be true or false.</p>\n","type":"text"},{"key":"po_must_not_have_incomplete_releases","value":null,"description":"<p>(Nullable), (Optional), The po must not have incomplete releases field must be true or false.</p>\n","type":"text"},{"key":"order_cannot_have_incomplete_document_requirements","value":null,"description":"<p>(Nullable), (Optional), The order cannot have incomplete document requirements field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_open_orders","value":null,"description":"<p>(Nullable), (Optional), The projects must not have open orders field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_open_bids","value":null,"description":"<p>(Nullable), (Optional), The projects must not have open bids field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_open_requisitions","value":null,"description":"<p>(Nullable), (Optional), The projects must not have open requisitions field must be true or false.</p>\n","type":"text"},{"key":"requisition_items_must_be_purchasable","value":null,"description":"<p>(Nullable), The requisition items must be purchasable field must be true or false.</p>\n","type":"text"},{"key":"requisition_has_user_defined_revision","value":null,"description":"<p>(Nullable), The requisition has user defined revision field must be true or false.</p>\n","type":"text"},{"key":"requisition_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Nullable), (Optional), The requisition must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"requisition_user_defined_revision","value":null,"description":"<p>(Nullable), The requisition user defined revision field must be a string., The requisition user defined revision field must be at least 1 characters., The requisition user defined revision field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"show_bid_revisions_on_exports","value":null,"description":"<p>(Nullable), (Optional), The show bid revisions on exports field must be true or false.</p>\n","type":"text"},{"key":"show_required_at_site_date_on_purchase_orders","value":null,"description":"<p>(Nullable), (Optional), The show required at site date on purchase orders field must be true or false.</p>\n","type":"text"},{"key":"show_requisition_budget_on_exports","value":null,"description":"<p>(Nullable), (Optional), The show requisition budget on exports field must be true or false.</p>\n","type":"text"},{"key":"show_requisition_groupings_on_exports","value":null,"description":"<p>(Nullable), (Optional), The show requisition groupings on exports field must be true or false.</p>\n","type":"text"},{"key":"show_requisition_bidders_on_exports","value":null,"description":"<p>(Nullable), (Optional), The show requisition bidders on exports field must be true or false.</p>\n","type":"text"},{"key":"show_document_requirement_descriptions_on_exports","value":null,"description":"<p>(Nullable), (Optional), The show document requirement descriptions on exports field must be true or false.</p>\n","type":"text"},{"key":"show_purchase_order_revisions_on_exports","value":null,"description":"<p>(Nullable), (Optional), The show purchase order revisions on exports field must be true or false.</p>\n","type":"text"},{"key":"print_client_supplied_on_order_exports","value":null,"description":"<p>(Nullable), (Optional), The print client supplied on order exports field must be true or false.</p>\n","type":"text"},{"key":"auto_send_bids","value":null,"description":"<p>(Nullable), (Optional), The auto send bids field must be true or false.</p>\n","type":"text"},{"key":"require_purchase_items_on_orders","value":null,"description":"<p>(Nullable), (Optional), The require purchase items on orders field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_bids_enabled","value":null,"description":"<p>(Nullable), (Optional), The default group approvals bids enabled field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_bids_array","value":null,"description":"<p>(Nullable), (Optional), The default group approvals bids array field must be an array.</p>\n","type":"text"},{"key":"default_group_approvals_bids_array.*.is_required","value":null,"description":"<p>The default group approvals bids array.<em>.is required field is required., The default group approvals bids array.</em>.is required field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_bids_array.*.requested_user_id","value":null,"description":"<p>(Nullable), The default group approvals bids array.<em>.requested user id field must be an integer., The default group approvals bids array.</em>.requested user id field must be at least 0 characters., The default group approvals bids array.*.requested user id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"default_group_approvals_bids_array.*.responsibility","value":null,"description":"<p>(Nullable), The default group approvals bids array.<em>.responsibility field must be a string., The default group approvals bids array.</em>.responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"default_group_approvals_orders_enabled","value":null,"description":"<p>(Nullable), (Optional), The default group approvals orders enabled field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_orders_array","value":null,"description":"<p>(Nullable), (Optional), The default group approvals orders array field must be an array.</p>\n","type":"text"},{"key":"default_group_approvals_orders_array.*.is_required","value":null,"description":"<p>The default group approvals orders array.<em>.is required field is required., The default group approvals orders array.</em>.is required field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_orders_array.*.requested_user_id","value":null,"description":"<p>(Nullable), The default group approvals orders array.<em>.requested user id field must be an integer., The default group approvals orders array.</em>.requested user id field must be at least 0 characters., The default group approvals orders array.*.requested user id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"default_group_approvals_orders_array.*.responsibility","value":null,"description":"<p>(Nullable), The default group approvals orders array.<em>.responsibility field must be a string., The default group approvals orders array.</em>.responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_enabled","value":null,"description":"<p>(Nullable), (Optional), The default group approvals requisitions enabled field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_array","value":null,"description":"<p>(Nullable), (Optional), The default group approvals requisitions array field must be an array.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_array.*.is_required","value":null,"description":"<p>The default group approvals requisitions array.<em>.is required field is required., The default group approvals requisitions array.</em>.is required field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_array.*.requested_user_id","value":null,"description":"<p>(Nullable), The default group approvals requisitions array.<em>.requested user id field must be an integer., The default group approvals requisitions array.</em>.requested user id field must be at least 0 characters., The default group approvals requisitions array.*.requested user id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_array.*.responsibility","value":null,"description":"<p>(Nullable), The default group approvals requisitions array.<em>.responsibility field must be a string., The default group approvals requisitions array.</em>.responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"smart_dates_project","value":null,"description":"<p>(Nullable), The smart dates project field must be an array.</p>\n","type":"text"},{"key":"smart_dates_project.*.sequence","value":null,"description":"<p>The smart dates project.<em>.sequence field is required when smart dates project is present., The smart dates project.</em>.sequence field must be a string., The smart dates project.<em>.sequence field must be at least 1 characters., The smart dates project.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_project.*.description","value":null,"description":"<p>The smart dates project.<em>.description field is required when smart dates project is present., The smart dates project.</em>.description field must be a string., The smart dates project.<em>.description field must be at least 1 characters., The smart dates project.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_project.*.smart_intervals","value":null,"description":"<p>The smart dates project.<em>.smart intervals field is required when smart dates project is present., The smart dates project.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_project.*.smart_intervals.*","value":null,"description":"<p>The smart dates project.<em>.smart intervals.</em> field must be an integer., The smart dates project.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates project.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_requisition","value":null,"description":"<p>(Nullable), The smart dates requisition field must be an array.</p>\n","type":"text"},{"key":"smart_dates_requisition.*.sequence","value":null,"description":"<p>The smart dates requisition.<em>.sequence field is required when smart dates requisition is present., The smart dates requisition.</em>.sequence field must be a string., The smart dates requisition.<em>.sequence field must be at least 1 characters., The smart dates requisition.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_requisition.*.description","value":null,"description":"<p>The smart dates requisition.<em>.description field is required when smart dates requisition is present., The smart dates requisition.</em>.description field must be a string., The smart dates requisition.<em>.description field must be at least 1 characters., The smart dates requisition.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_requisition.*.smart_intervals","value":null,"description":"<p>The smart dates requisition.<em>.smart intervals field is required when smart dates requisition is present., The smart dates requisition.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_requisition.*.smart_intervals.*","value":null,"description":"<p>The smart dates requisition.<em>.smart intervals.</em> field must be an integer., The smart dates requisition.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates requisition.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_bid","value":null,"description":"<p>(Nullable), The smart dates bid field must be an array.</p>\n","type":"text"},{"key":"smart_dates_bid.*.sequence","value":null,"description":"<p>The smart dates bid.<em>.sequence field is required when smart dates bid is present., The smart dates bid.</em>.sequence field must be a string., The smart dates bid.<em>.sequence field must be at least 1 characters., The smart dates bid.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_bid.*.description","value":null,"description":"<p>The smart dates bid.<em>.description field is required when smart dates bid is present., The smart dates bid.</em>.description field must be a string., The smart dates bid.<em>.description field must be at least 1 characters., The smart dates bid.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_bid.*.smart_intervals","value":null,"description":"<p>The smart dates bid.<em>.smart intervals field is required when smart dates bid is present., The smart dates bid.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_bid.*.smart_intervals.*","value":null,"description":"<p>The smart dates bid.<em>.smart intervals.</em> field must be an integer., The smart dates bid.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates bid.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_offer","value":null,"description":"<p>(Nullable), The smart dates offer field must be an array.</p>\n","type":"text"},{"key":"smart_dates_offer.*.sequence","value":null,"description":"<p>The smart dates offer.<em>.sequence field is required when smart dates offer is present., The smart dates offer.</em>.sequence field must be a string., The smart dates offer.<em>.sequence field must be at least 1 characters., The smart dates offer.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_offer.*.description","value":null,"description":"<p>The smart dates offer.<em>.description field is required when smart dates offer is present., The smart dates offer.</em>.description field must be a string., The smart dates offer.<em>.description field must be at least 1 characters., The smart dates offer.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_offer.*.smart_intervals","value":null,"description":"<p>The smart dates offer.<em>.smart intervals field is required when smart dates offer is present., The smart dates offer.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_offer.*.smart_intervals.*","value":null,"description":"<p>The smart dates offer.<em>.smart intervals.</em> field must be an integer., The smart dates offer.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates offer.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_order","value":null,"description":"<p>(Nullable), The smart dates order field must be an array.</p>\n","type":"text"},{"key":"smart_dates_order.*.sequence","value":null,"description":"<p>The smart dates order.<em>.sequence field is required when smart dates order is present., The smart dates order.</em>.sequence field must be a string., The smart dates order.<em>.sequence field must be at least 1 characters., The smart dates order.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_order.*.description","value":null,"description":"<p>The smart dates order.<em>.description field is required when smart dates order is present., The smart dates order.</em>.description field must be a string., The smart dates order.<em>.description field must be at least 1 characters., The smart dates order.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_order.*.smart_intervals","value":null,"description":"<p>The smart dates order.<em>.smart intervals field is required when smart dates order is present., The smart dates order.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_order.*.smart_intervals.*","value":null,"description":"<p>The smart dates order.<em>.smart intervals.</em> field must be an integer., The smart dates order.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates order.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_expedite","value":null,"description":"<p>(Nullable), The smart dates expedite field must be an array.</p>\n","type":"text"},{"key":"smart_dates_expedite.*.sequence","value":null,"description":"<p>The smart dates expedite.<em>.sequence field is required when smart dates expedite is present., The smart dates expedite.</em>.sequence field must be a string., The smart dates expedite.<em>.sequence field must be at least 1 characters., The smart dates expedite.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_expedite.*.description","value":null,"description":"<p>The smart dates expedite.<em>.description field is required when smart dates expedite is present., The smart dates expedite.</em>.description field must be a string., The smart dates expedite.<em>.description field must be at least 1 characters., The smart dates expedite.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_expedite.*.smart_intervals","value":null,"description":"<p>The smart dates expedite.<em>.smart intervals field is required when smart dates expedite is present., The smart dates expedite.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_expedite.*.smart_intervals.*","value":null,"description":"<p>The smart dates expedite.<em>.smart intervals.</em> field must be an integer., The smart dates expedite.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates expedite.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"custom_location_label","value":null,"description":"<p>(Nullable), The custom location label field must be an array.</p>\n","type":"text"},{"key":"custom_location_label.*.location_id","value":null,"description":"<p>The custom location label.<em>.location id field is required when custom location label is present., The custom location label.</em>.location id field must be an integer., The custom location label.<em>.location id field must be at least 0 characters., The custom location label.</em>.location id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"custom_location_label.*.custom_label","value":null,"description":"<p>The custom location label.<em>.custom label field is required when custom location label is present., The custom location label.</em>.custom label field must be a string., The custom location label.<em>.custom label field must be at least 1 characters., The custom location label.</em>.custom label field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/projects/:project/config","description":"<p>Update the specified <code>ProjectCustomization</code> .</p>\n","urlObject":{"path":["api","v1","projects",":project","config"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"9042370b-52d7-498d-9985-04a9698dee82"}],"id":"434a5d79-99aa-4d24-853c-9e43a1510fda","_postman_id":"434a5d79-99aa-4d24-853c-9e43a1510fda","description":""},{"name":"Cumulative Bom","item":[{"name":"api/v1/projects/{project}/billofmaterials","id":"f6fc181a-4448-4fae-8c74-b6ef5c342e9b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/billofmaterials","description":"<p>Generates data for visualize the <code>Project</code> cumulative BOM.</p>\n","urlObject":{"path":["api","v1","projects",":project","billofmaterials"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"f6fc181a-4448-4fae-8c74-b6ef5c342e9b"}],"id":"fa719774-6230-4094-9048-6f51d6244254","_postman_id":"fa719774-6230-4094-9048-6f51d6244254","description":""},{"name":"Destroy","item":[{"name":"api/v1/projects/{project}","id":"d36b3c9c-0f38-4904-9973-57ff8ec5b97b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project","description":"<p>Remove the specified <code>Project</code> from storage.</p>\n","urlObject":{"path":["api","v1","projects",":project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"d36b3c9c-0f38-4904-9973-57ff8ec5b97b"}],"id":"d4fec016-7276-4966-9e67-088a5bfded4b","_postman_id":"d4fec016-7276-4966-9e67-088a5bfded4b","description":""},{"name":"History","item":[{"name":"api/v1/projects/{project}/history/{days}","id":"ef5c1d29-ae2d-4bfd-a1f9-d6a855a4684e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/history/:days","description":"<p>Get the team history.</p>\n","urlObject":{"path":["api","v1","projects",":project","history",":days"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"},{"type":"any","key":"days"}]}},"response":[],"_postman_id":"ef5c1d29-ae2d-4bfd-a1f9-d6a855a4684e"}],"id":"b1fa95d2-3ee7-48d2-a0f8-3dfc13923f8e","_postman_id":"b1fa95d2-3ee7-48d2-a0f8-3dfc13923f8e","description":""},{"name":"Index","item":[{"name":"api/v1/projects","id":"ba51eb3b-840e-41ba-8bf6-433a550346f6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects","description":"<p>Returns a list of multiple <code>Project</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","projects"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba51eb3b-840e-41ba-8bf6-433a550346f6"}],"id":"5ea6918f-ef44-4554-bd25-66bfa5683af1","_postman_id":"5ea6918f-ef44-4554-bd25-66bfa5683af1","description":""},{"name":"Project Clone","item":[{"name":"api/v1/projects/{project}/clone","id":"04154ca7-e96f-4f53-bcbd-cafc8db7c31c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/clone","description":"<p>Clones the incoming project.</p>\n","urlObject":{"path":["api","v1","projects",":project","clone"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"04154ca7-e96f-4f53-bcbd-cafc8db7c31c"}],"id":"4bf1725c-c286-45ec-b314-37703a120c7f","_postman_id":"4bf1725c-c286-45ec-b314-37703a120c7f","description":""},{"name":"Project Partial Clone","item":[{"name":"api/v1/projects/partialclone","id":"a1b9bc70-1865-4a9c-a299-b8a3ee7f4263","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_project_id","value":null,"description":"<p>The source project id field is required., The source project id field must be an integer.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required., The target project id field must be an integer.</p>\n","type":"text"},{"key":"cloners","value":null,"description":"<p>The cloners field is required., The cloners field must be an array., The cloners field must have at least 1 items.</p>\n","type":"text"},{"key":"cloners.*","value":null,"description":"<p>The cloners.* field must be a string., The cloners.* field has a duplicate value., The selected cloners.* is invalid, it must exist in locations, dates, groupings_configuration, component_identifiers, project_customizations, team, spec_standards.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/projects/partialclone","description":"<p>Partially clones a project onto another project.</p>\n","urlObject":{"path":["api","v1","projects","partialclone"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1b9bc70-1865-4a9c-a299-b8a3ee7f4263"}],"id":"38632bd2-0b0a-4293-9722-2576e04ef632","_postman_id":"38632bd2-0b0a-4293-9722-2576e04ef632","description":""},{"name":"Project User Remove","item":[{"name":"api/v1/projects/{project}/removeuser","id":"8aacc9f3-849b-41a8-8cee-846430c60deb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/projects/:project/removeuser","urlObject":{"path":["api","v1","projects",":project","removeuser"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"8aacc9f3-849b-41a8-8cee-846430c60deb"}],"id":"346f641b-3127-4c72-b2f9-5415db08d2b6","_postman_id":"346f641b-3127-4c72-b2f9-5415db08d2b6","description":""},{"name":"Purchase Over Under","item":[{"name":"api/v1/projects/{project}/overunder","id":"5f9eb3f2-dcc9-484a-b1d1-58a946ab35a0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/overunder","description":"<p>Generates data for visualize the <code>Project</code> over and under vs BOM.</p>\n","urlObject":{"path":["api","v1","projects",":project","overunder"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"5f9eb3f2-dcc9-484a-b1d1-58a946ab35a0"}],"id":"dbd69030-0e50-4f05-9cd3-efa87094e53e","_postman_id":"dbd69030-0e50-4f05-9cd3-efa87094e53e","description":""},{"name":"Reassign Tasks","item":[{"name":"api/v1/projects/{project}/reassign_tasks","id":"dc886b5e-2ef8-4e7d-9092-454016bbc00a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"new_user_id","value":null,"description":"<p>The new user id field is required., The new user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/projects/:project/reassign_tasks","description":"<p>Reassigns the open <code>Tasks</code> from one <code>User</code> to another <code>User</code> within the context of a <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","projects",":project","reassign_tasks"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"dc886b5e-2ef8-4e7d-9092-454016bbc00a"}],"id":"3d1a35b1-c3ca-475b-b5d3-5f068181bcdc","_postman_id":"3d1a35b1-c3ca-475b-b5d3-5f068181bcdc","description":""},{"name":"Roles Add","item":[{"name":"api/v1/project_roles/add","id":"b93582e0-cb8b-4206-8587-19d0ab752313","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"role","value":null,"description":"<p>The role field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_roles/add","description":"<p>Attaches <code>User</code> to <code>Role</code> within Scope of <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","project_roles","add"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b93582e0-cb8b-4206-8587-19d0ab752313"}],"id":"a80b5f6a-6a14-4aee-848a-e3d3494de899","_postman_id":"a80b5f6a-6a14-4aee-848a-e3d3494de899","description":""},{"name":"Roles Delete","item":[{"name":"api/v1/project_roles/remove","id":"81a78b1b-16a7-4625-a821-d051b29f169d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"role","value":null,"description":"<p>The role field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_roles/remove","description":"<p>Detaches <code>User</code> from a <code>Role</code> within Scope of <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","project_roles","remove"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"81a78b1b-16a7-4625-a821-d051b29f169d"}],"id":"d4fa6b03-bc80-4e0c-8d29-6d3f1f37384f","_postman_id":"d4fa6b03-bc80-4e0c-8d29-6d3f1f37384f","description":""},{"name":"Roles Options","item":[{"name":"api/v1/project_roles/options/{project}","id":"bf3d506b-aa9f-43b9-9fe6-6a82b31f8db4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_roles/options/:project","description":"<p>Provides list of <code>Roles</code> available within <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","project_roles","options",":project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"bf3d506b-aa9f-43b9-9fe6-6a82b31f8db4"}],"id":"a63cb9c3-30cf-446b-83cd-2398f7620569","_postman_id":"a63cb9c3-30cf-446b-83cd-2398f7620569","description":""},{"name":"Roles Options Permissions","item":[{"name":"api/v1/project_roles/options/{project}/permissions","id":"dcf18d33-f51d-45c6-a0ad-613af5ba3788","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/project_roles/options/:project/permissions","description":"<p>Provides list of <code>Roles</code> available within <code>Project</code> and appends <code>Permissions</code> associated with each.</p>\n","urlObject":{"path":["api","v1","project_roles","options",":project","permissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"dcf18d33-f51d-45c6-a0ad-613af5ba3788"}],"id":"f190a2e1-4c58-4509-9ff1-152ec9016726","_postman_id":"f190a2e1-4c58-4509-9ff1-152ec9016726","description":""},{"name":"Show","item":[{"name":"api/v1/projects/{project}","id":"84d440ec-8d89-4922-ae58-1e2e60aec56d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project","description":"<p>Display the specified <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","projects",":project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"84d440ec-8d89-4922-ae58-1e2e60aec56d"}],"id":"5d1cfedc-72da-460b-8ad9-c9aeba46f96e","_postman_id":"5d1cfedc-72da-460b-8ad9-c9aeba46f96e","description":""},{"name":"Store","item":[{"name":"api/v1/projects","id":"85ea8e8a-4a1f-46bc-9882-66855a7770db","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_business_id","value":null,"description":"<p>The client business id field is required., The client business id field must be an integer.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>(Nullable), The cost structure id field must be an integer.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_bid_validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected default bid validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_offer_validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected default offer validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_order_validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected default order validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_requisition_validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected default requisition validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"pm_user_id","value":null,"description":"<p>(Nullable), The pm user id field must be an integer.</p>\n","type":"text"},{"key":"procurement_manager_user_id","value":null,"description":"<p>(Nullable), The procurement manager user id field must be an integer.</p>\n","type":"text"},{"key":"project_controls_manager_user_id","value":null,"description":"<p>(Nullable), The project controls manager user id field must be an integer.</p>\n","type":"text"},{"key":"engineering_manager_user_id","value":null,"description":"<p>(Nullable), The engineering manager user id field must be an integer.</p>\n","type":"text"},{"key":"project_description","value":null,"description":"<p>(Nullable), The project description field must be a string., The project description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_identifier","value":null,"description":"<p>(Nullable), The project identifier field must be a string., The project identifier field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"project_name","value":null,"description":"<p>(Nullable), The project name field must be a string., The project name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Nullable), The timezone field must be a string., The timezone field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/projects","description":"<p>Create a new <code>Project</code> object.</p>\n","urlObject":{"path":["api","v1","projects"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"85ea8e8a-4a1f-46bc-9882-66855a7770db"}],"id":"3adb9f64-c36c-47cf-a30e-871185682ed8","_postman_id":"3adb9f64-c36c-47cf-a30e-871185682ed8","description":""},{"name":"Sync Custom Permissions","item":[{"name":"api/v1/project_roles/sync_permissions","id":"d7ed9f5b-5f8f-4e1e-b6f8-6d66ed0a6fc7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required.</p>\n","type":"text"},{"key":"permission_names","value":null,"description":"<p>(Nullable), The permission names field must be an array.</p>\n","type":"text"},{"key":"permission_names.*","value":null,"description":"<p>(Nullable), The permission names.* field must be a string., The permission names.* field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/project_roles/sync_permissions","description":"<p>Synchronizes an array of <code>Permissions</code> to the <code>User</code> in the context of a specified <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","project_roles","sync_permissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7ed9f5b-5f8f-4e1e-b6f8-6d66ed0a6fc7"}],"id":"c49fd1d4-fe6f-48f2-a468-77065a1bf7df","_postman_id":"c49fd1d4-fe6f-48f2-a468-77065a1bf7df","description":""},{"name":"Team Access","item":[{"name":"api/v1/projects/{project}/teamaccess","id":"33c83655-37a1-4c06-9e7f-1f69aeeadea8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/projects/:project/teamaccess","description":"<p>Returns a listing of <code>Users</code> on the <code>Project</code> team.</p>\n","urlObject":{"path":["api","v1","projects",":project","teamaccess"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"33c83655-37a1-4c06-9e7f-1f69aeeadea8"}],"id":"2be3126e-b9b6-424e-b46d-3c146deb3c84","_postman_id":"2be3126e-b9b6-424e-b46d-3c146deb3c84","description":""},{"name":"Update","item":[{"name":"api/v1/projects/{project}","id":"c226a2b4-4add-4ae3-8967-190515c3c504","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_business_id","value":null,"description":"<p>(Optional), The client business id field must be an integer.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>(Optional), (Nullable), The cost structure id field must be an integer.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_bid_validation_graph_uuid","value":null,"description":"<p>(Optional), The selected default bid validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_offer_validation_graph_uuid","value":null,"description":"<p>(Optional), The selected default offer validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_order_validation_graph_uuid","value":null,"description":"<p>(Optional), The selected default order validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_requisition_validation_graph_uuid","value":null,"description":"<p>(Optional), The selected default requisition validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), (Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"pm_user_id","value":null,"description":"<p>(Nullable), The pm user id field must be an integer.</p>\n","type":"text"},{"key":"procurement_manager_user_id","value":null,"description":"<p>(Nullable), The procurement manager user id field must be an integer.</p>\n","type":"text"},{"key":"project_controls_manager_user_id","value":null,"description":"<p>(Nullable), The project controls manager user id field must be an integer.</p>\n","type":"text"},{"key":"engineering_manager_user_id","value":null,"description":"<p>(Nullable), The engineering manager user id field must be an integer.</p>\n","type":"text"},{"key":"project_description","value":null,"description":"<p>(Optional), (Nullable), The project description field must be a string., The project description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_identifier","value":null,"description":"<p>(Optional), The project identifier field must be a string., The project identifier field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"project_name","value":null,"description":"<p>(Optional), The project name field must be a string., The project name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Optional), (Nullable), The timezone field must be a string., The timezone field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/projects/:project","description":"<p>Update the specified <code>Project</code> .</p>\n","urlObject":{"path":["api","v1","projects",":project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"c226a2b4-4add-4ae3-8967-190515c3c504"},{"name":"api/v1/projects/{project}","id":"58c38990-97b3-4dba-a920-dbb9d1ea7440","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_business_id","value":null,"description":"<p>(Optional), The client business id field must be an integer.</p>\n","type":"text"},{"key":"cost_structure_id","value":null,"description":"<p>(Optional), (Nullable), The cost structure id field must be an integer.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"default_bid_validation_graph_uuid","value":null,"description":"<p>(Optional), The selected default bid validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_offer_validation_graph_uuid","value":null,"description":"<p>(Optional), The selected default offer validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_order_validation_graph_uuid","value":null,"description":"<p>(Optional), The selected default order validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_requisition_validation_graph_uuid","value":null,"description":"<p>(Optional), The selected default requisition validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), (Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"pm_user_id","value":null,"description":"<p>(Nullable), The pm user id field must be an integer.</p>\n","type":"text"},{"key":"procurement_manager_user_id","value":null,"description":"<p>(Nullable), The procurement manager user id field must be an integer.</p>\n","type":"text"},{"key":"project_controls_manager_user_id","value":null,"description":"<p>(Nullable), The project controls manager user id field must be an integer.</p>\n","type":"text"},{"key":"engineering_manager_user_id","value":null,"description":"<p>(Nullable), The engineering manager user id field must be an integer.</p>\n","type":"text"},{"key":"project_description","value":null,"description":"<p>(Optional), (Nullable), The project description field must be a string., The project description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_identifier","value":null,"description":"<p>(Optional), The project identifier field must be a string., The project identifier field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"project_name","value":null,"description":"<p>(Optional), The project name field must be a string., The project name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Optional), (Nullable), The timezone field must be a string., The timezone field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/projects/:project","description":"<p>Update the specified <code>Project</code> .</p>\n","urlObject":{"path":["api","v1","projects",":project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"project"}]}},"response":[],"_postman_id":"58c38990-97b3-4dba-a920-dbb9d1ea7440"}],"id":"e7ccad1d-3175-448c-9b3d-54a42cdf6eb8","_postman_id":"e7ccad1d-3175-448c-9b3d-54a42cdf6eb8","description":""}],"id":"968645af-0fb4-4c41-8b28-cf8583fe405b","description":"<p><code>Projects</code> are the primary organizational entity to group transactions.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> client_business_id</code>,<code> cost_structure_id</code>,<code> currency_code</code>,<code> default_taxes_id</code>,<code> engineering_manager_user_id</code>,<code> id</code>,<code> incoterm_id</code>,<code> is_active</code>,<code> manager_user_id</code>,<code> metadata</code>,<code> paymentterm_id</code>,<code> pm_user_id</code>,<code> project_controls_manager_user_id</code>,<code> project_description</code>,<code> project_identifier</code>,<code> project_name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billOfMaterials</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bill_of_materials</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billingPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>budget</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>client</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>datesNextWeek</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>defaultTax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>destination</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>engineeringManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fabricationPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>history</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>incoTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionActions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionReleases</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionRequirements</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspections</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryTransactions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>managerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>ncrs</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderableLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>origin</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>procurementManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectControlsManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesComplete</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesNextWeek</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesOnSchedule</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesOpen</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectDatesOverdue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectRoles</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasksComplete</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasksOnSchedule</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasksOpen</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTasksOverdue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>salesOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specStandards</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storagePlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>users</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>activity</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_invoice_overage_tolerance</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>budgetted_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>committed_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>committed_revenue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>display_name</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>invoiced_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>last_activity</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>planned_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>planned_revenue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project_access</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>start_date</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>users_count</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"968645af-0fb4-4c41-8b28-cf8583fe405b"},{"name":"Purchase Order Items","item":[{"name":"Index","item":[{"name":"api/v1/purchase_order_items","id":"0a320f0c-8872-4fca-a7e6-d400258efcb0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/purchase_order_items","description":"<p>Returns a list of multiple <code>PurchaseOrderItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","purchase_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a320f0c-8872-4fca-a7e6-d400258efcb0"}],"id":"6444fbdc-2e0d-4dd8-ae5f-8841df189169","_postman_id":"6444fbdc-2e0d-4dd8-ae5f-8841df189169","description":""},{"name":"Show","item":[{"name":"api/v1/purchase_order_items/{purchase_order_item}","id":"51a35f8c-9481-46cf-8a56-3290f5ec90ba","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/purchase_order_items/:purchase_order_item","description":"<p>Display the specified <code>PurchaseOrderItem</code>.</p>\n","urlObject":{"path":["api","v1","purchase_order_items",":purchase_order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"purchase_order_item"}]}},"response":[],"_postman_id":"51a35f8c-9481-46cf-8a56-3290f5ec90ba"}],"id":"12b77930-fcbb-4f48-9e44-c4116a3d79ce","_postman_id":"12b77930-fcbb-4f48-9e44-c4116a3d79ce","description":""}],"id":"8b9d55a4-80d0-405a-a5c2-6cad1956e095","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> budget</code>,<code> buyer_user_id</code>,<code> catalog_item_id</code>,<code> comment</code>,<code> expediting_level</code>,<code> expeditor_user_id</code>,<code> inspection_level</code>,<code> item_type</code>,<code> line_number</code>,<code> locked_order_id</code>,<code> metadata</code>,<code> offer_item_id</code>,<code> project_id</code>,<code> quantity</code>,<code> required_by_date</code>,<code> status</code>,<code> subtotal</code>,<code> taxes_id</code>,<code> team_id</code>,<code> unit_price</code>,<code> validation_graph_uuid</code>,</p>\n","_postman_id":"8b9d55a4-80d0-405a-a5c2-6cad1956e095"},{"name":"Purchase Orders","item":[{"name":"Index","item":[{"name":"api/v1/purchase_orders","id":"c139aa60-e4d9-4fcf-81d8-739b4b80f55d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/purchase_orders","description":"<p>Returns a list of multiple <code>PurchaseOrder</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","purchase_orders"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c139aa60-e4d9-4fcf-81d8-739b4b80f55d"}],"id":"9b4b7812-5286-4fff-ae52-5f1dd54ba894","_postman_id":"9b4b7812-5286-4fff-ae52-5f1dd54ba894","description":""},{"name":"Show","item":[{"name":"api/v1/purchase_orders/{purchase_order}","id":"0b527747-f68f-4ee3-a181-e9f2cb6c0cf0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/purchase_orders/:purchase_order","description":"<p>Display the specified <code>PurchaseOrder</code>.</p>\n","urlObject":{"path":["api","v1","purchase_orders",":purchase_order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"purchase_order"}]}},"response":[],"_postman_id":"0b527747-f68f-4ee3-a181-e9f2cb6c0cf0"}],"id":"ee5f7046-e1db-41de-93cf-a289874e42db","_postman_id":"ee5f7046-e1db-41de-93cf-a289874e42db","description":""}],"id":"761acd5b-8279-4c15-9989-cdb25f450d17","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> bid_id</code>,<code> buyer_user_id</code>,<code> client_person_id</code>,<code> contract_identifier</code>,<code> currency_code</code>,<code> default_taxes_id</code>,<code> description</code>,<code> expeditor_user_id</code>,<code> incoterm_id</code>,<code> inspection_business_id</code>,<code> inspection_coordinator_user_id</code>,<code> inspection_person_id</code>,<code> manager_user_id</code>,<code> metadata</code>,<code> name</code>,<code> order_contact</code>,<code> order_header</code>,<code> order_id</code>,<code> order_identifier</code>,<code> order_type</code>,<code> paymentterm_id</code>,<code> project_id</code>,<code> project_team_user_id</code>,<code> responsible_engineer_user_id</code>,<code> revision_id</code>,<code> status</code>,<code> team_id</code>,<code> validation_graph_uuid</code>,<code> vendor_business_id</code>,<code> vendor_person_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientSuppliedItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expeditorUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>feedThroughItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>incoTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>invoices</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>managerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorSuppliedItems</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>financial_summary</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>subtotal</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>taxes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>total</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"761acd5b-8279-4c15-9989-cdb25f450d17"},{"name":"Release Orders","item":[{"name":"Action Release","item":[{"name":"api/v1/release_orders/{release_order}","id":"b3b43744-d4e1-4b61-a6e7-84a746ae1259","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"carrier_business_id","value":null,"description":"<p>(Optional), (Nullable), The carrier business id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>(Optional), The expected receive date field must be a valid date.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>(Optional), (Nullable), The from location id field is required unless release type is in inbound., The from location id field must be an integer.</p>\n","type":"text"},{"key":"from_person_id","value":null,"description":"<p>(Optional), (Nullable), The from person id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"release_date","value":null,"description":"<p>(Optional), The release date field must be a valid date.</p>\n","type":"text"},{"key":"release_type","value":null,"description":"<p>(Optional), The release type field must be a string., The selected release type is invalid, it must exist in transfer-and-consume, supply-and-consume, storage, supply-and-relinquish, inbound, transfer, delivery.</p>\n","type":"text"},{"key":"status","value":null,"description":"<p>(Optional), The status field must be a string., The status field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>(Optional), The to location id field must be an integer.</p>\n","type":"text"},{"key":"to_person_id","value":null,"description":"<p>(Optional), (Nullable), The to person id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"},{"key":"waybill","value":null,"description":"<p>(Optional), (Nullable), The waybill field must be a string., The waybill field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"items","value":null,"description":"<p>The items field is required., The items field must be an array.</p>\n","type":"text"},{"key":"items.*.allocation_type","value":null,"description":"<p>The items.<em>.allocation type field is required., The selected items.</em>.allocation type is invalid, it must exist in transfer-and-consume, supply-and-consume, supply-and-relinquish, storage, transfer, provided-material, consumption, delivery.</p>\n","type":"text"},{"key":"items.*.catalog_item_id","value":null,"description":"<p>(Optional), The items.*.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"items.*.comment","value":null,"description":"<p>(Optional), (Nullable), The items.*.comment field must be an array.</p>\n","type":"text"},{"key":"items.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.comment.internal field must be a string., The items.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"items.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.comment.item notes field must be a string., The items.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"items.*.comment.release_order_pre_release","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.comment.release order pre release field must be a string., The items.</em>.comment.release order pre release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"items.*.comment.release_order_post_release","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.comment.release order post release field must be a string., The items.</em>.comment.release order post release field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"items.*.comment.receiving_comment","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.comment.receiving comment field must be a string., The items.</em>.comment.receiving comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"items.*.comment.release_report_comment","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.comment.release report comment field must be a string., The items.</em>.comment.release report comment field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"items.*.expected_release_date","value":null,"description":"<p>(Optional), The items.*.expected release date field must be a valid date.</p>\n","type":"text"},{"key":"items.*.expected_receive_date","value":null,"description":"<p>(Optional), The items.<em>.expected receive date field must be a valid date., The items.</em>.expected receive date field must be a date after or equal to items.*.expected release date.</p>\n","type":"text"},{"key":"items.*.from_location_id","value":null,"description":"<p>(Optional), The items.*.from location id field must be an integer.</p>\n","type":"text"},{"key":"items.*.order_id","value":null,"description":"<p>(Optional), (Nullable), The items.*.order id field must be an integer.</p>\n","type":"text"},{"key":"items.*.order_item_id","value":null,"description":"<p>(Optional), (Nullable), The items.*.order item id field must be an integer.</p>\n","type":"text"},{"key":"items.*.to_order_item_id","value":null,"description":"<p>(Optional), (Nullable), The items.*.to order item id field must be an integer.</p>\n","type":"text"},{"key":"items.*.project_id","value":null,"description":"<p>(Optional), The items.*.project id field must be an integer.</p>\n","type":"text"},{"key":"items.*.quantity_allocated","value":null,"description":"<p>(Optional), The items.<em>.quantity allocated field must be a number., The items.</em>.quantity allocated field must be at least 0 characters., The items.*.quantity allocated field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"items.*.quantity_received","value":null,"description":"<p>(Optional), The items.<em>.quantity received field must be a number., The items.</em>.quantity received field must be at least 0 characters., The items.*.quantity received field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"items.*.quantity_released","value":null,"description":"<p>(Optional), The items.<em>.quantity released field must be a number., The items.</em>.quantity released field must be at least 0 characters., The items.*.quantity released field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"items.*.quantity_damaged","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.quantity damaged field must be a number., The items.</em>.quantity damaged field must be at least 0 characters., The items.*.quantity damaged field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"items.*.quantity_not_as_specified","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.quantity not as specified field must be a number., The items.</em>.quantity not as specified field must be at least 0 characters., The items.*.quantity not as specified field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"items.*.receive_date","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.receive date field must be a valid date., The items.</em>.receive date field must be a date after or equal to items.<em>.release date., The items.</em>.receive date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"items.*.relations.tags","value":null,"description":"<p>(Optional), The items.*.relations.tags field must be an array.</p>\n","type":"text"},{"key":"items.*.relations.groupings","value":null,"description":"<p>(Nullable), (Optional)</p>\n","type":"text"},{"key":"items.*.release_date","value":null,"description":"<p>(Optional), (Nullable), The items.<em>.release date field must be a valid date., The items.</em>.release date field must be a date before or equal to now.</p>\n","type":"text"},{"key":"items.*.release_order_id","value":null,"description":"<p>(Optional), (Nullable), The items.*.release order id field must be an integer.</p>\n","type":"text"},{"key":"items.*.status","value":null,"description":"<p>The items.<em>.status field is required., The items.</em>.status field must be a string., The selected items.*.status is invalid, it must exist in pending, pending_release, fully_released, short_released, over_released, complete, short_receipt, over_received, cancelled.</p>\n","type":"text"},{"key":"items.*.to_location_id","value":null,"description":"<p>(Optional), (Nullable), The items.*.to location id field must be an integer.</p>\n","type":"text"},{"key":"items.*.update_tags","value":null,"description":"<p>(Optional), The items.*.update tags field must be true or false.</p>\n","type":"text"},{"key":"items.*.update_groupings","value":null,"description":"<p>(Optional), The items.*.update groupings field must be true or false.</p>\n","type":"text"},{"key":"items.*.date_forwarded_jm","value":null,"description":"<p>(Optional), (Nullable), The items.*.date forwarded jm field must be a valid date.</p>\n","type":"text"},{"key":"items.*.date_exited_jm","value":null,"description":"<p>(Optional), (Nullable), The items.*.date exited jm field must be a valid date.</p>\n","type":"text"},{"key":"items.*.id","value":null,"description":"<p>The items.<em>.id field is required., The items.</em>.id field must be an integer., The items.<em>.id field must be at least 1 characters., The items.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/release_orders/:release_order","description":"<p>Release/Receive items (<code>Allocations</code>) on a <code>ReleaseOrder</code>.</p>\n","urlObject":{"path":["api","v1","release_orders",":release_order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"release_order"}]}},"response":[],"_postman_id":"b3b43744-d4e1-4b61-a6e7-84a746ae1259"}],"id":"4b5780d5-6b58-45e6-b43c-bb994b6d9bb5","_postman_id":"4b5780d5-6b58-45e6-b43c-bb994b6d9bb5","description":""},{"name":"Calendar Data","item":[{"name":"api/v1/release_orders/calendar","id":"ab587455-547f-4a20-b477-48cf0478bac4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/release_orders/calendar?start_date&end_date&order_id&project_id&critical_path_only","description":"<p>Provides a summary of potential and in progress releases within a specified time period, with optional <code>Order</code> and <code>Project</code> scoping. By default, the system will set the start date to one month before today, and end date to one date after today.</p>\n","urlObject":{"path":["api","v1","release_orders","calendar"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Nullable), The start date field must be a valid date.</p>\n","type":"text/plain"},"key":"start_date","value":null},{"description":{"content":"<p>(Nullable), The end date field must be a valid date.</p>\n","type":"text/plain"},"key":"end_date","value":null},{"description":{"content":"<p>(Nullable)</p>\n","type":"text/plain"},"key":"order_id","value":null},{"description":{"content":"<p>(Nullable)</p>\n","type":"text/plain"},"key":"project_id","value":null},{"description":{"content":"<p>(Optional), (Nullable), The critical path only field must be true or false.</p>\n","type":"text/plain"},"key":"critical_path_only","value":null}],"variable":[]}},"response":[],"_postman_id":"ab587455-547f-4a20-b477-48cf0478bac4"}],"id":"2e2a345d-2a3b-4ea9-a8b1-7509feff5832","_postman_id":"2e2a345d-2a3b-4ea9-a8b1-7509feff5832","description":""},{"name":"Cancel","item":[{"name":"api/v1/release_orders/{release_order}/cancel","id":"9c30c4d9-919d-4d54-9e3d-e5cb91f26645","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"cancel_items","value":null,"description":"<p>(Optional), The cancel items field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/release_orders/:release_order/cancel","description":"<p>Handles the cancel event.</p>\n","urlObject":{"path":["api","v1","release_orders",":release_order","cancel"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"release_order"}]}},"response":[],"_postman_id":"9c30c4d9-919d-4d54-9e3d-e5cb91f26645"}],"id":"35e304fc-7d42-41b6-96f5-d61b9e275978","_postman_id":"35e304fc-7d42-41b6-96f5-d61b9e275978","description":""},{"name":"Create Release Order","item":[{"name":"api/v1/release_orders","id":"bbb8af68-3f69-4c47-ac5e-6d349d859b39","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/release_orders","description":"<p>Creates new <code>ReleaseOrder</code> and links <code>Allocations</code>.</p>\n","urlObject":{"path":["api","v1","release_orders"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbb8af68-3f69-4c47-ac5e-6d349d859b39"}],"id":"9068bc1a-bc88-4ab6-9486-30bc691a395b","_postman_id":"9068bc1a-bc88-4ab6-9486-30bc691a395b","description":""},{"name":"Destroy","item":[{"name":"api/v1/release_orders/{release_order}","id":"ac07886c-074c-4cba-880f-b31ad33538c1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/release_orders/:release_order","description":"<p>Remove the specified <code>ReleaseOrder</code> from storage.</p>\n","urlObject":{"path":["api","v1","release_orders",":release_order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"release_order"}]}},"response":[],"_postman_id":"ac07886c-074c-4cba-880f-b31ad33538c1"}],"id":"abc7a614-ff0a-444f-a350-e76e9c9789fc","_postman_id":"abc7a614-ff0a-444f-a350-e76e9c9789fc","description":""},{"name":"Index","item":[{"name":"api/v1/release_orders","id":"e6f8e0c1-abf1-4223-a65b-89fd86aba58a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/release_orders","description":"<p>Returns a list of multiple <code>ReleaseOrder</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","release_orders"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6f8e0c1-abf1-4223-a65b-89fd86aba58a"}],"id":"5ae41af0-d556-4b28-8226-dc442d2c3c4c","_postman_id":"5ae41af0-d556-4b28-8226-dc442d2c3c4c","description":""},{"name":"Show","item":[{"name":"api/v1/release_orders/{release_order}","id":"38472779-c748-4565-94f8-0319655c4bbd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/release_orders/:release_order","description":"<p>Display the specified <code>ReleaseOrder</code>.</p>\n","urlObject":{"path":["api","v1","release_orders",":release_order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"release_order"}]}},"response":[],"_postman_id":"38472779-c748-4565-94f8-0319655c4bbd"}],"id":"c6ee6bcc-b133-4a4f-b5b7-227a886bffcd","_postman_id":"c6ee6bcc-b133-4a4f-b5b7-227a886bffcd","description":""},{"name":"Touches Order","item":[{"name":"api/v1/release_orders/touching_order/{orderId}","id":"6af62cf3-8903-46a5-b6f7-89b893a11149","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/release_orders/touching_order/:orderId","urlObject":{"path":["api","v1","release_orders","touching_order",":orderId"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"orderId"}]}},"response":[],"_postman_id":"6af62cf3-8903-46a5-b6f7-89b893a11149"}],"id":"2cbb720b-de5e-4add-b2e8-5c5bb9667ce1","_postman_id":"2cbb720b-de5e-4add-b2e8-5c5bb9667ce1","description":""}],"id":"da430d89-d746-4879-b731-f9b34b28f97b","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> buyer_user_id</code>,<code> carrier_business_id</code>,<code> expected_receive_date</code>,<code> from_location_id</code>,<code> from_person_id</code>,<code> order_id</code>,<code> project_id</code>,<code> release_date</code>,<code> status</code>,<code> team_id</code>,<code> to_location_id</code>,<code> to_person_id</code>,<code> vendor_person_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>carrier</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fromLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fromPerson</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>osds</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toPerson</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>release_valuation</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"da430d89-d746-4879-b731-f9b34b28f97b"},{"name":"Requisition Items","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_requisition_items","id":"44b97a41-122f-42ba-a5fe-f274da80023d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_requisition_items","description":"<p>Destroy multiple <code>RequisitionItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_requisition_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"44b97a41-122f-42ba-a5fe-f274da80023d"}],"id":"1e47f115-e8c5-4d9d-a174-1800c836296e","_postman_id":"1e47f115-e8c5-4d9d-a174-1800c836296e","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_requisition_items","id":"197531e1-c044-4554-b838-d8b18966ec95","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.budget","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.budget field must be a number., The data.</em>.budget field must be at least 0 characters., The data.*.budget field must not be greater than 999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>The data.<em>.catalog item id field is required., The data.</em>.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.mr_document","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.mr document field must be a string., The data.</em>.comment.mr document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.fulfillment_strategy","value":null,"description":"<p>(Nullable), The data.<em>.fulfillment strategy field must be a string., The data.</em>.fulfillment strategy field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.inspection_level","value":null,"description":"<p>(Nullable), The data.<em>.inspection level field must be a string., The data.</em>.inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.is_fulfilled","value":null,"description":"<p>(Optional), The data.*.is fulfilled field must be true or false.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>The data.<em>.item type field is required., The data.</em>.item type field must be a string., The data.<em>.item type field must not be greater than 15 characters., The selected data.</em>.item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Nullable), The data.<em>.line number field must be an integer., The data.</em>.line number field must be at least 0 characters., The data.*.line number field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>The data.<em>.quantity field is required., The data.</em>.quantity field must be a number., The data.<em>.quantity field must be at least 0 characters., The data.</em>.quantity field must not be greater than 999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.required_by_date","value":null,"description":"<p>(Nullable), The data.*.required by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.requisition_id","value":null,"description":"<p>The data.<em>.requisition id field is required., The data.</em>.requisition id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_requisition_items","description":"<p>Store multiple <code>RequisitionItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_requisition_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"197531e1-c044-4554-b838-d8b18966ec95"}],"id":"2a51dc30-7508-403e-ade5-fdc10d42fd2b","_postman_id":"2a51dc30-7508-403e-ade5-fdc10d42fd2b","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_requisition_items","id":"d603abad-a1eb-4c14-92cc-30b1ccf857d5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.budget","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.budget field must be a number., The data.</em>.budget field must be at least 0 characters., The data.*.budget field must not be greater than 999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>(Optional), The data.*.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Optional), (Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.mr_document","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.mr document field must be a string., The data.</em>.comment.mr document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.fulfillment_strategy","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.fulfillment strategy field must be a string., The data.</em>.fulfillment strategy field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.inspection_level","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.inspection level field must be a string., The data.</em>.inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.is_fulfilled","value":null,"description":"<p>(Optional), The data.*.is fulfilled field must be true or false.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>(Optional), The data.<em>.item type field must be a string., The data.</em>.item type field must not be greater than 15 characters., The selected data.*.item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.line number field must be an integer., The data.</em>.line number field must be at least 0 characters., The data.*.line number field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Optional), (Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>(Optional), The data.<em>.quantity field must be a number., The data.</em>.quantity field must be at least 0 characters., The data.*.quantity field must not be greater than 999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.required_by_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.required by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.requisition_id","value":null,"description":"<p>(Optional), The data.*.requisition id field must be an integer.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_requisition_items","description":"<p>Update multiple <code>RequisitionItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_requisition_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d603abad-a1eb-4c14-92cc-30b1ccf857d5"}],"id":"35d0dc51-4b02-45c5-8af3-7c0d5e0cbab3","_postman_id":"35d0dc51-4b02-45c5-8af3-7c0d5e0cbab3","description":""},{"name":"Destroy","item":[{"name":"api/v1/requisition_items/{requisition_item}","id":"b6590533-d043-40f0-b16e-d78ad6e724e9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisition_items/:requisition_item","description":"<p>Remove the specified <code>RequisitionItem</code> from storage.</p>\n","urlObject":{"path":["api","v1","requisition_items",":requisition_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition_item"}]}},"response":[],"_postman_id":"b6590533-d043-40f0-b16e-d78ad6e724e9"}],"id":"9e96cb60-cafc-4a83-8c6d-3f539efbbf06","_postman_id":"9e96cb60-cafc-4a83-8c6d-3f539efbbf06","description":""},{"name":"Index","item":[{"name":"api/v1/requisition_items","id":"3ffae465-6b6d-472f-a946-5cc4a7324ee9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisition_items","description":"<p>Returns a list of multiple <code>RequisitionItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","requisition_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ffae465-6b6d-472f-a946-5cc4a7324ee9"}],"id":"49f64e8c-3cab-438e-bef8-9927b9475a75","_postman_id":"49f64e8c-3cab-438e-bef8-9927b9475a75","description":""},{"name":"Show","item":[{"name":"api/v1/requisition_items/{requisition_item}","id":"85318667-fe72-446a-8d12-11d8a6000f4f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisition_items/:requisition_item","description":"<p>Display the specified <code>RequisitionItem</code>.</p>\n","urlObject":{"path":["api","v1","requisition_items",":requisition_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition_item"}]}},"response":[],"_postman_id":"85318667-fe72-446a-8d12-11d8a6000f4f"}],"id":"c880e537-4b49-4557-a008-619833c52bfd","_postman_id":"c880e537-4b49-4557-a008-619833c52bfd","description":""},{"name":"Store","item":[{"name":"api/v1/requisition_items","id":"04ef59fc-0223-49a6-ae41-b656f9b45855","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.mr_document","value":null,"description":"<p>(Optional), (Nullable), The comment.mr document field must be a string., The comment.mr document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"fulfillment_strategy","value":null,"description":"<p>(Nullable), The fulfillment strategy field must be a string., The fulfillment strategy field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"is_fulfilled","value":null,"description":"<p>(Optional), The is fulfilled field must be true or false.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>The item type field is required., The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>The requisition id field is required., The requisition id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisition_items","description":"<p>Create a new <code>RequisitionItem</code> object.</p>\n","urlObject":{"path":["api","v1","requisition_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"04ef59fc-0223-49a6-ae41-b656f9b45855"}],"id":"af9c5b66-882a-4907-842f-d051043dd008","_postman_id":"af9c5b66-882a-4907-842f-d051043dd008","description":""},{"name":"Update","item":[{"name":"api/v1/requisition_items/{requisition_item}","id":"ff9b8933-a3d9-4c4d-b643-33cb11ce5356","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.mr_document","value":null,"description":"<p>(Optional), (Nullable), The comment.mr document field must be a string., The comment.mr document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"fulfillment_strategy","value":null,"description":"<p>(Optional), (Nullable), The fulfillment strategy field must be a string., The fulfillment strategy field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Optional), (Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"is_fulfilled","value":null,"description":"<p>(Optional), The is fulfilled field must be true or false.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Optional), (Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Optional), The requisition id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisition_items/:requisition_item","description":"<p>Update the specified <code>RequisitionItem</code> .</p>\n","urlObject":{"path":["api","v1","requisition_items",":requisition_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition_item"}]}},"response":[],"_postman_id":"ff9b8933-a3d9-4c4d-b643-33cb11ce5356"},{"name":"api/v1/requisition_items/{requisition_item}","id":"689d5c3b-af8a-4726-b4b2-51ca791a011f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.mr_document","value":null,"description":"<p>(Optional), (Nullable), The comment.mr document field must be a string., The comment.mr document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"fulfillment_strategy","value":null,"description":"<p>(Optional), (Nullable), The fulfillment strategy field must be a string., The fulfillment strategy field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Optional), (Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"is_fulfilled","value":null,"description":"<p>(Optional), The is fulfilled field must be true or false.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The item type field must not be greater than 15 characters., The selected item type is invalid, it must exist in vendor_supplied, client_supplied, feed_through, purchase_item.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Optional), (Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Optional), The requisition id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisition_items/:requisition_item","description":"<p>Update the specified <code>RequisitionItem</code> .</p>\n","urlObject":{"path":["api","v1","requisition_items",":requisition_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition_item"}]}},"response":[],"_postman_id":"689d5c3b-af8a-4726-b4b2-51ca791a011f"}],"id":"f75c7cb6-19b7-4646-8304-d159be86c533","_postman_id":"f75c7cb6-19b7-4646-8304-d159be86c533","description":""}],"id":"e4c70ae9-ee25-460c-84d1-2d999121ea04","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> budget</code>,<code> catalog_item_id</code>,<code> comment</code>,<code> inspection_level</code>,<code> item_type</code>,<code> metadata</code>,<code> project_id</code>,<code> quantity</code>,<code> requisition_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bidItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offerItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>printableAttachment</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e4c70ae9-ee25-460c-84d1-2d999121ea04"},{"name":"Requisition Vendors","item":[{"name":"Destroy","item":[{"name":"api/v1/requisition_vendors/{requisition_vendor}","id":"7527d74c-f217-4fe1-a73c-e7c80e624814","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisition_vendors/:requisition_vendor","description":"<p>Remove the specified <code>RequisitionVendor</code> from storage.</p>\n","urlObject":{"path":["api","v1","requisition_vendors",":requisition_vendor"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition_vendor"}]}},"response":[],"_postman_id":"7527d74c-f217-4fe1-a73c-e7c80e624814"}],"id":"c5110f5d-0a64-4228-a595-f34d59d31196","_postman_id":"c5110f5d-0a64-4228-a595-f34d59d31196","description":""},{"name":"Index","item":[{"name":"api/v1/requisition_vendors","id":"f22563c5-c290-4f2c-a062-df7d4b8a862b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisition_vendors","description":"<p>Returns a list of multiple <code>RequisitionVendor</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","requisition_vendors"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f22563c5-c290-4f2c-a062-df7d4b8a862b"}],"id":"8cdac57b-9bc2-46db-9008-bda8589ae6be","_postman_id":"8cdac57b-9bc2-46db-9008-bda8589ae6be","description":""},{"name":"Show","item":[{"name":"api/v1/requisition_vendors/{requisition_vendor}","id":"78144135-d905-44ec-9520-0a2ab1c4e678","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisition_vendors/:requisition_vendor","description":"<p>Display the specified <code>RequisitionVendor</code>.</p>\n","urlObject":{"path":["api","v1","requisition_vendors",":requisition_vendor"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition_vendor"}]}},"response":[],"_postman_id":"78144135-d905-44ec-9520-0a2ab1c4e678"}],"id":"bbb05130-2b1c-4673-b993-4ef5593730f1","_postman_id":"bbb05130-2b1c-4673-b993-4ef5593730f1","description":""},{"name":"Store","item":[{"name":"api/v1/requisition_vendors","id":"97422115-5322-4c6e-a49b-b93d1b394af8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be a string., The comment field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>The requisition id field is required., The requisition id field must be an integer.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>The vendor business id field is required., The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisition_vendors","description":"<p>Create a new <code>RequisitionVendor</code> object.</p>\n","urlObject":{"path":["api","v1","requisition_vendors"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"97422115-5322-4c6e-a49b-b93d1b394af8"}],"id":"731ed4d3-2dde-4a1f-b2ce-fd830a1e5887","_postman_id":"731ed4d3-2dde-4a1f-b2ce-fd830a1e5887","description":""},{"name":"Update","item":[{"name":"api/v1/requisition_vendors/{requisition_vendor}","id":"f87b8e37-cc44-4dfd-934a-a50b661b77d0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be a string., The comment field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Optional), The requisition id field must be an integer.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisition_vendors/:requisition_vendor","description":"<p>Update the specified <code>RequisitionVendor</code> .</p>\n","urlObject":{"path":["api","v1","requisition_vendors",":requisition_vendor"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition_vendor"}]}},"response":[],"_postman_id":"f87b8e37-cc44-4dfd-934a-a50b661b77d0"},{"name":"api/v1/requisition_vendors/{requisition_vendor}","id":"9fe70136-fc96-40b8-8be1-c855b063292e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be a string., The comment field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"requisition_id","value":null,"description":"<p>(Optional), The requisition id field must be an integer.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisition_vendors/:requisition_vendor","description":"<p>Update the specified <code>RequisitionVendor</code> .</p>\n","urlObject":{"path":["api","v1","requisition_vendors",":requisition_vendor"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition_vendor"}]}},"response":[],"_postman_id":"9fe70136-fc96-40b8-8be1-c855b063292e"}],"id":"996a6931-40f7-410b-9bb9-1b63da9c7876","_postman_id":"996a6931-40f7-410b-9bb9-1b63da9c7876","description":""}],"id":"8e7a797b-a15e-4066-926e-2aeccc0c9842","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> comments</code>,<code> id</code>,<code> project_id</code>,<code> requisition_id</code>,<code> team_id</code>,<code> vendor_business_id</code>,<code> vendor_person_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>person</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8e7a797b-a15e-4066-926e-2aeccc0c9842"},{"name":"Requisitions","item":[{"name":"Chain","item":[{"name":"api/v1/requisitions/{requisition}/chain","id":"fddcd58a-ecda-4f23-90ff-b03c6b96ec52","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisitions/:requisition/chain","description":"<p>Returns the linked <code>Orderables</code> that are associated with a specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","requisitions",":requisition","chain"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition"}]}},"response":[],"_postman_id":"fddcd58a-ecda-4f23-90ff-b03c6b96ec52"}],"id":"4999200b-a1cb-48d5-a293-318d958841e7","_postman_id":"4999200b-a1cb-48d5-a293-318d958841e7","description":""},{"name":"Create Requisition From Order","item":[{"name":"api/v1/requisitions/createfromorder","id":"1ffb287d-bd66-40a6-8ce8-7897a544c2dd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisitions/createfromorder","description":"<p>Create a new Requisition from a previous <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","requisitions","createfromorder"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ffb287d-bd66-40a6-8ce8-7897a544c2dd"}],"id":"e4736cde-3f1b-4559-9ab7-b49ca0f9bed4","_postman_id":"e4736cde-3f1b-4559-9ab7-b49ca0f9bed4","description":""},{"name":"Create Requisition From Requisition","item":[{"name":"api/v1/requisitions/createfromrequisition","id":"9483838b-94f8-45f1-bf82-3704a819f256","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisitions/createfromrequisition","description":"<p>Create a new <code>Requisition</code> based off a specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","requisitions","createfromrequisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9483838b-94f8-45f1-bf82-3704a819f256"}],"id":"89491ca9-9e10-41a3-b14d-a7e33c1a422b","_postman_id":"89491ca9-9e10-41a3-b14d-a7e33c1a422b","description":""},{"name":"Destroy","item":[{"name":"api/v1/requisitions/{requisition}","id":"3fd0168a-e68e-4899-a9d6-d7991ed8197f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisitions/:requisition","description":"<p>Remove the specified <code>Requisition</code> from storage.</p>\n","urlObject":{"path":["api","v1","requisitions",":requisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition"}]}},"response":[],"_postman_id":"3fd0168a-e68e-4899-a9d6-d7991ed8197f"}],"id":"3a01f0e4-b1dd-4964-970d-b974511b4f13","_postman_id":"3a01f0e4-b1dd-4964-970d-b974511b4f13","description":""},{"name":"Fill Requisition From Order","item":[{"name":"api/v1/requisitions/{requisitionId}/fillfromorder","id":"f870873e-9231-485e-aa4c-77e3a4c82237","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>The import vendors field is required., The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"bom_options.delete_existing","value":null,"description":"<p>The bom options.delete existing field is required when import bom is empty., The bom options.delete existing field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisitions/:requisitionId/fillfromorder","description":"<p>Update an existing <code>Requisition</code> with data from a specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","requisitions",":requisitionId","fillfromorder"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisitionId"}]}},"response":[],"_postman_id":"f870873e-9231-485e-aa4c-77e3a4c82237"}],"id":"1de57b3e-427c-4d27-87b0-f6b8ad3fe817","_postman_id":"1de57b3e-427c-4d27-87b0-f6b8ad3fe817","description":""},{"name":"Fill Requisition From Requisition","item":[{"name":"api/v1/requisitions/{requisitionId}/fillfromrequisition","id":"567f4724-99c6-4430-8770-29f04937150e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"source_model_id","value":null,"description":"<p>The source model id field is required., The source model id field must be an integer., The source model id field must be at least 1.</p>\n","type":"text"},{"key":"import_notes","value":null,"description":"<p>The import notes field is required., The import notes field must be true or false.</p>\n","type":"text"},{"key":"import_grouping","value":null,"description":"<p>(Optional), The import grouping field must be true or false.</p>\n","type":"text"},{"key":"import_vendors","value":null,"description":"<p>The import vendors field is required., The import vendors field must be true or false.</p>\n","type":"text"},{"key":"target_project_id","value":null,"description":"<p>The target project id field is required.</p>\n","type":"text"},{"key":"import_document_requirements","value":null,"description":"<p>(Optional), The import document requirements field must be true or false.</p>\n","type":"text"},{"key":"import_spec_standards","value":null,"description":"<p>(Optional), The import spec standards field must be true or false.</p>\n","type":"text"},{"key":"import_printable_attachments","value":null,"description":"<p>(Optional), The import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"import_technical_notes","value":null,"description":"<p>(Optional), The import technical notes field must be true or false.</p>\n","type":"text"},{"key":"import_contract_terms","value":null,"description":"<p>(Optional), The import contract terms field must be true or false.</p>\n","type":"text"},{"key":"import_bom","value":null,"description":"<p>The import bom field is required., The import bom field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_document_requirements","value":null,"description":"<p>(Optional), The bom options.import document requirements field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_cost_coding","value":null,"description":"<p>The bom options.import cost coding field is required when import bom is empty., The bom options.import cost coding field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_grouping","value":null,"description":"<p>(Optional), The bom options.import grouping field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_component_identifiers","value":null,"description":"<p>The bom options.import component identifiers field is required when import bom is empty., The bom options.import component identifiers field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_files","value":null,"description":"<p>The bom options.import files field is required when import bom is empty., The bom options.import files field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_notes","value":null,"description":"<p>The bom options.import notes field is required when import bom is empty., The bom options.import notes field must be true or false.</p>\n","type":"text"},{"key":"bom_options.import_printable_attachments","value":null,"description":"<p>(Optional), The bom options.import printable attachments field must be true or false.</p>\n","type":"text"},{"key":"bom_options.delete_existing","value":null,"description":"<p>The bom options.delete existing field is required when import bom is empty., The bom options.delete existing field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisitions/:requisitionId/fillfromrequisition","description":"<p>Update an existing <code>Requisition</code> with data from a specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","requisitions",":requisitionId","fillfromrequisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisitionId"}]}},"response":[],"_postman_id":"567f4724-99c6-4430-8770-29f04937150e"}],"id":"cf694f7f-92fd-4038-a1e9-8942dfde37d1","_postman_id":"cf694f7f-92fd-4038-a1e9-8942dfde37d1","description":""},{"name":"Index","item":[{"name":"api/v1/requisitions","id":"a7f9ba7d-a76f-4f18-996e-f1fcbd43f6da","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisitions","description":"<p>Returns a list of multiple <code>Requisition</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","requisitions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7f9ba7d-a76f-4f18-996e-f1fcbd43f6da"}],"id":"9a949650-ac8d-4d51-adb5-24bf5816305d","_postman_id":"9a949650-ac8d-4d51-adb5-24bf5816305d","description":""},{"name":"Show","item":[{"name":"api/v1/requisitions/{requisition}","id":"05b58158-89e9-4b3b-bed9-5a56f994909f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisitions/:requisition","description":"<p>Display the specified <code>Requisition</code>.</p>\n","urlObject":{"path":["api","v1","requisitions",":requisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition"}]}},"response":[],"_postman_id":"05b58158-89e9-4b3b-bed9-5a56f994909f"}],"id":"5bda4f33-1517-4256-9e46-34b35ab6ed03","_postman_id":"5bda4f33-1517-4256-9e46-34b35ab6ed03","description":""},{"name":"Store","item":[{"name":"api/v1/requisitions","id":"22dc147f-10b9-4952-bac4-b51c77be5b69","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"buyer_user_id","value":null,"description":"<p>(Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"fulfillment_strategy","value":null,"description":"<p>(Nullable), The fulfillment strategy field must be a string., The fulfillment strategy field must be at least 1 characters., The fulfillment strategy field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"requestor","value":null,"description":"<p>(Nullable), The requestor field must be a string., The requestor field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"requisition_identifier","value":null,"description":"<p>(Nullable), The requisition identifier field must be a string., The requisition identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"soft_revision","value":null,"description":"<p>(Optional), (Nullable), The soft revision field must be a string., The soft revision field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"sourcing","value":null,"description":"<p>(Nullable), The sourcing field must be a string., The sourcing field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisitions","description":"<p>Create a new <code>Requisition</code> object.</p>\n","urlObject":{"path":["api","v1","requisitions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"22dc147f-10b9-4952-bac4-b51c77be5b69"}],"id":"3d571ca9-dd58-4a08-8e4c-25581b066e45","_postman_id":"3d571ca9-dd58-4a08-8e4c-25581b066e45","description":""},{"name":"Update","item":[{"name":"api/v1/requisitions/{requisition}","id":"9903c764-b4a1-45df-ba8c-d9e8e4154452","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"fulfillment_strategy","value":null,"description":"<p>(Optional), (Nullable), The fulfillment strategy field must be a string., The fulfillment strategy field must be at least 1 characters., The fulfillment strategy field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Optional), (Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"requestor","value":null,"description":"<p>(Optional), (Nullable), The requestor field must be a string., The requestor field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"requisition_identifier","value":null,"description":"<p>(Optional), The requisition identifier field must be a string., The requisition identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"soft_revision","value":null,"description":"<p>(Optional), (Nullable), The soft revision field must be a string., The soft revision field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"sourcing","value":null,"description":"<p>(Optional), (Nullable), The sourcing field must be a string., The sourcing field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisitions/:requisition","description":"<p>Update the specified <code>Requisition</code> .</p>\n","urlObject":{"path":["api","v1","requisitions",":requisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition"}]}},"response":[],"_postman_id":"9903c764-b4a1-45df-ba8c-d9e8e4154452"},{"name":"api/v1/requisitions/{requisition}","id":"fa56c7bb-c215-4b17-bb2c-dbfc4c358a9e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"fulfillment_strategy","value":null,"description":"<p>(Optional), (Nullable), The fulfillment strategy field must be a string., The fulfillment strategy field must be at least 1 characters., The fulfillment strategy field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Optional), (Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"requestor","value":null,"description":"<p>(Optional), (Nullable), The requestor field must be a string., The requestor field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"requisition_identifier","value":null,"description":"<p>(Optional), The requisition identifier field must be a string., The requisition identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"soft_revision","value":null,"description":"<p>(Optional), (Nullable), The soft revision field must be a string., The soft revision field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"sourcing","value":null,"description":"<p>(Optional), (Nullable), The sourcing field must be a string., The sourcing field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/requisitions/:requisition","description":"<p>Update the specified <code>Requisition</code> .</p>\n","urlObject":{"path":["api","v1","requisitions",":requisition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisition"}]}},"response":[],"_postman_id":"fa56c7bb-c215-4b17-bb2c-dbfc4c358a9e"}],"id":"1101d734-c9c3-44ff-8908-5e25d0322311","_postman_id":"1101d734-c9c3-44ff-8908-5e25d0322311","description":""},{"name":"Api/V1/Requisitions/{Requisitionid}/Childrenandparentattachables","id":"07d85206-5bb6-4524-a93c-74b81a815b20","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/requisitions/:requisitionId/childrenandparentattachables","urlObject":{"path":["api","v1","requisitions",":requisitionId","childrenandparentattachables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"requisitionId"}]}},"response":[],"_postman_id":"07d85206-5bb6-4524-a93c-74b81a815b20"}],"id":"2b96d0fb-95da-4e40-8f2d-c0b484348041","description":"<p>A <code>Requisition</code> is a request for goods or services. The entity is used to plan, approve, and finally fulfill a request.</p>\n<p>A <code>Requisition</code> has one or many <code>Requisition Items</code>.</p>\n<p><code>Requisitions</code> are statused and controlled through the workflow engine.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> buyer_user_id</code>,<code> description</code>,<code> id</code>,<code> manager_user_id</code>,<code> metadata</code>,<code> name</code>,<code> project_id</code>,<code> requestor</code>,<code> sourcing</code>,<code> status</code>,<code> team_id</code>,<code> validation_graph_uuid</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>client</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientSuppliedItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>drawings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>feedThroughItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>managerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>openTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>overdueTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTeamRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitionItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>softRevisionHistories</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specifications</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusinesses</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusinessesList</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorSuppliedItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendors</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>chain</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>chain_dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>possible_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>soft_revision</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2b96d0fb-95da-4e40-8f2d-c0b484348041"},{"name":"Roles","item":[{"name":"Index","item":[{"name":"api/v1/roles","id":"6b986f7b-1602-4754-9499-c4bd500148b0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/roles","description":"<p>Returns a list of multiple <code>Role</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","roles"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b986f7b-1602-4754-9499-c4bd500148b0"}],"id":"ebb07349-2df3-4773-8bfa-e457b91f46fb","_postman_id":"ebb07349-2df3-4773-8bfa-e457b91f46fb","description":""},{"name":"Show","item":[{"name":"api/v1/roles/{role}","id":"b1450a5e-2f65-4cba-a922-cc896a52e785","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/roles/:role","description":"<p>Display the specified <code>Role</code>.</p>\n","urlObject":{"path":["api","v1","roles",":role"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"role"}]}},"response":[],"_postman_id":"b1450a5e-2f65-4cba-a922-cc896a52e785"}],"id":"b1038e31-d196-4688-8b31-f5be95e12218","_postman_id":"b1038e31-d196-4688-8b31-f5be95e12218","description":""}],"id":"5e69cb38-ba16-4fdc-bbe0-eb614942070d","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> description</code>,<code> display_name</code>,<code> is_team_scoped</code>,<code> name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>permissions</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5e69cb38-ba16-4fdc-bbe0-eb614942070d"},{"name":"Sales Order Items","item":[{"name":"Auto Update Sales Order Item Allocation","item":[{"name":"api/v1/sales_order_items/{salesOrderItemId}/auto_allocate","id":"88b44cea-ca5c-4ad3-8b62-92c128d97994","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_order_items/:salesOrderItemId/auto_allocate","description":"<p>Auto allocate Sales Order Items if the Order is configured.</p>\n","urlObject":{"path":["api","v1","sales_order_items",":salesOrderItemId","auto_allocate"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrderItemId"}]}},"response":[],"_postman_id":"88b44cea-ca5c-4ad3-8b62-92c128d97994"}],"id":"9187b3f0-8974-4801-b5c5-267b84fecfe8","_postman_id":"9187b3f0-8974-4801-b5c5-267b84fecfe8","description":""},{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_sales_order_items","id":"f2b7fcde-38b5-4aec-b981-d115582b4d7b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_sales_order_items","description":"<p>Destroy multiple <code>OrderItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_sales_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f2b7fcde-38b5-4aec-b981-d115582b4d7b"}],"id":"d0fb3c2f-1b14-400b-a4a6-036eb578bcb8","_postman_id":"d0fb3c2f-1b14-400b-a4a6-036eb578bcb8","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_sales_order_items","id":"f8a65dc1-4b63-4c29-b7b5-3d2ebd35ef69","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.budget","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.budget field must be a number., The data.</em>.budget field must be at least 0 characters., The data.*.budget field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.buyer_user_id","value":null,"description":"<p>(Nullable), The data.*.buyer user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>The data.<em>.catalog item id field is required., The data.</em>.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.purchase order field must be a string., The data.</em>.comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"data.*.exchange_rate","value":null,"description":"<p>(Nullable), The data.<em>.exchange rate field must be a number., The data.</em>.exchange rate field must be at least 0.0001 characters., The data.*.exchange rate field must not be greater than 99999.9999 characters.</p>\n","type":"text"},{"key":"data.*.expeditor_user_id","value":null,"description":"<p>(Nullable), The data.*.expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.expediting_level","value":null,"description":"<p>(Nullable), The data.<em>.expediting level field must be a string., The data.</em>.expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.inspection_level","value":null,"description":"<p>(Nullable), The data.<em>.inspection level field must be a string., The data.</em>.inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>The data.<em>.item type field is required., The data.</em>.item type field must be a string., The selected data.*.item type is invalid, it must exist in sales_item, customer_provided, internal_supplied, pass_on.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Nullable), The data.<em>.line number field must be an integer., The data.</em>.line number field must be at least 0 characters., The data.*.line number field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.offer_item_id","value":null,"description":"<p>(Nullable), The data.*.offer item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_id","value":null,"description":"<p>The data.<em>.order id field is required., The data.</em>.order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.promised_by_date","value":null,"description":"<p>(Nullable), The data.*.promised by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>The data.<em>.quantity field is required., The data.</em>.quantity field must be a number., The data.<em>.quantity field must be at least 0 characters., The data.</em>.quantity field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.required_by_date","value":null,"description":"<p>(Nullable), The data.*.required by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.requisition_item_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"data.*.taxes_id","value":null,"description":"<p>(Optional), The data.*.taxes id field must be an integer.</p>\n","type":"text"},{"key":"data.*.unit_price","value":null,"description":"<p>The data.<em>.unit price field must be a number., The data.</em>.unit price field must be at least -99999999999.9999 characters., The data.*.unit price field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_sales_order_items","description":"<p>Store multiple <code>OrderItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_sales_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8a65dc1-4b63-4c29-b7b5-3d2ebd35ef69"}],"id":"3db2f3f1-80c4-42e0-bbfa-a2b518c27706","_postman_id":"3db2f3f1-80c4-42e0-bbfa-a2b518c27706","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_sales_order_items","id":"671ba936-1a82-4433-818e-0ffbca35111b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.budget","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.budget field must be a number., The data.</em>.budget field must be at least 0 characters., The data.*.budget field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.buyer user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>(Optional), The data.*.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Optional), (Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"data.*.comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.purchase order field must be a string., The data.</em>.comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.exchange_rate","value":null,"description":"<p>(Optional), The data.<em>.exchange rate field must be a number., The data.</em>.exchange rate field must be at least 0.0001 characters., The data.*.exchange rate field must not be greater than 99999.9999 characters.</p>\n","type":"text"},{"key":"data.*.expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"data.*.expediting_level","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.expediting level field must be a string., The data.</em>.expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.inspection_level","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.inspection level field must be a string., The data.</em>.inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.item_type","value":null,"description":"<p>(Optional), The data.<em>.item type field must be a string., The selected data.</em>.item type is invalid, it must exist in sales_item, customer_provided, internal_supplied, pass_on.</p>\n","type":"text"},{"key":"data.*.line_number","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.line number field must be an integer., The data.</em>.line number field must be at least 0 characters., The data.*.line number field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.offer_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.offer item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_id","value":null,"description":"<p>(Optional), The data.*.order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.promised_by_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.promised by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.quantity","value":null,"description":"<p>(Optional), The data.<em>.quantity field must be a number., The data.</em>.quantity field must be at least 0 characters., The data.*.quantity field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.required_by_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.required by date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.requisition_item_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"data.*.taxes_id","value":null,"description":"<p>(Optional), The data.*.taxes id field must be an integer.</p>\n","type":"text"},{"key":"data.*.unit_price","value":null,"description":"<p>(Optional), The data.<em>.unit price field must be a number., The data.</em>.unit price field must be at least -99999999999.9999 characters., The data.*.unit price field must not be greater than 99999999999.9999 characters.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_sales_order_items","description":"<p>Update multiple <code>OrderItem</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_sales_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"671ba936-1a82-4433-818e-0ffbca35111b"}],"id":"22b45382-7e9c-420e-b20f-cc7f9be44e99","_postman_id":"22b45382-7e9c-420e-b20f-cc7f9be44e99","description":""},{"name":"Destroy","item":[{"name":"api/v1/sales_order_items/{sales_order_item}","id":"9abdeff5-6a7b-4d1b-b692-0c22c09fca36","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_order_items/:sales_order_item","description":"<p>Remove the specified <code>SalesOrderItem</code> from storage.</p>\n","urlObject":{"path":["api","v1","sales_order_items",":sales_order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"sales_order_item"}]}},"response":[],"_postman_id":"9abdeff5-6a7b-4d1b-b692-0c22c09fca36"}],"id":"017a7fb5-b88d-42b0-a8aa-ff73b56269b2","_postman_id":"017a7fb5-b88d-42b0-a8aa-ff73b56269b2","description":""},{"name":"Index","item":[{"name":"api/v1/sales_order_items","id":"b4d65f59-02bd-46a7-a8cc-02f02fd2dc47","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_order_items","description":"<p>Returns a list of multiple <code>SalesOrderItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","sales_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b4d65f59-02bd-46a7-a8cc-02f02fd2dc47"}],"id":"81ce5002-633e-45bc-b541-9a33e37e0a03","_postman_id":"81ce5002-633e-45bc-b541-9a33e37e0a03","description":""},{"name":"Show","item":[{"name":"api/v1/sales_order_items/{sales_order_item}","id":"f6d72fe0-1625-4ea5-aa8f-c8902497ce0a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_order_items/:sales_order_item","description":"<p>Display the specified <code>SalesOrderItem</code>.</p>\n","urlObject":{"path":["api","v1","sales_order_items",":sales_order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"sales_order_item"}]}},"response":[],"_postman_id":"f6d72fe0-1625-4ea5-aa8f-c8902497ce0a"}],"id":"c8e4e828-0a78-4c30-a0ea-54992185ac3d","_postman_id":"c8e4e828-0a78-4c30-a0ea-54992185ac3d","description":""},{"name":"Store","item":[{"name":"api/v1/sales_order_items","id":"db178d4a-3e9a-4a37-9c78-63405821e165","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The comment.purchase order field must be a string., The comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Nullable), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"expediting_level","value":null,"description":"<p>(Nullable), The expediting level field must be a string., The expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>The item type field is required., The item type field must be a string., The selected item type is invalid, it must exist in sales_item, customer_provided, internal_supplied, pass_on.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"offer_item_id","value":null,"description":"<p>(Nullable), The offer item id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"promised_by_date","value":null,"description":"<p>(Nullable), The promised by date field must be a valid date.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>The quantity field is required., The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>(Optional), The taxes id field must be an integer.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>The unit price field must be a number., The unit price field must be at least -99999999999.9999., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_order_items","description":"<p>Create a new <code>SalesOrderItem</code> object.</p>\n","urlObject":{"path":["api","v1","sales_order_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"db178d4a-3e9a-4a37-9c78-63405821e165"}],"id":"d256378c-3f83-4fbc-aef3-b40b570c8b7c","_postman_id":"d256378c-3f83-4fbc-aef3-b40b570c8b7c","description":""},{"name":"Update","item":[{"name":"api/v1/sales_order_items/{sales_order_item}","id":"d960f4c2-a2bc-4287-85d1-f7c3f396f6f9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The comment.purchase order field must be a string., The comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Optional), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"expediting_level","value":null,"description":"<p>(Optional), (Nullable), The expediting level field must be a string., The expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Optional), (Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The selected item type is invalid, it must exist in sales_item, customer_provided, internal_supplied, pass_on.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"offer_item_id","value":null,"description":"<p>(Optional), (Nullable), The offer item id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"promised_by_date","value":null,"description":"<p>(Optional), (Nullable), The promised by date field must be a valid date.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Optional), (Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>(Optional), The taxes id field must be an integer.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>(Optional), The unit price field must be a number., The unit price field must be at least -99999999999.9999., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_order_items/:sales_order_item","description":"<p>Update the specified <code>SalesOrderItem</code> .</p>\n","urlObject":{"path":["api","v1","sales_order_items",":sales_order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"sales_order_item"}]}},"response":[],"_postman_id":"d960f4c2-a2bc-4287-85d1-f7c3f396f6f9"},{"name":"api/v1/sales_order_items/{sales_order_item}","id":"97fcf3ef-a06f-48ca-877c-316f3c76ea59","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"budget","value":null,"description":"<p>(Optional), (Nullable), The budget field must be a number., The budget field must be at least 0., The budget field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"comment.purchase_order","value":null,"description":"<p>(Optional), (Nullable), The comment.purchase order field must be a string., The comment.purchase order field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"exchange_rate","value":null,"description":"<p>(Optional), The exchange rate field must be a number., The exchange rate field must be at least 0.0001., The exchange rate field must not be greater than 99999.9999.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"expediting_level","value":null,"description":"<p>(Optional), (Nullable), The expediting level field must be a string., The expediting level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"inspection_level","value":null,"description":"<p>(Optional), (Nullable), The inspection level field must be a string., The inspection level field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"item_type","value":null,"description":"<p>(Optional), The item type field must be a string., The selected item type is invalid, it must exist in sales_item, customer_provided, internal_supplied, pass_on.</p>\n","type":"text"},{"key":"line_number","value":null,"description":"<p>(Optional), (Nullable), The line number field must be an integer., The line number field must be at least 0., The line number field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"offer_item_id","value":null,"description":"<p>(Optional), (Nullable), The offer item id field must be an integer.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"promised_by_date","value":null,"description":"<p>(Optional), (Nullable), The promised by date field must be a valid date.</p>\n","type":"text"},{"key":"quantity","value":null,"description":"<p>(Optional), The quantity field must be a number., The quantity field must be at least 0., The quantity field must not be greater than 99999999999.9999.</p>\n","type":"text"},{"key":"required_by_date","value":null,"description":"<p>(Optional), (Nullable), The required by date field must be a valid date.</p>\n","type":"text"},{"key":"requisition_item_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"taxes_id","value":null,"description":"<p>(Optional), The taxes id field must be an integer.</p>\n","type":"text"},{"key":"unit_price","value":null,"description":"<p>(Optional), The unit price field must be a number., The unit price field must be at least -99999999999.9999., The unit price field must not be greater than 99999999999.9999.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_order_items/:sales_order_item","description":"<p>Update the specified <code>SalesOrderItem</code> .</p>\n","urlObject":{"path":["api","v1","sales_order_items",":sales_order_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"sales_order_item"}]}},"response":[],"_postman_id":"97fcf3ef-a06f-48ca-877c-316f3c76ea59"}],"id":"8115f608-3e04-4018-b0c7-1d0c5ccad7a4","_postman_id":"8115f608-3e04-4018-b0c7-1d0c5ccad7a4","description":""}],"id":"cee6e29c-3c45-48e7-bcce-d95c310f8ecf","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> buyer_user_id</code>,<code> catalog_item_id</code>,<code> comment</code>,<code> expeditor_user_id</code>,<code> id</code>,<code> inspection_level</code>,<code> item_type</code>,<code> line_number</code>,<code> offer_item_id</code>,<code> order_id</code>,<code> project_id</code>,<code> promised_by_date</code>,<code> quantity</code>,<code> required_by_date</code>,<code> status</code>,<code> subtotal</code>,<code> taxes_id</code>,<code> team_id</code>,<code> unit_price</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>associatedServicePlans</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientRepBusinessGroup</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expedite</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expeditorUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryReceptions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inventoryReleases</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>onReleaseAllocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>pendingAllocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>salesOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>servicePlans</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>supplierRepBusinessGroup</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraph</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>service_plans_summary</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>usage_count</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"cee6e29c-3c45-48e7-bcce-d95c310f8ecf"},{"name":"Sales Orders","item":[{"name":"Allocation Status","item":[{"name":"api/v1/sales_orders/{salesOrder}/allocation_status","id":"80ef5b09-99a2-4875-b80f-c2f882a69d84","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/allocation_status","description":"<p>Returns a summary of the status of <code>Allocations</code> in the context of a specified <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","allocation_status"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"80ef5b09-99a2-4875-b80f-c2f882a69d84"}],"id":"cc8b2229-c8af-475e-a6f3-41234ce0988f","_postman_id":"cc8b2229-c8af-475e-a6f3-41234ce0988f","description":""},{"name":"Consumable Material Listing","item":[{"name":"api/v1/sales_orders/{salesOrder}/list_consumable_materials","id":"b398cfe4-18e2-4b1e-852b-15cbfe1b36d5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/list_consumable_materials","description":"<p>Returns a listing of Consumable Material defined by the specified <code>SalesOrder</code> including the current status of planning and consumption.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","list_consumable_materials"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"b398cfe4-18e2-4b1e-852b-15cbfe1b36d5"}],"id":"4c8f769d-4a0e-4d33-bc24-e17e18a5e3ed","_postman_id":"4c8f769d-4a0e-4d33-bc24-e17e18a5e3ed","description":""},{"name":"Creatable Material Listing","item":[{"name":"api/v1/sales_orders/{salesOrder}/list_creatable_materials","id":"c1e0d4ea-8e04-4c4f-8296-cfe52ae9280e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/list_creatable_materials","description":"<p>Returns a listing of Creatable Material defined by the specified <code>SalesOrder</code> including the current status of planning and creation.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","list_creatable_materials"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"c1e0d4ea-8e04-4c4f-8296-cfe52ae9280e"}],"id":"5db1e06a-fb12-46c6-8bcf-6766b7b2636c","_postman_id":"5db1e06a-fb12-46c6-8bcf-6766b7b2636c","description":""},{"name":"Create Allocations For Customer Supplied Items","item":[{"name":"api/v1/sales_orders/{salesOrder}/create_allocations_for_customer_supplied_items","id":"75c3c16a-fb80-43a7-b08e-6b421204820d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"fabrication_location_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>(Nullable), The expected receive date field must be a valid date., The expected receive date field must be a date after today.</p>\n","type":"text"},{"key":"expected_consumption_date","value":null,"description":"<p>(Nullable), The expected consumption date field must be a valid date., The expected consumption date field must be a date after today.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/create_allocations_for_customer_supplied_items","description":"<p>Trigger automatic creation of allocations for customer supplied allocations based on optional provided values and the current configuration of the <code>SalesOrder</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","create_allocations_for_customer_supplied_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"75c3c16a-fb80-43a7-b08e-6b421204820d"}],"id":"67513b51-9823-4d0a-bfb2-5e50e1e01485","_postman_id":"67513b51-9823-4d0a-bfb2-5e50e1e01485","description":""},{"name":"Create Allocations For Sales Items","item":[{"name":"api/v1/sales_orders/{salesOrder}/create_allocations_for_sales_items","id":"172f5b7b-0a3a-4b48-9e42-dc3a2e87d0c0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/create_allocations_for_sales_items","description":"<p>Trigger automatic creation of allocations for <code>sales-item</code> allocations based on optional provided values and the current configuration of the <code>SalesOrder</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","create_allocations_for_sales_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"172f5b7b-0a3a-4b48-9e42-dc3a2e87d0c0"}],"id":"bb213522-70ed-4499-8839-ecaf03d7cd50","_postman_id":"bb213522-70ed-4499-8839-ecaf03d7cd50","description":""},{"name":"Create Material Allocations For Internal Supplied Items","item":[{"name":"api/v1/sales_orders/{salesOrder}/create_material_allocations_for_internal_supplied_items","id":"73b8824d-5925-4baf-8445-b75f5b4808c6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"fabrication_location_id","value":null,"description":"<p>(Nullable)</p>\n","type":"text"},{"key":"expected_consumption_date","value":null,"description":"<p>(Nullable), The expected consumption date field must be a valid date., The expected consumption date field must be a date after today.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/create_material_allocations_for_internal_supplied_items","description":"<p>Triggers the creation of material allocation for all Internal Supplied items on a <code>SalesOrder</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","create_material_allocations_for_internal_supplied_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"73b8824d-5925-4baf-8445-b75f5b4808c6"}],"id":"4535a257-c6dc-4591-99cb-52fea2301357","_postman_id":"4535a257-c6dc-4591-99cb-52fea2301357","description":""},{"name":"Destroy","item":[{"name":"api/v1/sales_orders/{sales_order}","id":"e0459bc5-33f1-47f7-981e-714ae5fc863e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:sales_order","description":"<p>Remove the specified <code>SalesOrder</code> from storage.</p>\n","urlObject":{"path":["api","v1","sales_orders",":sales_order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"sales_order"}]}},"response":[],"_postman_id":"e0459bc5-33f1-47f7-981e-714ae5fc863e"}],"id":"4d677aa7-6819-4cd5-bf4a-da5b63544528","_postman_id":"4d677aa7-6819-4cd5-bf4a-da5b63544528","description":""},{"name":"Get Sales Financial Summary","item":[{"name":"api/v1/sales_orders/{salesorder}/financial/{type}","id":"cb44b6d5-39e8-4523-8ccb-cd30461fb7f4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:salesorder/financial/:type","description":"<p>Provides the financial summary of an <code>SalesOrder</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesorder","financial",":type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesorder"},{"type":"any","key":"type"}]}},"response":[],"_postman_id":"cb44b6d5-39e8-4523-8ccb-cd30461fb7f4"}],"id":"d5a3ceb4-f3b1-4a67-bd65-175d657723cb","_postman_id":"d5a3ceb4-f3b1-4a67-bd65-175d657723cb","description":""},{"name":"Index","item":[{"name":"api/v1/sales_orders","id":"2bdd7f63-44cc-426b-914d-f04cadbf9884","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders","description":"<p>Returns a list of multiple <code>SalesOrder</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","sales_orders"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2bdd7f63-44cc-426b-914d-f04cadbf9884"}],"id":"9fcdc7d3-d07f-4415-8b3c-087d80c136ef","_postman_id":"9fcdc7d3-d07f-4415-8b3c-087d80c136ef","description":""},{"name":"Potential Releases","item":[{"name":"api/v1/sales_orders/{salesOrder}/potential_order_releases","id":"99f1dee6-c185-4793-8638-3e108bc3e155","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/potential_order_releases","description":"<p>Generates a listing of Potential Release points grouped on common Origin, Destination and Expected Release Date.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","potential_order_releases"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"99f1dee6-c185-4793-8638-3e108bc3e155"}],"id":"7348e664-255d-44f5-8b2d-9c1e34890718","_postman_id":"7348e664-255d-44f5-8b2d-9c1e34890718","description":""},{"name":"Reset Allocations","item":[{"name":"api/v1/sales_orders/{salesOrder}/reset_allocations","id":"6a89a91e-3755-4334-81b4-90f0ea58caf3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/reset_allocations","description":"<p>Cancels all pending <code>Allocations</code> for the specified <code>Order</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","reset_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"6a89a91e-3755-4334-81b4-90f0ea58caf3"}],"id":"47fb0b2a-5603-43a8-8f7e-43c2ee39b704","_postman_id":"47fb0b2a-5603-43a8-8f7e-43c2ee39b704","description":""},{"name":"Show","item":[{"name":"api/v1/sales_orders/{sales_order}","id":"54497bcf-ed01-407c-9a89-dce7c3d90c65","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:sales_order","description":"<p>Display the specified <code>SalesOrder</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":sales_order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"sales_order"}]}},"response":[],"_postman_id":"54497bcf-ed01-407c-9a89-dce7c3d90c65"}],"id":"2e922035-257a-422d-aeaa-5b6e7485a29c","_postman_id":"2e922035-257a-422d-aeaa-5b6e7485a29c","description":""},{"name":"Store","item":[{"name":"api/v1/sales_orders","id":"dba2be14-b3f7-41e7-97be-263f7f398b19","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Nullable), The bid id field must be an integer.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"client_person_id","value":null,"description":"<p>(Nullable), The client person id field must be an integer.</p>\n","type":"text"},{"key":"contract_identifier","value":null,"description":"<p>(Nullable), The contract identifier field must be a string., The contract identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"critical_path","value":null,"description":"<p>(Optional), The critical path field must be true or false.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Nullable), The default taxes id field must be an integer., The default taxes id field must be at least 0., The default taxes id field must not be greater than 1.844674407371E+19.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable), The inspection business id field must be an integer.</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable), The inspection person id field must be an integer.</p>\n","type":"text"},{"key":"inspection_coordinator_user_id","value":null,"description":"<p>(Nullable), The inspection coordinator user id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>(Nullable), The offer id field must be an integer.</p>\n","type":"text"},{"key":"order_identifier","value":null,"description":"<p>(Nullable), The order identifier field must be a string., The order identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"order_contact","value":null,"description":"<p>(Nullable), The order contact field must be a string., The selected order contact is invalid, it must exist in buyer_user, manager_user, responsible_engineer_user, client_person.</p>\n","type":"text"},{"key":"order_header","value":null,"description":"<p>(Nullable), The order header field must be an array.</p>\n","type":"text"},{"key":"locked_order_id","value":null,"description":"<p>(Nullable), The locked order id field must be an integer.</p>\n","type":"text"},{"key":"order_type","value":null,"description":"<p>(Nullable), The order type field must be a string., The selected order type is invalid, it must exist in sales_order.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Nullable), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Nullable), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_orders","description":"<p>Create a new <code>SalesOrder</code> object.</p>\n","urlObject":{"path":["api","v1","sales_orders"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"dba2be14-b3f7-41e7-97be-263f7f398b19"}],"id":"61ff160b-6a75-4ad3-a615-0a3a01c704db","_postman_id":"61ff160b-6a75-4ad3-a615-0a3a01c704db","description":""},{"name":"Transform Materials","item":[{"name":"api/v1/sales_orders/{salesOrder}/transform_materials","id":"8443842c-560c-4278-9f53-b45221990a8c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"fabrication_location_id","value":null,"description":"<p>(Optional), (Nullable)</p>\n","type":"text"},{"key":"effective_date","value":null,"description":"<p>(Optional), (Nullable), The effective date field must be a valid date.</p>\n","type":"text"},{"key":"inputs","value":null,"description":"<p>(Optional), (Nullable), The inputs field must be an array.</p>\n","type":"text"},{"key":"inputs.*","value":null,"description":"<p>The inputs.* field must be an array.</p>\n","type":"text"},{"key":"inputs.*.order_item_id","value":null,"description":"<p>The inputs.*.order item id field must be an integer.</p>\n","type":"text"},{"key":"inputs.*.quantity","value":null,"description":"<p>The inputs.<em>.quantity field must be a number., The inputs.</em>.quantity field must be at least 0.0001 characters.</p>\n","type":"text"},{"key":"outputs","value":null,"description":"<p>(Optional), (Nullable), The outputs field must be an array.</p>\n","type":"text"},{"key":"outputs.*","value":null,"description":"<p>The outputs.* field must be an array.</p>\n","type":"text"},{"key":"outputs.*.order_item_id","value":null,"description":"<p>The outputs.*.order item id field must be an integer.</p>\n","type":"text"},{"key":"outputs.*.quantity","value":null,"description":"<p>The outputs.<em>.quantity field must be a number., The outputs.</em>.quantity field must be at least 0.0001 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_orders/:salesOrder/transform_materials","description":"<p>Accepts a collection of Inputs and Outputs and executes a transformation, by consuming Inputs and creating Outputs within the context of a specified <code>SalesOrder</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesOrder","transform_materials"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesOrder"}]}},"response":[],"_postman_id":"8443842c-560c-4278-9f53-b45221990a8c"}],"id":"1f19cd6a-b5c0-4d32-8c13-12444922e86e","_postman_id":"1f19cd6a-b5c0-4d32-8c13-12444922e86e","description":""},{"name":"Update","item":[{"name":"api/v1/sales_orders/{sales_order}","id":"c22ed727-abc5-429b-b78a-d4b0d2762060","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Optional), (Nullable), The bid id field must be an integer.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"client_person_id","value":null,"description":"<p>(Optional), (Nullable), The client person id field must be an integer.</p>\n","type":"text"},{"key":"contract_identifier","value":null,"description":"<p>(Optional), (Nullable), The contract identifier field must be a string., The contract identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"critical_path","value":null,"description":"<p>(Optional), The critical path field must be true or false.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), (Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable), The inspection business id field must be an integer.</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable), The inspection person id field must be an integer.</p>\n","type":"text"},{"key":"inspection_coordinator_user_id","value":null,"description":"<p>(Nullable), The inspection coordinator user id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Optional), (Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), (Nullable), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>(Optional), (Nullable), The offer id field must be an integer.</p>\n","type":"text"},{"key":"order_identifier","value":null,"description":"<p>(Optional), (Nullable), The order identifier field must be a string., The order identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"order_contact","value":null,"description":"<p>(Optional), (Nullable), The order contact field must be a string., The selected order contact is invalid, it must exist in buyer_user, manager_user, responsible_engineer_user, client_person.</p>\n","type":"text"},{"key":"order_header","value":null,"description":"<p>(Optional), (Nullable), The order header field must be an array.</p>\n","type":"text"},{"key":"locked_order_id","value":null,"description":"<p>(Optional), (Nullable), The locked order id field must be an integer.</p>\n","type":"text"},{"key":"order_type","value":null,"description":"<p>(Optional), The order type field must be a string., The selected order type is invalid, it must exist in sales_order.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), (Nullable), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_orders/:sales_order","description":"<p>Update the specified <code>SalesOrder</code> .</p>\n","urlObject":{"path":["api","v1","sales_orders",":sales_order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"sales_order"}]}},"response":[],"_postman_id":"c22ed727-abc5-429b-b78a-d4b0d2762060"},{"name":"api/v1/sales_orders/{sales_order}","id":"b4a1d3fb-ce0b-4d6c-90fb-60e03e8a3dd1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"bid_id","value":null,"description":"<p>(Optional), (Nullable), The bid id field must be an integer.</p>\n","type":"text"},{"key":"buyer_user_id","value":null,"description":"<p>(Optional), (Nullable), The buyer user id field must be an integer.</p>\n","type":"text"},{"key":"client_person_id","value":null,"description":"<p>(Optional), (Nullable), The client person id field must be an integer.</p>\n","type":"text"},{"key":"contract_identifier","value":null,"description":"<p>(Optional), (Nullable), The contract identifier field must be a string., The contract identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"currency_code","value":null,"description":"<p>(Optional), (Nullable), The currency code field is not a valid ISO 4217 Currency Code.</p>\n","type":"text"},{"key":"critical_path","value":null,"description":"<p>(Optional), The critical path field must be true or false.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Optional), (Nullable), The default taxes id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expeditor_user_id","value":null,"description":"<p>(Optional), (Nullable), The expeditor user id field must be an integer.</p>\n","type":"text"},{"key":"incoterm_id","value":null,"description":"<p>(Optional), (Nullable), The incoterm id field must be an integer.</p>\n","type":"text"},{"key":"inspection_business_id","value":null,"description":"<p>(Nullable), The inspection business id field must be an integer.</p>\n","type":"text"},{"key":"inspection_person_id","value":null,"description":"<p>(Nullable), The inspection person id field must be an integer.</p>\n","type":"text"},{"key":"inspection_coordinator_user_id","value":null,"description":"<p>(Nullable), The inspection coordinator user id field must be an integer.</p>\n","type":"text"},{"key":"manager_user_id","value":null,"description":"<p>(Optional), (Nullable), The manager user id field must be an integer.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), (Nullable), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"offer_id","value":null,"description":"<p>(Optional), (Nullable), The offer id field must be an integer.</p>\n","type":"text"},{"key":"order_identifier","value":null,"description":"<p>(Optional), (Nullable), The order identifier field must be a string., The order identifier field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"paymentterm_id","value":null,"description":"<p>(Optional), (Nullable), The paymentterm id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"order_contact","value":null,"description":"<p>(Optional), (Nullable), The order contact field must be a string., The selected order contact is invalid, it must exist in buyer_user, manager_user, responsible_engineer_user, client_person.</p>\n","type":"text"},{"key":"order_header","value":null,"description":"<p>(Optional), (Nullable), The order header field must be an array.</p>\n","type":"text"},{"key":"locked_order_id","value":null,"description":"<p>(Optional), (Nullable), The locked order id field must be an integer.</p>\n","type":"text"},{"key":"order_type","value":null,"description":"<p>(Optional), The order type field must be a string., The selected order type is invalid, it must exist in sales_order.</p>\n","type":"text"},{"key":"responsible_engineer_user_id","value":null,"description":"<p>(Optional), (Nullable), The responsible engineer user id field must be an integer.</p>\n","type":"text"},{"key":"project_team_user_id","value":null,"description":"<p>(Optional), (Nullable), The project team user id field must be an integer.</p>\n","type":"text"},{"key":"validation_graph_uuid","value":null,"description":"<p>(Optional), The selected validation graph uuid must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), (Nullable), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/sales_orders/:sales_order","description":"<p>Update the specified <code>SalesOrder</code> .</p>\n","urlObject":{"path":["api","v1","sales_orders",":sales_order"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"sales_order"}]}},"response":[],"_postman_id":"b4a1d3fb-ce0b-4d6c-90fb-60e03e8a3dd1"}],"id":"b52fb549-3470-48fd-889a-8b8e5a5dff89","_postman_id":"b52fb549-3470-48fd-889a-8b8e5a5dff89","description":""},{"name":"View Sales Chain","item":[{"name":"api/v1/sales_orders/{salesorder}/chain","id":"ff7ad5a6-83f4-4a2a-a23e-10e54e8d5df2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/sales_orders/:salesorder/chain","description":"<p>Returns the linked <code>Orderables</code> associated with a specified <code>SalesOrder</code>.</p>\n","urlObject":{"path":["api","v1","sales_orders",":salesorder","chain"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"salesorder"}]}},"response":[],"_postman_id":"ff7ad5a6-83f4-4a2a-a23e-10e54e8d5df2"}],"id":"2d812f46-dab3-47f2-b366-cc4bdab35d9a","_postman_id":"2d812f46-dab3-47f2-b366-cc4bdab35d9a","description":""}],"id":"0b138534-758e-469e-af26-f96b5a1cc367","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> buyer_user_id</code>,<code> critical_path</code>,<code> currency_code</code>,<code> default_taxes_id</code>,<code> expeditor_user_id</code>,<code> id</code>,<code> inspection_business_id</code>,<code> inspection_coordinator_user_id</code>,<code> inspection_person_id</code>,<code> metadata</code>,<code> order_identifier</code>,<code> project_id</code>,<code> status</code>,<code> team_id</code>,<code> vendor_business_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowedGroupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowedUserFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bid</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billingPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>buyerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>clientRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>code</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentState</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>customerProvidedItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>defaultTax</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>destination</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>drawings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>evaluations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expedite</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>expeditorUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fabricationEndDate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fabricationPlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fabricationStartDate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>groupings</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>incoTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionCoordinatorUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>inspectionPerson</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>internalSuppliedItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>invoices</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastReportingStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastStatusUpdate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lockedOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>managerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>materialAllocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>materialLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>materialsRequiredDate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>openTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderDocument</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>origin</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>overdueTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>passOnItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>paymentTerms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>places</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectManager</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectTeamRep</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>releaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>reportingStatusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>responsibleEngineerUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>saleItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>salesItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>salesOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>serviceReleases</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specifications</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusUpdates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storageAllocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storageLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>storagePlace</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userFields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusiness</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorRep</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allowed_activities</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allowed_transitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>chain_dates</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>committed_revenue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>financial_summary</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>invoiced_cost</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>local_committed_revenue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>planned_revenue</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>revision</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>subtotal</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0b138534-758e-469e-af26-f96b5a1cc367"},{"name":"Service Plans","item":[{"name":"Bulk Update","item":[{"name":"api/v1/bulk_service_plans","id":"b36f1c55-dea7-45e2-a89f-9595cb57cdec","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.associated_order_id","value":null,"description":"<p>The data.<em>.associated order id field is required when associated order item id is present., (Nullable), The data.</em>.associated order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.associated_order_item_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.associated order item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.catalog_item_id","value":null,"description":"<p>(Optional), The data.*.catalog item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Optional), (Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.comment.internal","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.internal field must be a string., The data.</em>.comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"data.*.comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.comment.item notes field must be a string., The data.</em>.comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"data.*.end_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.end date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.expected_end_date","value":null,"description":"<p>(Optional), The data.*.expected end date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.expected_start_date","value":null,"description":"<p>(Optional), The data.*.expected start date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.order_id","value":null,"description":"<p>(Optional), The data.*.order id field must be an integer.</p>\n","type":"text"},{"key":"data.*.order_item_id","value":null,"description":"<p>(Optional), The data.*.order item id field must be an integer.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity_completed","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.quantity completed field must be a number., The data.</em>.quantity completed field must be at least 0 characters., The data.*.quantity completed field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.quantity_planned","value":null,"description":"<p>(Optional), The data.<em>.quantity planned field must be a number., The data.</em>.quantity planned field must be at least 0 characters., The data.*.quantity planned field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.service_location_id","value":null,"description":"<p>(Optional), (Nullable), The data.*.service location id field must be an integer.</p>\n","type":"text"},{"key":"data.*.service_release_id","value":null,"description":"<p>(Optional), The data.*.service release id field must be an integer.</p>\n","type":"text"},{"key":"data.*.start_date","value":null,"description":"<p>(Optional), (Nullable), The data.*.start date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.update_tags","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_service_plans","description":"<p>Update multiple <code>ServicePlan</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_service_plans"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b36f1c55-dea7-45e2-a89f-9595cb57cdec"}],"id":"950808fc-5beb-430a-9639-e8ca63484ab4","_postman_id":"950808fc-5beb-430a-9639-e8ca63484ab4","description":""},{"name":"Destroy","item":[{"name":"api/v1/service_plans/{service_plan}","id":"979878c5-86c7-46a0-ad00-d717a8b67f25","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_plans/:service_plan","description":"<p>Remove the specified <code>ServicePlan</code> from storage.</p>\n","urlObject":{"path":["api","v1","service_plans",":service_plan"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_plan"}]}},"response":[],"_postman_id":"979878c5-86c7-46a0-ad00-d717a8b67f25"}],"id":"98c26d18-2a8b-4c7c-aaf2-706b9f44187f","_postman_id":"98c26d18-2a8b-4c7c-aaf2-706b9f44187f","description":""},{"name":"Index","item":[{"name":"api/v1/service_plans","id":"e44c42de-3c9e-4e4e-a052-d7f13d822bfa","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_plans","description":"<p>Returns a list of multiple <code>ServicePlan</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","service_plans"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e44c42de-3c9e-4e4e-a052-d7f13d822bfa"}],"id":"47506a62-17bd-4b6f-bc05-5b9dba3ecf3a","_postman_id":"47506a62-17bd-4b6f-bc05-5b9dba3ecf3a","description":""},{"name":"Show","item":[{"name":"api/v1/service_plans/{service_plan}","id":"a9539031-8cd2-4b2a-9e65-0a1576477a34","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_plans/:service_plan","description":"<p>Display the specified <code>ServicePlan</code>.</p>\n","urlObject":{"path":["api","v1","service_plans",":service_plan"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_plan"}]}},"response":[],"_postman_id":"a9539031-8cd2-4b2a-9e65-0a1576477a34"}],"id":"d5d462da-8c0c-4b75-93d9-d2b1c64fa0ed","_postman_id":"d5d462da-8c0c-4b75-93d9-d2b1c64fa0ed","description":""},{"name":"Store","item":[{"name":"api/v1/service_plans","id":"4451f637-a34c-4657-85d2-ff639006a794","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"associated_order_item_id","value":null,"description":"<p>(Nullable), The associated order item id field must be an integer.</p>\n","type":"text"},{"key":"associated_order_id","value":null,"description":"<p>(Nullable), The associated order id field is required when associated order item id is present., The associated order id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>The catalog item id field is required., The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"end_date","value":null,"description":"<p>(Nullable), The end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_end_date","value":null,"description":"<p>The expected end date field is required., The expected end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_start_date","value":null,"description":"<p>The expected start date field is required., The expected start date field must be a valid date.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>The order item id field is required., The order item id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity_completed","value":null,"description":"<p>(Nullable), The quantity completed field must be a number., The quantity completed field must be at least 0., The quantity completed field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_planned","value":null,"description":"<p>The quantity planned field is required., The quantity planned field must be a number., The quantity planned field must be at least 0., The quantity planned field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"service_location_id","value":null,"description":"<p>(Nullable), The service location id field must be an integer.</p>\n","type":"text"},{"key":"service_release_id","value":null,"description":"<p>The service release id field is required., The service release id field must be an integer.</p>\n","type":"text"},{"key":"start_date","value":null,"description":"<p>(Nullable), The start date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/service_plans","description":"<p>Create a new <code>ServicePlan</code> object.</p>\n","urlObject":{"path":["api","v1","service_plans"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4451f637-a34c-4657-85d2-ff639006a794"}],"id":"9a47982f-13fb-4bfe-af0c-5ac49c56215f","_postman_id":"9a47982f-13fb-4bfe-af0c-5ac49c56215f","description":""},{"name":"Update","item":[{"name":"api/v1/service_plans/{service_plan}","id":"1d8ad927-51f0-4294-8a69-3cf665faf25d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"associated_order_id","value":null,"description":"<p>The associated order id field is required when associated order item id is present., (Nullable), The associated order id field must be an integer.</p>\n","type":"text"},{"key":"associated_order_item_id","value":null,"description":"<p>(Optional), (Nullable), The associated order item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"end_date","value":null,"description":"<p>(Optional), (Nullable), The end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_end_date","value":null,"description":"<p>(Optional), The expected end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_start_date","value":null,"description":"<p>(Optional), The expected start date field must be a valid date.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), The order id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Optional), The order item id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity_completed","value":null,"description":"<p>(Optional), (Nullable), The quantity completed field must be a number., The quantity completed field must be at least 0., The quantity completed field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_planned","value":null,"description":"<p>(Optional), The quantity planned field must be a number., The quantity planned field must be at least 0., The quantity planned field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"service_location_id","value":null,"description":"<p>(Optional), (Nullable), The service location id field must be an integer.</p>\n","type":"text"},{"key":"service_release_id","value":null,"description":"<p>(Optional), The service release id field must be an integer.</p>\n","type":"text"},{"key":"start_date","value":null,"description":"<p>(Optional), (Nullable), The start date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/service_plans/:service_plan","description":"<p>Update the specified <code>ServicePlan</code> .</p>\n","urlObject":{"path":["api","v1","service_plans",":service_plan"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_plan"}]}},"response":[],"_postman_id":"1d8ad927-51f0-4294-8a69-3cf665faf25d"},{"name":"api/v1/service_plans/{service_plan}","id":"9a8bdfea-dc08-42d5-bf98-8c7fc400800f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"associated_order_id","value":null,"description":"<p>The associated order id field is required when associated order item id is present., (Nullable), The associated order id field must be an integer.</p>\n","type":"text"},{"key":"associated_order_item_id","value":null,"description":"<p>(Optional), (Nullable), The associated order item id field must be an integer.</p>\n","type":"text"},{"key":"catalog_item_id","value":null,"description":"<p>(Optional), The catalog item id field must be an integer.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"end_date","value":null,"description":"<p>(Optional), (Nullable), The end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_end_date","value":null,"description":"<p>(Optional), The expected end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_start_date","value":null,"description":"<p>(Optional), The expected start date field must be a valid date.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), The order id field must be an integer.</p>\n","type":"text"},{"key":"order_item_id","value":null,"description":"<p>(Optional), The order item id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"quantity_completed","value":null,"description":"<p>(Optional), (Nullable), The quantity completed field must be a number., The quantity completed field must be at least 0., The quantity completed field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_planned","value":null,"description":"<p>(Optional), The quantity planned field must be a number., The quantity planned field must be at least 0., The quantity planned field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"service_location_id","value":null,"description":"<p>(Optional), (Nullable), The service location id field must be an integer.</p>\n","type":"text"},{"key":"service_release_id","value":null,"description":"<p>(Optional), The service release id field must be an integer.</p>\n","type":"text"},{"key":"start_date","value":null,"description":"<p>(Optional), (Nullable), The start date field must be a valid date.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/service_plans/:service_plan","description":"<p>Update the specified <code>ServicePlan</code> .</p>\n","urlObject":{"path":["api","v1","service_plans",":service_plan"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_plan"}]}},"response":[],"_postman_id":"9a8bdfea-dc08-42d5-bf98-8c7fc400800f"}],"id":"428aa542-e7ec-4e3d-aa62-4405897b70ee","_postman_id":"428aa542-e7ec-4e3d-aa62-4405897b70ee","description":""}],"id":"883c27b8-961f-4929-bc36-409723b38fe6","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> associated_order_id</code>,<code> associated_order_item_id</code>,<code> catalog_item_id</code>,<code> comment</code>,<code> end_date</code>,<code> expected_end_date</code>,<code> expected_start_date</code>,<code> order_id</code>,<code> order_item_id</code>,<code> project_id</code>,<code> quantity_completed</code>,<code> quantity_planned</code>,<code> service_location_id</code>,<code> service_release_id</code>,<code> start_date</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>associatedOrder</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>associatedOrderItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>catalogItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItem</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>serviceLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>serviceRelease</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"883c27b8-961f-4929-bc36-409723b38fe6"},{"name":"Service Releases","item":[{"name":"Cancel","item":[{"name":"api/v1/service_releases/{service_release}/cancel","id":"72252ab5-7f49-46b3-a4fe-223f4efd2e73","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_releases/:service_release/cancel","description":"<p>Cancel the specified ServiceRelease.</p>\n","urlObject":{"path":["api","v1","service_releases",":service_release","cancel"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_release"}]}},"response":[],"_postman_id":"72252ab5-7f49-46b3-a4fe-223f4efd2e73"}],"id":"e00b5096-29cf-4aad-8e2f-b485d43b70e7","_postman_id":"e00b5096-29cf-4aad-8e2f-b485d43b70e7","description":""},{"name":"Complete","item":[{"name":"api/v1/service_releases/{service_release}/complete","id":"01e166de-47cc-44b5-8250-8dc0f19a2914","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_releases/:service_release/complete","description":"<p>Mark the specified ServiceRelease complete.</p>\n","urlObject":{"path":["api","v1","service_releases",":service_release","complete"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_release"}]}},"response":[],"_postman_id":"01e166de-47cc-44b5-8250-8dc0f19a2914"}],"id":"3f3381e0-72a6-4584-a6a1-44c894a96973","_postman_id":"3f3381e0-72a6-4584-a6a1-44c894a96973","description":""},{"name":"Destroy","item":[{"name":"api/v1/service_releases/{service_release}","id":"76e8ad1e-54be-4a49-9c37-69d75e5746e3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_releases/:service_release","description":"<p>Remove the specified <code>ServiceRelease</code> from storage.</p>\n","urlObject":{"path":["api","v1","service_releases",":service_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_release"}]}},"response":[],"_postman_id":"76e8ad1e-54be-4a49-9c37-69d75e5746e3"}],"id":"f325473f-4e86-46fb-9762-4358cdd5e34d","_postman_id":"f325473f-4e86-46fb-9762-4358cdd5e34d","description":""},{"name":"Index","item":[{"name":"api/v1/service_releases","id":"e95b00bd-59a8-45cc-92f3-a0c02470485b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_releases","description":"<p>Returns a list of multiple <code>ServiceRelease</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","service_releases"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e95b00bd-59a8-45cc-92f3-a0c02470485b"}],"id":"a13eb177-2398-41cb-bc67-05fb993d9481","_postman_id":"a13eb177-2398-41cb-bc67-05fb993d9481","description":""},{"name":"Issue","item":[{"name":"api/v1/service_releases/{service_release}/issue","id":"4f03059f-d7d1-444b-9dab-d621eb53c5f7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_releases/:service_release/issue","description":"<p>Issue the specified ServiceRelease.</p>\n","urlObject":{"path":["api","v1","service_releases",":service_release","issue"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_release"}]}},"response":[],"_postman_id":"4f03059f-d7d1-444b-9dab-d621eb53c5f7"}],"id":"ecc14468-714f-4491-8a76-3b5fa136d660","_postman_id":"ecc14468-714f-4491-8a76-3b5fa136d660","description":""},{"name":"Show","item":[{"name":"api/v1/service_releases/{service_release}","id":"1f19506d-98c5-40eb-af62-24237f95dd13","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/service_releases/:service_release","description":"<p>Display the specified <code>ServiceRelease</code>.</p>\n","urlObject":{"path":["api","v1","service_releases",":service_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_release"}]}},"response":[],"_postman_id":"1f19506d-98c5-40eb-af62-24237f95dd13"}],"id":"b322664c-5cc9-49c0-9efb-f83fcb41603f","_postman_id":"b322664c-5cc9-49c0-9efb-f83fcb41603f","description":""},{"name":"Store","item":[{"name":"api/v1/service_releases","id":"38cba7e4-432a-4908-9cb1-0b3b36aa7e85","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"contact_user_id","value":null,"description":"<p>The contact user id field is required., The contact user id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 115 characters.</p>\n","type":"text"},{"key":"expected_end_date","value":null,"description":"<p>The expected end date field is required., The expected end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_start_date","value":null,"description":"<p>The expected start date field is required., The expected start date field must be a valid date.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Nullable), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>The order id field is required., The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>The vendor business id field is required., The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/service_releases","description":"<p>Create a new <code>ServiceRelease</code> object.</p>\n","urlObject":{"path":["api","v1","service_releases"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"38cba7e4-432a-4908-9cb1-0b3b36aa7e85"}],"id":"e66256ec-9de8-47b6-9a0a-95f0caaf1a73","_postman_id":"e66256ec-9de8-47b6-9a0a-95f0caaf1a73","description":""},{"name":"Update","item":[{"name":"api/v1/service_releases/{service_release}","id":"d12b7014-b675-447c-b1be-7eb489ee7ff1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"contact_user_id","value":null,"description":"<p>(Optional), The contact user id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 115 characters.</p>\n","type":"text"},{"key":"expected_end_date","value":null,"description":"<p>(Optional), The expected end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_start_date","value":null,"description":"<p>(Optional), The expected start date field must be a valid date.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), (Nullable), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/service_releases/:service_release","description":"<p>Update the specified <code>ServiceRelease</code> .</p>\n","urlObject":{"path":["api","v1","service_releases",":service_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_release"}]}},"response":[],"_postman_id":"d12b7014-b675-447c-b1be-7eb489ee7ff1"},{"name":"api/v1/service_releases/{service_release}","id":"d1402144-34fe-4be6-a556-4f29926bdd62","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"contact_user_id","value":null,"description":"<p>(Optional), The contact user id field must be an integer.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 115 characters.</p>\n","type":"text"},{"key":"expected_end_date","value":null,"description":"<p>(Optional), The expected end date field must be a valid date.</p>\n","type":"text"},{"key":"expected_start_date","value":null,"description":"<p>(Optional), The expected start date field must be a valid date.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), (Nullable), The name field must be a string., The name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"order_id","value":null,"description":"<p>(Optional), The order id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"vendor_business_id","value":null,"description":"<p>(Optional), The vendor business id field must be an integer.</p>\n","type":"text"},{"key":"vendor_person_id","value":null,"description":"<p>(Optional), (Nullable), The vendor person id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/service_releases/:service_release","description":"<p>Update the specified <code>ServiceRelease</code> .</p>\n","urlObject":{"path":["api","v1","service_releases",":service_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"service_release"}]}},"response":[],"_postman_id":"d1402144-34fe-4be6-a556-4f29926bdd62"}],"id":"e6aa3f38-e24b-47fe-8aea-1cbc9970bc70","_postman_id":"e6aa3f38-e24b-47fe-8aea-1cbc9970bc70","description":""}],"id":"dfea2d4a-5e73-4b1c-9575-0fa5e5bfb202","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> comment</code>,<code> contact_user_id</code>,<code> description</code>,<code> name</code>,<code> order_id</code>,<code> project_id</code>,<code> status</code>,<code> team_id</code>,<code> vendor_business_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>contactUser</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>order</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>vendorBusiness</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"dfea2d4a-5e73-4b1c-9575-0fa5e5bfb202"},{"name":"Ship Groups","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_ship_groups","id":"54357d03-5de9-450e-8968-c5703c1ad52f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_groups","value":null,"description":"<p>The ship groups field is required., The ship groups field must be an array.</p>\n","type":"text"},{"key":"ship_groups.*","value":null,"description":"<p>The ship groups.* field must be an integer., The ship groups.* field must be at least 0 characters., The ship groups.* field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_ship_groups","description":"<p>Destroy multiple <code>ShipGroup</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_ship_groups"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"54357d03-5de9-450e-8968-c5703c1ad52f"}],"id":"1c29aa95-3a82-4aaa-adaa-00f67802d5e6","_postman_id":"1c29aa95-3a82-4aaa-adaa-00f67802d5e6","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_ship_groups","id":"d95144d8-4b1d-414a-956e-bbff77ba4489","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.shipping_method","value":null,"description":"<p>The data.<em>.shipping method field is required., The data.</em>.shipping method field must be a string., The data.*.shipping method field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.release_date","value":null,"description":"<p>(Nullable), The data.*.release date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.receive_date","value":null,"description":"<p>(Nullable), The data.<em>.receive date field must be a valid date., The data.</em>.receive date field must be a date after or equal to release date.</p>\n","type":"text"},{"key":"data.*.to_location_id","value":null,"description":"<p>The data.<em>.to location id field is required., The data.</em>.to location id field must be an integer.</p>\n","type":"text"},{"key":"data.*.from_location_id","value":null,"description":"<p>The data.<em>.from location id field is required., The data.</em>.from location id field must be an integer.</p>\n","type":"text"},{"key":"data.*.expected_release_date","value":null,"description":"<p>(Nullable), The data.*.expected release date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.expected_receive_date","value":null,"description":"<p>(Nullable), The data.<em>.expected receive date field must be a valid date., The data.</em>.expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"data.*.comment","value":null,"description":"<p>(Nullable), The data.*.comment field must be an array.</p>\n","type":"text"},{"key":"data.*.shipment_tag_number","value":null,"description":"<p>(Nullable), The data.<em>.shipment tag number field must be a string., The data.</em>.shipment tag number field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"data.*.transport_id","value":null,"description":"<p>(Nullable), The data.<em>.transport id field must be a string., The data.</em>.transport id field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"data.*.waybill_number","value":null,"description":"<p>(Nullable), The data.<em>.waybill number field must be a string., The data.</em>.waybill number field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"data.*.expected_customs_clearance_date","value":null,"description":"<p>(Nullable), The data.*.expected customs clearance date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.actual_customs_clearance_date","value":null,"description":"<p>(Nullable), The data.*.actual customs clearance date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_ship_groups","description":"<p>Create multiple <code>ShipGroup</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_ship_groups"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d95144d8-4b1d-414a-956e-bbff77ba4489"}],"id":"ba133598-c7a6-468c-9da0-d1eafb093a23","_postman_id":"ba133598-c7a6-468c-9da0-d1eafb093a23","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_ship_groups","id":"725b3438-8c72-4ab1-bafe-458a70b54e76","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_ship_groups","description":"<p>Update multiple <code>ShipGroup</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_ship_groups"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"725b3438-8c72-4ab1-bafe-458a70b54e76"}],"id":"4ce8d34f-2342-41fd-90b2-7d762b95a643","_postman_id":"4ce8d34f-2342-41fd-90b2-7d762b95a643","description":""},{"name":"Destroy","item":[{"name":"api/v1/ship_groups/{ship_group}","id":"28d04a89-fd7b-42eb-a5e3-63abe73d4023","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups/:ship_group","description":"<p>Remove the specified <code>ShipGroup</code> from storage.</p>\n","urlObject":{"path":["api","v1","ship_groups",":ship_group"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_group"}]}},"response":[],"_postman_id":"28d04a89-fd7b-42eb-a5e3-63abe73d4023"}],"id":"aae8adb4-be13-4635-abd4-a1699ed0bde3","_postman_id":"aae8adb4-be13-4635-abd4-a1699ed0bde3","description":""},{"name":"Index","item":[{"name":"api/v1/ship_groups","id":"102b795d-9a0a-4fc5-9511-2404bd5727e8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups","description":"<p>Returns a list of multiple <code>ShipGroups</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","ship_groups"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"102b795d-9a0a-4fc5-9511-2404bd5727e8"}],"id":"1f66b0f1-a4ae-4cc0-bdeb-c49963fe9df3","_postman_id":"1f66b0f1-a4ae-4cc0-bdeb-c49963fe9df3","description":""},{"name":"Show","item":[{"name":"api/v1/ship_groups/{ship_group}","id":"e7d984f8-0eef-4ca5-8f0e-2b73facca02c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups/:ship_group","description":"<p>Display the specified <code>ShipGroup</code>.</p>\n","urlObject":{"path":["api","v1","ship_groups",":ship_group"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_group"}]}},"response":[],"_postman_id":"e7d984f8-0eef-4ca5-8f0e-2b73facca02c"}],"id":"a70bbfcf-3d8f-419a-a42e-d893f19dbb77","_postman_id":"a70bbfcf-3d8f-419a-a42e-d893f19dbb77","description":""},{"name":"Store","item":[{"name":"api/v1/ship_groups","id":"cdc268d0-a61e-4933-9c07-adf7a008d6fd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"shipping_method","value":null,"description":"<p>The shipping method field is required., The shipping method field must be a string., The shipping method field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"release_date","value":null,"description":"<p>(Nullable), The release date field must be a valid date.</p>\n","type":"text"},{"key":"receive_date","value":null,"description":"<p>(Nullable), The receive date field must be a valid date., The receive date field must be a date after or equal to release date.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>The to location id field is required., The to location id field must be an integer.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"expected_release_date","value":null,"description":"<p>(Nullable), The expected release date field must be a valid date.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>(Nullable), The expected receive date field must be a valid date., The expected receive date field must be a date after or equal to expected release date.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"shipment_tag_number","value":null,"description":"<p>(Nullable), The shipment tag number field must be a string., The shipment tag number field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"transport_id","value":null,"description":"<p>(Nullable), The transport id field must be a string., The transport id field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"waybill_number","value":null,"description":"<p>(Nullable), The waybill number field must be a string., The waybill number field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expected_customs_clearance_date","value":null,"description":"<p>(Nullable), The expected customs clearance date field must be a valid date.</p>\n","type":"text"},{"key":"actual_customs_clearance_date","value":null,"description":"<p>(Nullable), The actual customs clearance date field must be a valid date.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups","description":"<p>Create a new <code>ShipGroup</code> object.</p>\n","urlObject":{"path":["api","v1","ship_groups"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"cdc268d0-a61e-4933-9c07-adf7a008d6fd"}],"id":"0750d42e-e104-49cf-bac2-d4ae8563b2e5","_postman_id":"0750d42e-e104-49cf-bac2-d4ae8563b2e5","description":""},{"name":"Update","item":[{"name":"api/v1/ship_groups/{ship_group}","id":"cb19425d-2832-4962-8f49-19a6ed7825d5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"shipping_method","value":null,"description":"<p>(Optional), The shipping method field must be a string., The shipping method field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"release_date","value":null,"description":"<p>(Optional), (Nullable), The release date field must be a valid date.</p>\n","type":"text"},{"key":"receive_date","value":null,"description":"<p>(Optional), (Nullable), The receive date field must be a valid date., The receive date field must be a date after or equal to release date.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>The to location id field is required., The to location id field must be an integer.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"expected_release_date","value":null,"description":"<p>(Optional), (Nullable), The expected release date field must be a valid date.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>(Optional), (Nullable), The expected receive date field must be a valid date.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"shipment_tag_number","value":null,"description":"<p>(Optional), (Nullable), The shipment tag number field must be a string., The shipment tag number field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"transport_id","value":null,"description":"<p>(Optional), (Nullable), The transport id field must be a string., The transport id field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"waybill_number","value":null,"description":"<p>(Optional), (Nullable), The waybill number field must be a string., The waybill number field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expected_customs_clearance_date","value":null,"description":"<p>(Optional), (Nullable), The expected customs clearance date field must be a valid date.</p>\n","type":"text"},{"key":"actual_customs_clearance_date","value":null,"description":"<p>(Optional), (Nullable), The actual customs clearance date field must be a valid date.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups/:ship_group","description":"<p>Update the specified <code>ShipGroup</code> .</p>\n","urlObject":{"path":["api","v1","ship_groups",":ship_group"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_group"}]}},"response":[],"_postman_id":"cb19425d-2832-4962-8f49-19a6ed7825d5"},{"name":"api/v1/ship_groups/{ship_group}","id":"44fa05eb-8c90-4789-9eba-a6a477be78cf","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"shipping_method","value":null,"description":"<p>(Optional), The shipping method field must be a string., The shipping method field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"release_date","value":null,"description":"<p>(Optional), (Nullable), The release date field must be a valid date.</p>\n","type":"text"},{"key":"receive_date","value":null,"description":"<p>(Optional), (Nullable), The receive date field must be a valid date., The receive date field must be a date after or equal to release date.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>The to location id field is required., The to location id field must be an integer.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"expected_release_date","value":null,"description":"<p>(Optional), (Nullable), The expected release date field must be a valid date.</p>\n","type":"text"},{"key":"expected_receive_date","value":null,"description":"<p>(Optional), (Nullable), The expected receive date field must be a valid date.</p>\n","type":"text"},{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"shipment_tag_number","value":null,"description":"<p>(Optional), (Nullable), The shipment tag number field must be a string., The shipment tag number field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"transport_id","value":null,"description":"<p>(Optional), (Nullable), The transport id field must be a string., The transport id field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"waybill_number","value":null,"description":"<p>(Optional), (Nullable), The waybill number field must be a string., The waybill number field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"expected_customs_clearance_date","value":null,"description":"<p>(Optional), (Nullable), The expected customs clearance date field must be a valid date.</p>\n","type":"text"},{"key":"actual_customs_clearance_date","value":null,"description":"<p>(Optional), (Nullable), The actual customs clearance date field must be a valid date.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups/:ship_group","description":"<p>Update the specified <code>ShipGroup</code> .</p>\n","urlObject":{"path":["api","v1","ship_groups",":ship_group"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_group"}]}},"response":[],"_postman_id":"44fa05eb-8c90-4789-9eba-a6a477be78cf"}],"id":"975ca1b2-7973-4ecc-b57a-6ef2dd3180b8","_postman_id":"975ca1b2-7973-4ecc-b57a-6ef2dd3180b8","description":""},{"name":"Api/V1/Ship Groups/{Shipgroupid}/Childrenandparentattachables","id":"c18b15ec-bc36-45b6-b1be-e42f79e58567","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups/:shipGroupId/childrenandparentattachables","urlObject":{"path":["api","v1","ship_groups",":shipGroupId","childrenandparentattachables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"shipGroupId"}]}},"response":[],"_postman_id":"c18b15ec-bc36-45b6-b1be-e42f79e58567"}],"id":"77776379-c0ba-4802-8a43-cd7aa45d5a23","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> actual_customs_clearance_date</code>,<code> comment</code>,<code> expected_customs_clearance_date</code>,<code> expected_receive_date</code>,<code> expected_release_date</code>,<code> from_location_id</code>,<code> metadata</code>,<code> receive_date</code>,<code> release_date</code>,<code> shipment_tag_number</code>,<code> shipping_method</code>,<code> status</code>,<code> to_location_id</code>,<code> transport_id</code>,<code> waybill_number</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>allocationsWithOrderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>fromLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toLocation</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"77776379-c0ba-4802-8a43-cd7aa45d5a23"},{"name":"Ship Groups Template Items","item":[{"name":"Destroy","item":[{"name":"api/v1/ship_groups_template_items/{ship_groups_template_item}","id":"1394bd41-32ca-47d0-b725-a4e6db31bd2d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups_template_items/:ship_groups_template_item","description":"<p>Remove the specified <code>ShipGroupsTemplateItem</code> from storage.</p>\n","urlObject":{"path":["api","v1","ship_groups_template_items",":ship_groups_template_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_groups_template_item"}]}},"response":[],"_postman_id":"1394bd41-32ca-47d0-b725-a4e6db31bd2d"}],"id":"06e94bbd-56be-421d-ad66-272a132a0c5d","_postman_id":"06e94bbd-56be-421d-ad66-272a132a0c5d","description":""},{"name":"Index","item":[{"name":"api/v1/ship_groups_template_items","id":"72f036af-3d6a-497a-b1a6-58e4716d38a4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups_template_items","description":"<p>Returns a list of multiple <code>ShipGroupsTemplateItem</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","ship_groups_template_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"72f036af-3d6a-497a-b1a6-58e4716d38a4"}],"id":"52550e7c-8602-4677-8636-db7d271145bc","_postman_id":"52550e7c-8602-4677-8636-db7d271145bc","description":""},{"name":"Show","item":[{"name":"api/v1/ship_groups_template_items/{ship_groups_template_item}","id":"9b70aafe-37cb-46f9-8df9-286f0658ebcf","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups_template_items/:ship_groups_template_item","description":"<p>Display the specified <code>ShipGroupsTemplateItem</code>.</p>\n","urlObject":{"path":["api","v1","ship_groups_template_items",":ship_groups_template_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_groups_template_item"}]}},"response":[],"_postman_id":"9b70aafe-37cb-46f9-8df9-286f0658ebcf"}],"id":"f3dc3e81-6503-4c99-83f7-c92d035b5721","_postman_id":"f3dc3e81-6503-4c99-83f7-c92d035b5721","description":""},{"name":"Store","item":[{"name":"api/v1/ship_groups_template_items","id":"9b7b2633-91be-4477-be47-5694b305d7bd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_groups_template_id","value":null,"description":"<p>The ship groups template id field is required., The ship groups template id field must be an integer.</p>\n","type":"text"},{"key":"sequence","value":null,"description":"<p>The sequence field is required., The sequence field must be an integer.</p>\n","type":"text"},{"key":"shipping_method","value":null,"description":"<p>The shipping method field is required., The shipping method field must be a string., The shipping method field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>The to location id field is required., The to location id field must be an integer.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"lead_time","value":null,"description":"<p>The lead time field is required., The lead time field must be an integer.</p>\n","type":"text"},{"key":"holding_time","value":null,"description":"<p>The holding time field is required., The holding time field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups_template_items","description":"<p>Create a new <code>ShipGroupsTemplateItem</code> object.</p>\n","urlObject":{"path":["api","v1","ship_groups_template_items"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b7b2633-91be-4477-be47-5694b305d7bd"}],"id":"637e77a7-67c4-4603-8383-2fa688e0c107","_postman_id":"637e77a7-67c4-4603-8383-2fa688e0c107","description":""},{"name":"Update","item":[{"name":"api/v1/ship_groups_template_items/{ship_groups_template_item}","id":"71256163-9563-4414-b04e-9caa42137eea","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_groups_template_id","value":null,"description":"<p>The ship groups template id field is required., The ship groups template id field must be an integer.</p>\n","type":"text"},{"key":"sequence","value":null,"description":"<p>The sequence field is required., The sequence field must be an integer.</p>\n","type":"text"},{"key":"shipping_method","value":null,"description":"<p>The shipping method field is required., The shipping method field must be a string., The shipping method field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>The to location id field is required., The to location id field must be an integer.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"lead_time","value":null,"description":"<p>The lead time field is required., The lead time field must be an integer.</p>\n","type":"text"},{"key":"holding_time","value":null,"description":"<p>(Optional), The holding time field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups_template_items/:ship_groups_template_item","description":"<p>Update the specified <code>ShipGroupsTemplateItem</code> .</p>\n","urlObject":{"path":["api","v1","ship_groups_template_items",":ship_groups_template_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_groups_template_item"}]}},"response":[],"_postman_id":"71256163-9563-4414-b04e-9caa42137eea"},{"name":"api/v1/ship_groups_template_items/{ship_groups_template_item}","id":"67791c59-2cc8-40c1-acb6-cdc89bd12bb9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_groups_template_id","value":null,"description":"<p>The ship groups template id field is required., The ship groups template id field must be an integer.</p>\n","type":"text"},{"key":"sequence","value":null,"description":"<p>The sequence field is required., The sequence field must be an integer.</p>\n","type":"text"},{"key":"shipping_method","value":null,"description":"<p>The shipping method field is required., The shipping method field must be a string., The shipping method field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"to_location_id","value":null,"description":"<p>The to location id field is required., The to location id field must be an integer.</p>\n","type":"text"},{"key":"from_location_id","value":null,"description":"<p>The from location id field is required., The from location id field must be an integer.</p>\n","type":"text"},{"key":"lead_time","value":null,"description":"<p>The lead time field is required., The lead time field must be an integer.</p>\n","type":"text"},{"key":"holding_time","value":null,"description":"<p>(Optional), The holding time field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups_template_items/:ship_groups_template_item","description":"<p>Update the specified <code>ShipGroupsTemplateItem</code> .</p>\n","urlObject":{"path":["api","v1","ship_groups_template_items",":ship_groups_template_item"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_groups_template_item"}]}},"response":[],"_postman_id":"67791c59-2cc8-40c1-acb6-cdc89bd12bb9"}],"id":"367dd85c-5804-420d-a6f1-60a0d40e509a","_postman_id":"367dd85c-5804-420d-a6f1-60a0d40e509a","description":""}],"id":"5a722714-984f-4929-ba15-8525ca7d4c15","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> from_location_id</code>,<code> holding_time</code>,<code> lead_time</code>,<code> sequence</code>,<code> ship_groups_template_id</code>,<code> shipping_method</code>,<code> to_location_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fromLocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>shipGroupsTemplate</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toLocation</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5a722714-984f-4929-ba15-8525ca7d4c15"},{"name":"Ship Groups Templates","item":[{"name":"Destroy","item":[{"name":"api/v1/ship_groups_templates/{ship_groups_template}","id":"d6ab731e-0f59-453a-b5fc-8d574eec8f78","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups_templates/:ship_groups_template","description":"<p>Remove the specified <code>ShipGroupsTemplate</code> from storage.</p>\n","urlObject":{"path":["api","v1","ship_groups_templates",":ship_groups_template"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_groups_template"}]}},"response":[],"_postman_id":"d6ab731e-0f59-453a-b5fc-8d574eec8f78"}],"id":"6bcbb214-41c7-40c3-a326-fe43e9ca52af","_postman_id":"6bcbb214-41c7-40c3-a326-fe43e9ca52af","description":""},{"name":"Index","item":[{"name":"api/v1/ship_groups_templates","id":"d5f23c82-7415-481f-b327-6a0021579529","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups_templates","description":"<p>Returns a list of multiple <code>ShipGroupTemplate</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","ship_groups_templates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5f23c82-7415-481f-b327-6a0021579529"}],"id":"66ab1820-eb4d-494a-9cb1-bccc7f396e5c","_postman_id":"66ab1820-eb4d-494a-9cb1-bccc7f396e5c","description":""},{"name":"Show","item":[{"name":"api/v1/ship_groups_templates/{ship_groups_template}","id":"ea58df3c-c099-4580-b3e7-3fed39eb626f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/ship_groups_templates/:ship_groups_template","description":"<p>Display the specified <code>ShipGroupsTemplate</code>.</p>\n","urlObject":{"path":["api","v1","ship_groups_templates",":ship_groups_template"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_groups_template"}]}},"response":[],"_postman_id":"ea58df3c-c099-4580-b3e7-3fed39eb626f"}],"id":"e567a11e-dcba-4147-b277-c40b36de14dd","_postman_id":"e567a11e-dcba-4147-b277-c40b36de14dd","description":""},{"name":"Store","item":[{"name":"api/v1/ship_groups_templates","id":"37c87131-b529-491f-9adf-2b65b817b34a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups_templates","description":"<p>Create a new <code>ShipGroupsTemplate</code> object.</p>\n","urlObject":{"path":["api","v1","ship_groups_templates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"37c87131-b529-491f-9adf-2b65b817b34a"}],"id":"9b099b21-24ac-48ec-9e8d-6153727c8ed8","_postman_id":"9b099b21-24ac-48ec-9e8d-6153727c8ed8","description":""},{"name":"Update","item":[{"name":"api/v1/ship_groups_templates/{ship_groups_template}","id":"fbabfb85-8452-4a5b-b56b-a5121fecb35c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups_templates/:ship_groups_template","description":"<p>Update the specified <code>ShipGroupsTemplate</code> .</p>\n","urlObject":{"path":["api","v1","ship_groups_templates",":ship_groups_template"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_groups_template"}]}},"response":[],"_postman_id":"fbabfb85-8452-4a5b-b56b-a5121fecb35c"},{"name":"api/v1/ship_groups_templates/{ship_groups_template}","id":"8c4c47bb-4f66-4804-98f3-9f6fe3d8e3d1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/ship_groups_templates/:ship_groups_template","description":"<p>Update the specified <code>ShipGroupsTemplate</code> .</p>\n","urlObject":{"path":["api","v1","ship_groups_templates",":ship_groups_template"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"ship_groups_template"}]}},"response":[],"_postman_id":"8c4c47bb-4f66-4804-98f3-9f6fe3d8e3d1"}],"id":"09b08f08-a8d6-4e16-9a7b-fc36f0bfdfb5","_postman_id":"09b08f08-a8d6-4e16-9a7b-fc36f0bfdfb5","description":""}],"id":"ee5057b5-aadc-49bd-bc09-7df83a78f07a","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> description</code>,<code> name</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>shipGroupsTemplateItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ee5057b5-aadc-49bd-bc09-7df83a78f07a"},{"name":"Shipping Allocations","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_shipping_allocations","id":"eae75d26-85f7-4337-b3df-3d4ee619fe23","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"shipping_allocations","value":null,"description":"<p>The shipping allocations field is required., The shipping allocations field must be an array.</p>\n","type":"text"},{"key":"shipping_allocations.*","value":null,"description":"<p>The shipping allocations.* field must be an integer., The shipping allocations.* field must be at least 0 characters., The shipping allocations.* field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_shipping_allocations","description":"<p>Destroy multiple <code>ShippingAllocation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_shipping_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"eae75d26-85f7-4337-b3df-3d4ee619fe23"}],"id":"a007af10-e243-4ea4-a370-f72cd9053042","_postman_id":"a007af10-e243-4ea4-a370-f72cd9053042","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_shipping_allocations","id":"d1ab3f51-c28f-4fac-b309-daace1134ee7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.ship_group_id","value":null,"description":"<p>(Nullable), The data.*.ship group id field must be an integer.</p>\n","type":"text"},{"key":"data.*.allocation_id","value":null,"description":"<p>(Nullable), The data.*.allocation id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity_released","value":null,"description":"<p>(Optional), The data.<em>.quantity released field must be a number., The data.</em>.quantity released field must be at least 0 characters., The data.*.quantity released field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.quantity_received","value":null,"description":"<p>(Optional), The data.<em>.quantity received field must be a number., The data.</em>.quantity received field must be at least 0 characters., The data.*.quantity received field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_shipping_allocations","description":"<p>Create multiple <code>ShippingAllocation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_shipping_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d1ab3f51-c28f-4fac-b309-daace1134ee7"}],"id":"314bf9fe-3e6d-40ad-b02d-f0c17bf2164a","_postman_id":"314bf9fe-3e6d-40ad-b02d-f0c17bf2164a","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_shipping_allocations","id":"2e62852f-e437-4991-ab70-43dbb0cc5551","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.ship_group_id","value":null,"description":"<p>(Nullable), The data.*.ship group id field must be an integer.</p>\n","type":"text"},{"key":"data.*.allocation_id","value":null,"description":"<p>(Nullable), The data.*.allocation id field must be an integer.</p>\n","type":"text"},{"key":"data.*.quantity_released","value":null,"description":"<p>(Optional), The data.<em>.quantity released field must be a number., The data.</em>.quantity released field must be at least 0 characters., The data.*.quantity released field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.quantity_received","value":null,"description":"<p>(Optional), The data.<em>.quantity received field must be a number., The data.</em>.quantity received field must be at least 0 characters., The data.*.quantity received field must not be greater than 999999999.999 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_shipping_allocations","description":"<p>Update multiple <code>ShippingAllocation</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_shipping_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e62852f-e437-4991-ab70-43dbb0cc5551"}],"id":"3b25daf0-2ce1-49b4-b905-26351a348baf","_postman_id":"3b25daf0-2ce1-49b4-b905-26351a348baf","description":""},{"name":"Delete","item":[{"name":"api/v1/shipping_allocations","id":"17c37392-482b-4fb0-bb94-b43e7f737e38","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_group_id","value":null,"description":"<p>The ship group id field is required., The ship group id field must be an integer., The ship group id field must be at least 0., The ship group id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"allocation_id","value":null,"description":"<p>The allocation id field is required., The allocation id field must be an integer., The allocation id field must be at least 0., The allocation id field must not be greater than 4294967295.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/shipping_allocations","description":"<p>Remove the specified <code>ShippingAllocation</code> from storage.</p>\n","urlObject":{"path":["api","v1","shipping_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"17c37392-482b-4fb0-bb94-b43e7f737e38"}],"id":"afcfc7b0-341b-459a-9400-edc7ed228d13","_postman_id":"afcfc7b0-341b-459a-9400-edc7ed228d13","description":""},{"name":"Destroy","item":[{"name":"api/v1/shipping_allocations/{shipping_allocation}","id":"10229f42-3e79-4778-a225-a39e29d5ac0f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_group_id","value":null,"description":"<p>The ship group id field is required., The ship group id field must be an integer., The ship group id field must be at least 0., The ship group id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"allocation_id","value":null,"description":"<p>The allocation id field is required., The allocation id field must be an integer., The allocation id field must be at least 0., The allocation id field must not be greater than 4294967295.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/shipping_allocations/:shipping_allocation","description":"<p>Remove the specified <code>ShippingAllocation</code> from storage.</p>\n","urlObject":{"path":["api","v1","shipping_allocations",":shipping_allocation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"shipping_allocation"}]}},"response":[],"_postman_id":"10229f42-3e79-4778-a225-a39e29d5ac0f"}],"id":"bbd4d1d4-4c78-4a19-a668-eadbdb93c3ee","_postman_id":"bbd4d1d4-4c78-4a19-a668-eadbdb93c3ee","description":""},{"name":"Index","item":[{"name":"api/v1/shipping_allocations","id":"ceacd713-7595-4a9b-af78-c61761b30b29","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/shipping_allocations","description":"<p>Returns a list of multiple <code>ShippingAllocations</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","shipping_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ceacd713-7595-4a9b-af78-c61761b30b29"}],"id":"ed5ce5fe-4909-4445-8b45-563e3ca6dfe0","_postman_id":"ed5ce5fe-4909-4445-8b45-563e3ca6dfe0","description":""},{"name":"Show","item":[{"name":"api/v1/shipping_allocations/{shipping_allocation}","id":"34f53289-1287-4ab8-96c1-4ef1f06c8156","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/shipping_allocations/:shipping_allocation","description":"<p>Display the specified <code>ShippingAllocation</code>.</p>\n","urlObject":{"path":["api","v1","shipping_allocations",":shipping_allocation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"shipping_allocation"}]}},"response":[],"_postman_id":"34f53289-1287-4ab8-96c1-4ef1f06c8156"}],"id":"f9289f16-44ee-4973-8b08-ece18bb5d727","_postman_id":"f9289f16-44ee-4973-8b08-ece18bb5d727","description":""},{"name":"Store","item":[{"name":"api/v1/shipping_allocations","id":"1aa42010-26b4-4b46-87ea-069b81ead97a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_group_id","value":null,"description":"<p>(Nullable), The ship group id field must be an integer.</p>\n","type":"text"},{"key":"allocation_id","value":null,"description":"<p>(Nullable), The allocation id field must be an integer.</p>\n","type":"text"},{"key":"quantity_released","value":null,"description":"<p>(Optional), The quantity released field must be a number., The quantity released field must be at least 0., The quantity released field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_received","value":null,"description":"<p>(Optional), The quantity received field must be a number., The quantity received field must be at least 0., The quantity received field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/shipping_allocations","description":"<p>Create a new <code>ShippingAllocation</code> object.</p>\n","urlObject":{"path":["api","v1","shipping_allocations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1aa42010-26b4-4b46-87ea-069b81ead97a"}],"id":"2f98d2a7-6f50-4913-9437-a0cd67c43413","_postman_id":"2f98d2a7-6f50-4913-9437-a0cd67c43413","description":""},{"name":"Update","item":[{"name":"api/v1/shipping_allocations/{shipping_allocation}","id":"eb576658-1437-479a-a286-3aff1fd4fc8b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_group_id","value":null,"description":"<p>(Nullable), The ship group id field must be an integer.</p>\n","type":"text"},{"key":"allocation_id","value":null,"description":"<p>(Nullable), The allocation id field must be an integer.</p>\n","type":"text"},{"key":"quantity_released","value":null,"description":"<p>(Optional), The quantity released field must be a number., The quantity released field must be at least 0., The quantity released field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_received","value":null,"description":"<p>(Optional), The quantity received field must be a number., The quantity received field must be at least 0., The quantity received field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/shipping_allocations/:shipping_allocation","description":"<p>Update the specified <code>ShippingAllocation</code> .</p>\n","urlObject":{"path":["api","v1","shipping_allocations",":shipping_allocation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"shipping_allocation"}]}},"response":[],"_postman_id":"eb576658-1437-479a-a286-3aff1fd4fc8b"},{"name":"api/v1/shipping_allocations/{shipping_allocation}","id":"3c88c6de-b0e4-4b8e-89df-4b60d2a286cf","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"ship_group_id","value":null,"description":"<p>(Nullable), The ship group id field must be an integer.</p>\n","type":"text"},{"key":"allocation_id","value":null,"description":"<p>(Nullable), The allocation id field must be an integer.</p>\n","type":"text"},{"key":"quantity_released","value":null,"description":"<p>(Optional), The quantity released field must be a number., The quantity released field must be at least 0., The quantity released field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"quantity_received","value":null,"description":"<p>(Optional), The quantity received field must be a number., The quantity received field must be at least 0., The quantity received field must not be greater than 999999999.999.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/shipping_allocations/:shipping_allocation","description":"<p>Update the specified <code>ShippingAllocation</code> .</p>\n","urlObject":{"path":["api","v1","shipping_allocations",":shipping_allocation"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"shipping_allocation"}]}},"response":[],"_postman_id":"3c88c6de-b0e4-4b8e-89df-4b60d2a286cf"}],"id":"c8cde9e3-f0ad-4f9b-bd28-d62f5d9faa43","_postman_id":"c8cde9e3-f0ad-4f9b-bd28-d62f5d9faa43","description":""}],"id":"3401f21e-958a-451e-80aa-06181d08e046","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> allocation_id</code>,<code> metadata</code>,<code> quantity_received</code>,<code> quantity_released</code>,<code> ship_group_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>allocation</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>shipGroup</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3401f21e-958a-451e-80aa-06181d08e046"},{"name":"Smart Dates","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_smart_dates","id":"70340d22-e530-4e65-b859-68a37a500cf6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_smart_dates","urlObject":{"path":["api","v1","bulk_smart_dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"70340d22-e530-4e65-b859-68a37a500cf6"}],"id":"af5f6a2e-d75a-4899-bcfa-6b7591a6d4b9","_postman_id":"af5f6a2e-d75a-4899-bcfa-6b7591a6d4b9","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_smart_dates","id":"f620ad95-385b-4551-8e89-d73cec78f206","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.actual_date","value":null,"description":"<p>(Nullable), The data.*.actual date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.current_date","value":null,"description":"<p>(Nullable), The data.*.current date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.datable_id","value":null,"description":"<p>The data.<em>.datable id field is required., The data.</em>.datable id field must be an integer., The data.<em>.datable id field must be at least 0 characters., The data.</em>.datable id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.datable_type","value":null,"description":"<p>The data.<em>.datable type field is required., The data.</em>.datable type field must be a string.</p>\n","type":"text"},{"key":"data.*.date_name","value":null,"description":"<p>The data.<em>.date name field is required., The data.</em>.date name field must be a string., The data.*.date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.date_type_slug","value":null,"description":"<p>The data.<em>.date type slug field is required., The data.</em>.date type slug field must be a string., The data.<em>.date type slug field must be at least 2 characters., The data.</em>.date type slug field must not be greater than 30 characters., The selected data.*.date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"data.*.is_skipped","value":null,"description":"<p>The data.<em>.is skipped field is required., The data.</em>.is skipped field must be true or false.</p>\n","type":"text"},{"key":"data.*.original_date","value":null,"description":"<p>(Nullable), The data.*.original date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.<em>.project id field is required., The data.</em>.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.position","value":null,"description":"<p>The data.<em>.position field is required., The data.</em>.position field must be an integer., The data.*.position field must be at least 1 characters.</p>\n","type":"text"},{"key":"data.*.is_cascading","value":null,"description":"<p>(Optional), The data.*.is cascading field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_smart_dates","urlObject":{"path":["api","v1","bulk_smart_dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f620ad95-385b-4551-8e89-d73cec78f206"}],"id":"ce1c76e9-bdfe-49c2-adee-96afacbd0f08","_postman_id":"ce1c76e9-bdfe-49c2-adee-96afacbd0f08","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_smart_dates","id":"d84eef53-ed6f-488e-afd8-356feda3e8c7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.actual_date","value":null,"description":"<p>(Nullable), The data.*.actual date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.current_date","value":null,"description":"<p>(Nullable), The data.*.current date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.datable_id","value":null,"description":"<p>(Optional), The data.<em>.datable id field must be an integer., The data.</em>.datable id field must be at least 0 characters., The data.*.datable id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"data.*.datable_type","value":null,"description":"<p>(Optional), The data.*.datable type field must be a string.</p>\n","type":"text"},{"key":"data.*.date_name","value":null,"description":"<p>(Optional), The data.<em>.date name field must be a string., The data.</em>.date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"data.*.date_type_slug","value":null,"description":"<p>(Optional), The data.<em>.date type slug field must be a string., The data.</em>.date type slug field must be at least 2 characters., The data.<em>.date type slug field must not be greater than 30 characters., The selected data.</em>.date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"data.*.is_skipped","value":null,"description":"<p>The data.*.is skipped field must be true or false.</p>\n","type":"text"},{"key":"data.*.original_date","value":null,"description":"<p>(Nullable), The data.*.original date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.project_id","value":null,"description":"<p>The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.position","value":null,"description":"<p>(Optional), The data.<em>.position field must be an integer., The data.</em>.position field must be at least 1 characters.</p>\n","type":"text"},{"key":"data.*.is_cascading","value":null,"description":"<p>(Optional), The data.*.is cascading field must be true or false.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_smart_dates","urlObject":{"path":["api","v1","bulk_smart_dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d84eef53-ed6f-488e-afd8-356feda3e8c7"}],"id":"a7dca8e3-8a8d-410e-b4f6-ca37cb82a7e8","_postman_id":"a7dca8e3-8a8d-410e-b4f6-ca37cb82a7e8","description":""},{"name":"Destroy","item":[{"name":"api/v1/smart_dates/{smart_date}","id":"35cf647d-c0c3-4c3d-9295-68afeb6b8e4e","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/smart_dates/:smart_date","urlObject":{"path":["api","v1","smart_dates",":smart_date"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"smart_date"}]}},"response":[],"_postman_id":"35cf647d-c0c3-4c3d-9295-68afeb6b8e4e"}],"id":"767ffcff-a12b-4b27-b16e-fe6b8832066a","_postman_id":"767ffcff-a12b-4b27-b16e-fe6b8832066a","description":""},{"name":"Index","item":[{"name":"api/v1/smart_dates","id":"6331ed76-a2c0-4114-8563-0b853f46f61c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/smart_dates","urlObject":{"path":["api","v1","smart_dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6331ed76-a2c0-4114-8563-0b853f46f61c"}],"id":"c35f7afa-0695-4905-909c-6e6b8cf0d96b","_postman_id":"c35f7afa-0695-4905-909c-6e6b8cf0d96b","description":""},{"name":"Show","item":[{"name":"api/v1/smart_dates/{smart_date}","id":"9a7cb873-012c-4f8a-80e7-b7686c1b6e17","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/smart_dates/:smart_date","urlObject":{"path":["api","v1","smart_dates",":smart_date"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"smart_date"}]}},"response":[],"_postman_id":"9a7cb873-012c-4f8a-80e7-b7686c1b6e17"}],"id":"d72c149e-ba9e-4977-a6aa-ed067185bcd4","_postman_id":"d72c149e-ba9e-4977-a6aa-ed067185bcd4","description":""},{"name":"Store","item":[{"name":"api/v1/smart_dates","id":"c95a50d7-e748-4102-a0b2-7423903a23e0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"actual_date","value":null,"description":"<p>(Nullable), The actual date field must be a valid date.</p>\n","type":"text"},{"key":"current_date","value":null,"description":"<p>(Nullable), The current date field must be a valid date.</p>\n","type":"text"},{"key":"datable_id","value":null,"description":"<p>The datable id field is required., The datable id field must be an integer., The datable id field must be at least 0., The datable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"datable_type","value":null,"description":"<p>The datable type field is required., The datable type field must be a string.</p>\n","type":"text"},{"key":"date_name","value":null,"description":"<p>The date name field is required., The date name field must be a string., The date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"date_type_slug","value":null,"description":"<p>The date type slug field is required., The date type slug field must be a string., The date type slug field must be at least 2 characters., The date type slug field must not be greater than 30 characters., The selected date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"is_skipped","value":null,"description":"<p>The is skipped field is required., The is skipped field must be true or false.</p>\n","type":"text"},{"key":"original_date","value":null,"description":"<p>(Nullable), The original date field must be a valid date.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"position","value":null,"description":"<p>The position field is required., The position field must be an integer., The position field must be at least 1.</p>\n","type":"text"},{"key":"is_cascading","value":null,"description":"<p>(Optional), The is cascading field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/smart_dates","urlObject":{"path":["api","v1","smart_dates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c95a50d7-e748-4102-a0b2-7423903a23e0"}],"id":"6353e5eb-8684-4a35-b78b-8e149005ec70","_postman_id":"6353e5eb-8684-4a35-b78b-8e149005ec70","description":""},{"name":"Update","item":[{"name":"api/v1/smart_dates/{smart_date}","id":"71f3e013-8a48-4d7f-bfd5-2ca736bdadf1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"actual_date","value":null,"description":"<p>(Nullable), The actual date field must be a valid date.</p>\n","type":"text"},{"key":"current_date","value":null,"description":"<p>(Nullable), The current date field must be a valid date.</p>\n","type":"text"},{"key":"datable_id","value":null,"description":"<p>(Optional), The datable id field must be an integer., The datable id field must be at least 0., The datable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"datable_type","value":null,"description":"<p>(Optional), The datable type field must be a string.</p>\n","type":"text"},{"key":"date_name","value":null,"description":"<p>(Optional), The date name field must be a string., The date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"date_type_slug","value":null,"description":"<p>(Optional), The date type slug field must be a string., The date type slug field must be at least 2 characters., The date type slug field must not be greater than 30 characters., The selected date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"is_skipped","value":null,"description":"<p>The is skipped field must be true or false.</p>\n","type":"text"},{"key":"original_date","value":null,"description":"<p>(Nullable), The original date field must be a valid date.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"position","value":null,"description":"<p>(Optional), The position field must be an integer., The position field must be at least 1.</p>\n","type":"text"},{"key":"is_cascading","value":null,"description":"<p>(Optional), The is cascading field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/smart_dates/:smart_date","urlObject":{"path":["api","v1","smart_dates",":smart_date"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"smart_date"}]}},"response":[],"_postman_id":"71f3e013-8a48-4d7f-bfd5-2ca736bdadf1"},{"name":"api/v1/smart_dates/{smart_date}","id":"93b062d9-c0dd-4ef4-9093-db2082e4dc35","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"actual_date","value":null,"description":"<p>(Nullable), The actual date field must be a valid date.</p>\n","type":"text"},{"key":"current_date","value":null,"description":"<p>(Nullable), The current date field must be a valid date.</p>\n","type":"text"},{"key":"datable_id","value":null,"description":"<p>(Optional), The datable id field must be an integer., The datable id field must be at least 0., The datable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"datable_type","value":null,"description":"<p>(Optional), The datable type field must be a string.</p>\n","type":"text"},{"key":"date_name","value":null,"description":"<p>(Optional), The date name field must be a string., The date name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"date_type_slug","value":null,"description":"<p>(Optional), The date type slug field must be a string., The date type slug field must be at least 2 characters., The date type slug field must not be greater than 30 characters., The selected date type slug must be known to the application, the provided value is invalid</p>\n","type":"text"},{"key":"is_skipped","value":null,"description":"<p>The is skipped field must be true or false.</p>\n","type":"text"},{"key":"original_date","value":null,"description":"<p>(Nullable), The original date field must be a valid date.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"position","value":null,"description":"<p>(Optional), The position field must be an integer., The position field must be at least 1.</p>\n","type":"text"},{"key":"is_cascading","value":null,"description":"<p>(Optional), The is cascading field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/smart_dates/:smart_date","urlObject":{"path":["api","v1","smart_dates",":smart_date"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"smart_date"}]}},"response":[],"_postman_id":"93b062d9-c0dd-4ef4-9093-db2082e4dc35"}],"id":"2d0ea0be-84fd-40b7-b981-ce01f5483e17","_postman_id":"2d0ea0be-84fd-40b7-b981-ce01f5483e17","description":""}],"id":"ec77eed8-5f48-403c-814b-695af0dd1816","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> actual_date</code>,<code> current_date</code>,<code> datable_id</code>,<code> datable_type</code>,<code> date_name</code>,<code> date_type_slug</code>,<code> id</code>,<code> is_cascading</code>,<code> is_skipped</code>,<code> original_date</code>,<code> position</code>,<code> project_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>datable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>dateType</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>effective_date</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ec77eed8-5f48-403c-814b-695af0dd1816"},{"name":"Spec Standard Projects","item":[{"name":"Destroy","item":[{"name":"api/v1/spec_standard_projects/{spec_standard_project}","id":"d7e4c508-7fe6-4d32-9739-bd53deee10b9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/spec_standard_projects/:spec_standard_project","description":"<p>Remove the specified <code>SpecStandardProject</code> from storage.</p>\n","urlObject":{"path":["api","v1","spec_standard_projects",":spec_standard_project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"spec_standard_project"}]}},"response":[],"_postman_id":"d7e4c508-7fe6-4d32-9739-bd53deee10b9"}],"id":"00f35b0b-0a6f-44d7-8210-ea66be37ea9e","_postman_id":"00f35b0b-0a6f-44d7-8210-ea66be37ea9e","description":""},{"name":"Index","item":[{"name":"api/v1/spec_standard_projects","id":"0e88cd2f-4ee2-4037-9a12-6f989d44f50c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/spec_standard_projects","description":"<p>Returns a list of multiple <code>SpecStandardProject</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","spec_standard_projects"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e88cd2f-4ee2-4037-9a12-6f989d44f50c"}],"id":"818a884d-68a8-44b4-a1ed-8e3cfb6d0a25","_postman_id":"818a884d-68a8-44b4-a1ed-8e3cfb6d0a25","description":""},{"name":"Show","item":[{"name":"api/v1/spec_standard_projects/{spec_standard_project}","id":"d367ed5a-c0ed-4e9f-94c8-35d62f7f0dfc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/spec_standard_projects/:spec_standard_project","description":"<p>Display the specified <code>SpecStandardProject</code>.</p>\n","urlObject":{"path":["api","v1","spec_standard_projects",":spec_standard_project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"spec_standard_project"}]}},"response":[],"_postman_id":"d367ed5a-c0ed-4e9f-94c8-35d62f7f0dfc"}],"id":"47f0abbc-3f1f-44bf-9636-0580483570c3","_postman_id":"47f0abbc-3f1f-44bf-9636-0580483570c3","description":""},{"name":"Store","item":[{"name":"api/v1/spec_standard_projects","id":"436ccf11-45c4-48af-81db-820a3a2ab217","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"spec_standard_id","value":null,"description":"<p>The spec standard id field is required., The spec standard id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standard_projects","description":"<p>Create a new <code>SpecStandardProject</code> object.</p>\n","urlObject":{"path":["api","v1","spec_standard_projects"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"436ccf11-45c4-48af-81db-820a3a2ab217"}],"id":"e1e35b89-516e-43b5-9d5f-46ea74502b11","_postman_id":"e1e35b89-516e-43b5-9d5f-46ea74502b11","description":""},{"name":"Update","item":[{"name":"api/v1/spec_standard_projects/{spec_standard_project}","id":"484e3d8c-aa99-49c4-b176-2fff01f7a765","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"spec_standard_id","value":null,"description":"<p>(Optional)</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standard_projects/:spec_standard_project","description":"<p>Update the specified <code>SpecStandardProject</code> .</p>\n","urlObject":{"path":["api","v1","spec_standard_projects",":spec_standard_project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"spec_standard_project"}]}},"response":[],"_postman_id":"484e3d8c-aa99-49c4-b176-2fff01f7a765"},{"name":"api/v1/spec_standard_projects/{spec_standard_project}","id":"1362ebb3-ffb8-41d5-a4c2-61dfde7dc033","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"spec_standard_id","value":null,"description":"<p>(Optional)</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standard_projects/:spec_standard_project","description":"<p>Update the specified <code>SpecStandardProject</code> .</p>\n","urlObject":{"path":["api","v1","spec_standard_projects",":spec_standard_project"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"spec_standard_project"}]}},"response":[],"_postman_id":"1362ebb3-ffb8-41d5-a4c2-61dfde7dc033"}],"id":"66a1a741-7d79-41ae-b50f-495a4e625a1f","_postman_id":"66a1a741-7d79-41ae-b50f-495a4e625a1f","description":""}],"id":"80d2fee0-4197-4d2f-9f9e-a643ac131096","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> project_id</code>,<code> spec_standard_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specStandard</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"80d2fee0-4197-4d2f-9f9e-a643ac131096"},{"name":"Spec Standards","item":[{"name":"Add To Project","item":[{"name":"api/v1/spec_standard_projects/add","id":"6465286f-6df4-46ca-88a9-f006217b68df","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"spec_standard_id","value":null,"description":"<p>The spec standard id field is required., The spec standard id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standard_projects/add","description":"<p>Associate a single <code>SpecStandard</code> with a <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","spec_standard_projects","add"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6465286f-6df4-46ca-88a9-f006217b68df"}],"id":"bfefc91e-aaa6-4805-853e-c8b391fce240","_postman_id":"bfefc91e-aaa6-4805-853e-c8b391fce240","description":""},{"name":"Destroy","item":[{"name":"api/v1/spec_standards/{spec_standard}","id":"1402bd49-6674-4d31-8e43-3f16f63af7d3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/spec_standards/:spec_standard","description":"<p>Remove the specified <code>SpecStandard</code> from storage.</p>\n","urlObject":{"path":["api","v1","spec_standards",":spec_standard"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"spec_standard"}]}},"response":[],"_postman_id":"1402bd49-6674-4d31-8e43-3f16f63af7d3"}],"id":"fa21fe44-b373-4090-825b-a6600bbbb918","_postman_id":"fa21fe44-b373-4090-825b-a6600bbbb918","description":""},{"name":"Index","item":[{"name":"api/v1/spec_standards","id":"979124c8-f05b-4bc3-8538-643505f9e6af","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/spec_standards","description":"<p>Returns a list of multiple <code>SpecStandard</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","spec_standards"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"979124c8-f05b-4bc3-8538-643505f9e6af"}],"id":"af9338a4-7d2a-44b9-b384-b36061023a3b","_postman_id":"af9338a4-7d2a-44b9-b384-b36061023a3b","description":""},{"name":"Remove From Project","item":[{"name":"api/v1/spec_standard_projects/remove","id":"994b93c5-1e0b-42d6-8803-bee37cc0d3e9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"spec_standard_id","value":null,"description":"<p>The spec standard id field is required., The spec standard id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standard_projects/remove","description":"<p>Detach a single <code>SpecStandard</code> from a <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","spec_standard_projects","remove"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"994b93c5-1e0b-42d6-8803-bee37cc0d3e9"}],"id":"7b5b39b5-7b27-46ef-8590-b6283d9fbb50","_postman_id":"7b5b39b5-7b27-46ef-8590-b6283d9fbb50","description":""},{"name":"Show","item":[{"name":"api/v1/spec_standards/{spec_standard}","id":"b36de9b2-5188-4024-a113-6043db7b4404","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/spec_standards/:spec_standard","description":"<p>Display the specified <code>SpecStandard</code>.</p>\n","urlObject":{"path":["api","v1","spec_standards",":spec_standard"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"spec_standard"}]}},"response":[],"_postman_id":"b36de9b2-5188-4024-a113-6043db7b4404"}],"id":"b3aac9fc-d8f6-4cb2-95f6-d9fee5346431","_postman_id":"b3aac9fc-d8f6-4cb2-95f6-d9fee5346431","description":""},{"name":"Store","item":[{"name":"api/v1/spec_standards","id":"3b0d3e8b-1b8e-4173-8a68-d452cc457648","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Nullable), The business id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>The type field is required.</p>\n","type":"text"},{"key":"category","value":null,"description":"<p>The category field is required.</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>The identifier field is required., The identifier field must be a string., The identifier field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>The revision field is required., The revision field must be a string., The revision field must not be greater than 9 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>The title field is required., The title field must be a string., The title field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standards","description":"<p>Create a new <code>SpecStandard</code> object.</p>\n","urlObject":{"path":["api","v1","spec_standards"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b0d3e8b-1b8e-4173-8a68-d452cc457648"}],"id":"dfc41150-4908-432a-bfe7-da3a7c4b6b52","_postman_id":"dfc41150-4908-432a-bfe7-da3a7c4b6b52","description":""},{"name":"Sync Project","item":[{"name":"api/v1/spec_standard_projects/sync","id":"8163a91e-a9bf-44af-a7c8-e8da5e6ee7b2","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"spec_standard_ids","value":null,"description":"<p>(Nullable), The spec standard ids field must be an array.</p>\n","type":"text"},{"key":"spec_standard_ids.*","value":null,"description":"<p>(Optional), The spec standard ids.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The type field must be a string., The selected type is invalid, it must exist in spec, drawing.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standard_projects/sync","description":"<p>Sync multiple <code>SpecStandards</code> with a <code>Project</code>. An empty object will remove all associations.</p>\n","urlObject":{"path":["api","v1","spec_standard_projects","sync"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"8163a91e-a9bf-44af-a7c8-e8da5e6ee7b2"}],"id":"4fe4d4ad-3c29-42f2-a49a-cd648cfcaa9c","_postman_id":"4fe4d4ad-3c29-42f2-a49a-cd648cfcaa9c","description":""},{"name":"Update","item":[{"name":"api/v1/spec_standards/{spec_standard}","id":"b1a5a7a0-be06-4e7f-af7b-39fafea01039","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), (Nullable), The business id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"category","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>(Optional), The identifier field must be a string., The identifier field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>(Optional), The revision field must be a string., The revision field must not be greater than 9 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Optional), The title field must be a string., The title field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standards/:spec_standard","description":"<p>Update the specified <code>SpecStandard</code> .</p>\n","urlObject":{"path":["api","v1","spec_standards",":spec_standard"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"spec_standard"}]}},"response":[],"_postman_id":"b1a5a7a0-be06-4e7f-af7b-39fafea01039"},{"name":"api/v1/spec_standards/{spec_standard}","id":"daaa61ec-f23b-4536-ba3e-274af7b1fec6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"business_id","value":null,"description":"<p>(Optional), (Nullable), The business id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"category","value":null,"description":"<p>(Optional)</p>\n","type":"text"},{"key":"identifier","value":null,"description":"<p>(Optional), The identifier field must be a string., The identifier field must not be greater than 36 characters.</p>\n","type":"text"},{"key":"revision","value":null,"description":"<p>(Optional), The revision field must be a string., The revision field must not be greater than 9 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Optional), The title field must be a string., The title field must not be greater than 150 characters.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/spec_standards/:spec_standard","description":"<p>Update the specified <code>SpecStandard</code> .</p>\n","urlObject":{"path":["api","v1","spec_standards",":spec_standard"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"spec_standard"}]}},"response":[],"_postman_id":"daaa61ec-f23b-4536-ba3e-274af7b1fec6"}],"id":"677fb50d-f541-42c4-92b6-e200812387eb","_postman_id":"677fb50d-f541-42c4-92b6-e200812387eb","description":""}],"id":"5b814e2b-5e82-4c17-b2d7-dfc91235e33c","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_id</code>,<code> category</code>,<code> identifier</code>,<code> is_active</code>,<code> metadata</code>,<code> revision</code>,<code> team_id</code>,<code> title</code>,<code> type</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>openTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>overdueTasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>printableAttachment</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>thisProjects</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fillable_fields</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>guard_reason</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_guarded</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5b814e2b-5e82-4c17-b2d7-dfc91235e33c"},{"name":"Specables","item":[{"name":"Destroy","item":[{"name":"api/v1/specables/{specable}","id":"578f779f-ee31-47a0-9b2d-ee9e54037223","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/specables/:specable","description":"<p>Remove the specified <code>Specable</code> from storage.</p>\n","urlObject":{"path":["api","v1","specables",":specable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"specable"}]}},"response":[],"_postman_id":"578f779f-ee31-47a0-9b2d-ee9e54037223"}],"id":"cafca502-f789-4905-9681-b0805924419a","_postman_id":"cafca502-f789-4905-9681-b0805924419a","description":""},{"name":"Index","item":[{"name":"api/v1/specables","id":"d5de75e6-59d1-4bd2-9c6f-86dd2c56fb67","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/specables","description":"<p>Returns a list of multiple <code>Specable</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","specables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5de75e6-59d1-4bd2-9c6f-86dd2c56fb67"}],"id":"84303091-a05a-4ce8-832c-056cd96694df","_postman_id":"84303091-a05a-4ce8-832c-056cd96694df","description":""},{"name":"Show","item":[{"name":"api/v1/specables/{specable}","id":"3ddaaef3-aa9c-463f-8262-c4acef4cff15","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/specables/:specable","description":"<p>Display the specified <code>Specable</code>.</p>\n","urlObject":{"path":["api","v1","specables",":specable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"specable"}]}},"response":[],"_postman_id":"3ddaaef3-aa9c-463f-8262-c4acef4cff15"}],"id":"464355fd-d1cb-457d-a315-a40ec2fb102c","_postman_id":"464355fd-d1cb-457d-a315-a40ec2fb102c","description":""},{"name":"Store","item":[{"name":"api/v1/specables","id":"a75fb1eb-7608-443f-bf48-d2bfdeda2b04","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"comment.mr_document","value":null,"description":"<p>(Optional), (Nullable), The comment.mr document field must be a string., The comment.mr document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"spec_standard_id","value":null,"description":"<p>The spec standard id field is required., The spec standard id field must be an integer.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>The orderable type field is required., The orderable type field must be a string., The orderable type field must not be greater than 32 characters., The selected orderable type is invalid, it must exist in Bid, Requisition, Order, SalesOrder.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>The orderable id field is required., The orderable id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/specables","description":"<p>Create a new <code>Specable</code> object.</p>\n","urlObject":{"path":["api","v1","specables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a75fb1eb-7608-443f-bf48-d2bfdeda2b04"}],"id":"57676ace-da15-44b1-94bb-e26f7c37bdde","_postman_id":"57676ace-da15-44b1-94bb-e26f7c37bdde","description":""},{"name":"Sync Orderable","item":[{"name":"api/v1/specables/sync_orderable","id":"3c71d401-4265-4c08-9097-ddd2bde4c359","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"orderable_type","value":null,"description":"<p>The orderable type field is required., The orderable type field must be a string., The selected orderable type is invalid, it must exist in Bid, Requisition, Order, SalesOrder.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>The orderable id field is required., The orderable id field must be an integer.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>The type field is required., The selected type is invalid, it must exist in drawing, spec.</p>\n","type":"text"},{"key":"ids","value":null,"description":"<p>The ids field must be an array., (Nullable)</p>\n","type":"text"},{"key":"ids.*","value":null,"description":"<p>(Nullable), The ids.* field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/specables/sync_orderable","description":"<p>Sync a collection of either <code>Standards</code> or <code>Specifications</code> on an <code>Orderable</code>. Empty data packages will remove existing associations.</p>\n","urlObject":{"path":["api","v1","specables","sync_orderable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c71d401-4265-4c08-9097-ddd2bde4c359"}],"id":"23ba211c-a46f-40ec-9215-bdeaab40b6eb","_postman_id":"23ba211c-a46f-40ec-9215-bdeaab40b6eb","description":""},{"name":"Update","item":[{"name":"api/v1/specables/{specable}","id":"38b6cace-2bdc-4666-b894-114d73cdcd45","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"comment.mr_document","value":null,"description":"<p>(Optional), (Nullable), The comment.mr document field must be a string., The comment.mr document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"spec_standard_id","value":null,"description":"<p>(Optional), The spec standard id field must be an integer.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>(Optional), The orderable type field must be a string., The orderable type field must not be greater than 32 characters., The selected orderable type is invalid, it must exist in Bid, Requisition, Order, SalesOrder.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>(Optional), The orderable id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/specables/:specable","description":"<p>Update the specified <code>Specable</code> .</p>\n","urlObject":{"path":["api","v1","specables",":specable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"specable"}]}},"response":[],"_postman_id":"38b6cace-2bdc-4666-b894-114d73cdcd45"},{"name":"api/v1/specables/{specable}","id":"efb19205-bd01-44af-abd8-fc916b2d6890","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Optional), (Nullable), The comment field must be an array.</p>\n","type":"text"},{"key":"comment.internal","value":null,"description":"<p>(Optional), (Nullable), The comment.internal field must be a string., The comment.internal field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"comment.item_notes","value":null,"description":"<p>(Optional), (Nullable), The comment.item notes field must be a string., The comment.item notes field must not be greater than 300 characters.</p>\n","type":"text"},{"key":"comment.mr_document","value":null,"description":"<p>(Optional), (Nullable), The comment.mr document field must be a string., The comment.mr document field must not be greater than 6000 characters.</p>\n","type":"text"},{"key":"spec_standard_id","value":null,"description":"<p>(Optional), The spec standard id field must be an integer.</p>\n","type":"text"},{"key":"orderable_type","value":null,"description":"<p>(Optional), The orderable type field must be a string., The orderable type field must not be greater than 32 characters., The selected orderable type is invalid, it must exist in Bid, Requisition, Order, SalesOrder.</p>\n","type":"text"},{"key":"orderable_id","value":null,"description":"<p>(Optional), The orderable id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/specables/:specable","description":"<p>Update the specified <code>Specable</code> .</p>\n","urlObject":{"path":["api","v1","specables",":specable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"specable"}]}},"response":[],"_postman_id":"efb19205-bd01-44af-abd8-fc916b2d6890"}],"id":"5c3431b9-4852-45e1-926e-b1dab3f94e66","_postman_id":"5c3431b9-4852-45e1-926e-b1dab3f94e66","description":""}],"id":"6c816def-3293-4cd8-bbff-1ec154e2d2aa","description":"<p><code>Specables</code> implement specific <code>SpecStandards</code> on a specified transaction or transaction item (e.g. <code>Requisition</code>, <code>Bid</code> Or <code>Order</code>)</p>\n<p>Remember, it is only possible to link <code>SpecStandards</code> which have been made availble to the <code>Project</code> via <code>SpecStandardProject</code>.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> orderable_id</code>,<code> orderable_type</code>,<code> spec_standard_id</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orderable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>specStandard</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6c816def-3293-4cd8-bbff-1ec154e2d2aa"},{"name":"State Histories","item":[{"name":"Destroy","item":[{"name":"api/v1/state_histories/{state_history}","id":"8a778267-c4a9-48ac-80d2-f57316d18697","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/state_histories/:state_history","description":"<p>Remove the specified <code>StateHistory</code> from storage.</p>\n","urlObject":{"path":["api","v1","state_histories",":state_history"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"state_history"}]}},"response":[],"_postman_id":"8a778267-c4a9-48ac-80d2-f57316d18697"}],"id":"f2ccb014-8401-4d43-9949-52a2c5784d0b","_postman_id":"f2ccb014-8401-4d43-9949-52a2c5784d0b","description":""},{"name":"Index","item":[{"name":"api/v1/state_histories","id":"72973e83-9c7d-4820-add0-7b870c26c260","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/state_histories","description":"<p>Returns a list of multiple <code>StateHistory</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","state_histories"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"72973e83-9c7d-4820-add0-7b870c26c260"}],"id":"7dcaf7b2-2213-4a21-9d68-0cdef7945790","_postman_id":"7dcaf7b2-2213-4a21-9d68-0cdef7945790","description":""},{"name":"Show","item":[{"name":"api/v1/state_histories/{state_history}","id":"cad574ee-1fe8-4dd1-8828-c11c9725d242","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/state_histories/:state_history","description":"<p>Display the specified <code>StateHistory</code>.</p>\n","urlObject":{"path":["api","v1","state_histories",":state_history"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"state_history"}]}},"response":[],"_postman_id":"cad574ee-1fe8-4dd1-8828-c11c9725d242"}],"id":"12c2699a-00f1-412c-b1aa-6486109ffb04","_postman_id":"12c2699a-00f1-412c-b1aa-6486109ffb04","description":""},{"name":"Store","item":[{"name":"api/v1/state_histories","id":"8ebc5f7e-56df-40eb-b733-c75c2b64c85b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be a valid JSON string.</p>\n","type":"text"},{"key":"from","value":null,"description":"<p>(Nullable), The from field must be a string., The from field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"statable_id","value":null,"description":"<p>The statable id field is required., The statable id field must be an integer., The statable id field must be at least 0., The statable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"statable_type","value":null,"description":"<p>The statable type field is required., The statable type field must be a string., The statable type field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"to","value":null,"description":"<p>(Nullable), The to field must be a string., The to field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"transition","value":null,"description":"<p>(Nullable), The transition field must be a string., The transition field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>The user id field is required.</p>\n","type":"text"},{"key":0,"value":null,"description":"<p>The 0 field must be an integer.</p>\n","type":"text"},{"key":1,"value":null,"description":"<p>validation.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/state_histories","description":"<p>Create a new <code>StateHistory</code> object.</p>\n","urlObject":{"path":["api","v1","state_histories"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ebc5f7e-56df-40eb-b733-c75c2b64c85b"}],"id":"bdfd195a-6e10-47ce-a900-cb966d8d4458","_postman_id":"bdfd195a-6e10-47ce-a900-cb966d8d4458","description":""},{"name":"Update","item":[{"name":"api/v1/state_histories/{state_history}","id":"28f57c38-02f2-4d78-a3a3-a70addc59201","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be a valid JSON string.</p>\n","type":"text"},{"key":"from","value":null,"description":"<p>(Nullable), The from field must be a string., The from field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"statable_id","value":null,"description":"<p>The statable id field must be an integer., The statable id field must be at least 0., The statable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"statable_type","value":null,"description":"<p>The statable type field must be a string., The statable type field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"to","value":null,"description":"<p>(Nullable), The to field must be a string., The to field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"transition","value":null,"description":"<p>(Nullable), The transition field must be a string., The transition field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/state_histories/:state_history","description":"<p>Update the specified <code>StateHistory</code> .</p>\n","urlObject":{"path":["api","v1","state_histories",":state_history"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"state_history"}]}},"response":[],"_postman_id":"28f57c38-02f2-4d78-a3a3-a70addc59201"},{"name":"api/v1/state_histories/{state_history}","id":"701b7422-7efa-447a-a3cc-c65350b1a808","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"comment","value":null,"description":"<p>(Nullable), The comment field must be a valid JSON string.</p>\n","type":"text"},{"key":"from","value":null,"description":"<p>(Nullable), The from field must be a string., The from field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"statable_id","value":null,"description":"<p>The statable id field must be an integer., The statable id field must be at least 0., The statable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"statable_type","value":null,"description":"<p>The statable type field must be a string., The statable type field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"to","value":null,"description":"<p>(Nullable), The to field must be a string., The to field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"transition","value":null,"description":"<p>(Nullable), The transition field must be a string., The transition field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/state_histories/:state_history","description":"<p>Update the specified <code>StateHistory</code> .</p>\n","urlObject":{"path":["api","v1","state_histories",":state_history"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"state_history"}]}},"response":[],"_postman_id":"701b7422-7efa-447a-a3cc-c65350b1a808"}],"id":"5597af30-8900-45e4-9a16-9ce99973decf","_postman_id":"5597af30-8900-45e4-9a16-9ce99973decf","description":""}],"id":"de8bc0a5-585e-4aa6-b08c-1499e165eb1a","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> comment</code>,<code> from</code>,<code> metadata</code>,<code> project_id</code>,<code> statable_id</code>,<code> statable_type</code>,<code> team_id</code>,<code> to</code>,<code> transition</code>,<code> user_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"de8bc0a5-585e-4aa6-b08c-1499e165eb1a"},{"name":"Status Updates","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_status_updates","id":"4134fbef-2194-4140-a558-ca274e842bba","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*","value":null,"description":"<p>The data.* field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_status_updates","description":"<p>Destroy multiple <code>StatusUpdate</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_status_updates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4134fbef-2194-4140-a558-ca274e842bba"}],"id":"7efdfc80-fb42-4229-84da-cf6d7d102293","_postman_id":"7efdfc80-fb42-4229-84da-cf6d7d102293","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_status_updates","id":"47d8d0b4-0fcb-4078-8893-90919f8ea054","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.project_id","value":null,"description":"<p>The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.statusable_id","value":null,"description":"<p>The data.<em>.statusable id field is required., The data.</em>.statusable id field must be an integer.</p>\n","type":"text"},{"key":"data.*.statusable_type","value":null,"description":"<p>The data.<em>.statusable type field is required., The data.</em>.statusable type field must be a string., The selected data.*.statusable type is invalid, it must exist in Bid, BidItem, Expedite, Offer, OfferItem, Order, OrderItem, Project, Requisition, RequisitionItem.</p>\n","type":"text"},{"key":"data.*.date","value":null,"description":"<p>The data.<em>.date field is required., The data.</em>.date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.update","value":null,"description":"<p>The data.<em>.update field is required., The data.</em>.update field must be a string., The data.*.update field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.on_report","value":null,"description":"<p>(Optional), The data.*.on report field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_status_updates","description":"<p>Store multiple <code>StatusUpdate</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_status_updates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"47d8d0b4-0fcb-4078-8893-90919f8ea054"}],"id":"81b0c8d1-e6be-460d-b600-e82ced9c9d5a","_postman_id":"81b0c8d1-e6be-460d-b600-e82ced9c9d5a","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_status_updates","id":"a4634f3e-b845-461c-b546-e4431eb1f35b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data.*.project_id","value":null,"description":"<p>(Optional), The data.*.project id field must be an integer.</p>\n","type":"text"},{"key":"data.*.statusable_id","value":null,"description":"<p>(Optional), The data.*.statusable id field must be an integer.</p>\n","type":"text"},{"key":"data.*.statusable_type","value":null,"description":"<p>(Optional), The data.<em>.statusable type field must be a string., The selected data.</em>.statusable type is invalid, it must exist in Bid, BidItem, Expedite, Offer, OfferItem, Order, OrderItem, Project, Requisition, RequisitionItem.</p>\n","type":"text"},{"key":"data.*.date","value":null,"description":"<p>(Optional), The data.*.date field must be a valid date.</p>\n","type":"text"},{"key":"data.*.update","value":null,"description":"<p>(Optional), The data.<em>.update field must be a string., The data.</em>.update field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"data.*.metadata","value":null,"description":"<p>(Nullable), The data.*.metadata field must be an array.</p>\n","type":"text"},{"key":"data.*.metadata.*.key","value":null,"description":"<p>(Optional), The data.<em>.metadata.</em>.key field must be a string., (Nullable), The data.<em>.metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"data.*.metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The data.<em>.metadata.</em>.value field must be a string., The data.<em>.metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"data.*.on_report","value":null,"description":"<p>(Optional), The data.*.on report field must be true or false.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer., The data.<em>.id field must be at least 1 characters., The data.</em>.id field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_status_updates","description":"<p>Update multiple <code>StatusUpdate</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_status_updates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a4634f3e-b845-461c-b546-e4431eb1f35b"}],"id":"9bf1e70c-ae45-4b8b-adf5-4d830fe9a362","_postman_id":"9bf1e70c-ae45-4b8b-adf5-4d830fe9a362","description":""},{"name":"Destroy","item":[{"name":"api/v1/status_updates/{status_update}","id":"f69bce1c-4d72-438a-b00e-ea03ef9fbb1d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/status_updates/:status_update","description":"<p>Remove the specified <code>StatusUpdate</code> from storage.</p>\n","urlObject":{"path":["api","v1","status_updates",":status_update"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"status_update"}]}},"response":[],"_postman_id":"f69bce1c-4d72-438a-b00e-ea03ef9fbb1d"}],"id":"71639349-45ba-47f7-bb54-c47afd35b7d6","_postman_id":"71639349-45ba-47f7-bb54-c47afd35b7d6","description":""},{"name":"Index","item":[{"name":"api/v1/status_updates","id":"88c7e813-24c0-462a-a034-1046c78ec4e9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/status_updates","description":"<p>Returns a list of multiple <code>StatusUpdate</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","status_updates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"88c7e813-24c0-462a-a034-1046c78ec4e9"}],"id":"6a523946-e414-45de-89ad-9fee0b2b90f0","_postman_id":"6a523946-e414-45de-89ad-9fee0b2b90f0","description":""},{"name":"Show","item":[{"name":"api/v1/status_updates/{status_update}","id":"aeb29cfa-7dcf-41a3-98be-3a3512c10f4f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/status_updates/:status_update","description":"<p>Display the specified <code>StatusUpdate</code>.</p>\n","urlObject":{"path":["api","v1","status_updates",":status_update"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"status_update"}]}},"response":[],"_postman_id":"aeb29cfa-7dcf-41a3-98be-3a3512c10f4f"}],"id":"405b1e64-3f8d-4f88-9aea-0f3a693e5366","_postman_id":"405b1e64-3f8d-4f88-9aea-0f3a693e5366","description":""},{"name":"Store","item":[{"name":"api/v1/status_updates","id":"b482098f-db38-47b9-8638-0571386f2fb5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"statusable_id","value":null,"description":"<p>The statusable id field is required., The statusable id field must be an integer.</p>\n","type":"text"},{"key":"statusable_type","value":null,"description":"<p>The statusable type field is required., The statusable type field must be a string., The selected statusable type is invalid, it must exist in Bid, BidItem, Expedite, Offer, OfferItem, Order, OrderItem, Project, Requisition, RequisitionItem.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>The date field is required., The date field must be a valid date.</p>\n","type":"text"},{"key":"update","value":null,"description":"<p>The update field is required., The update field must be a string., The update field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"on_report","value":null,"description":"<p>(Optional), The on report field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/status_updates","description":"<p>Create a new <code>StatusUpdate</code> object.</p>\n","urlObject":{"path":["api","v1","status_updates"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b482098f-db38-47b9-8638-0571386f2fb5"}],"id":"397442fa-041c-4733-a366-21e179cdccde","_postman_id":"397442fa-041c-4733-a366-21e179cdccde","description":""},{"name":"Update","item":[{"name":"api/v1/status_updates/{status_update}","id":"043baebb-cc75-4a63-a6b5-dbe08e9b6780","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"statusable_id","value":null,"description":"<p>(Optional), The statusable id field must be an integer.</p>\n","type":"text"},{"key":"statusable_type","value":null,"description":"<p>(Optional), The statusable type field must be a string., The selected statusable type is invalid, it must exist in Bid, BidItem, Expedite, Offer, OfferItem, Order, OrderItem, Project, Requisition, RequisitionItem.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>(Optional), The date field must be a valid date.</p>\n","type":"text"},{"key":"update","value":null,"description":"<p>(Optional), The update field must be a string., The update field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"on_report","value":null,"description":"<p>(Optional), The on report field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/status_updates/:status_update","description":"<p>Update the specified <code>StatusUpdate</code> .</p>\n","urlObject":{"path":["api","v1","status_updates",":status_update"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"status_update"}]}},"response":[],"_postman_id":"043baebb-cc75-4a63-a6b5-dbe08e9b6780"},{"name":"api/v1/status_updates/{status_update}","id":"87a2cb81-d3b3-488d-9996-46805504280f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"statusable_id","value":null,"description":"<p>(Optional), The statusable id field must be an integer.</p>\n","type":"text"},{"key":"statusable_type","value":null,"description":"<p>(Optional), The statusable type field must be a string., The selected statusable type is invalid, it must exist in Bid, BidItem, Expedite, Offer, OfferItem, Order, OrderItem, Project, Requisition, RequisitionItem.</p>\n","type":"text"},{"key":"date","value":null,"description":"<p>(Optional), The date field must be a valid date.</p>\n","type":"text"},{"key":"update","value":null,"description":"<p>(Optional), The update field must be a string., The update field must not be greater than 1000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"on_report","value":null,"description":"<p>(Optional), The on report field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/status_updates/:status_update","description":"<p>Update the specified <code>StatusUpdate</code> .</p>\n","urlObject":{"path":["api","v1","status_updates",":status_update"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"status_update"}]}},"response":[],"_postman_id":"87a2cb81-d3b3-488d-9996-46805504280f"}],"id":"f7acb54a-50a2-4734-a279-7047a3bd2983","_postman_id":"f7acb54a-50a2-4734-a279-7047a3bd2983","description":""}],"id":"0babfa65-5fec-465c-acbf-7a8d25973cc4","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> date</code>,<code> metadata</code>,<code> on_report</code>,<code> project_id</code>,<code> statusable_id</code>,<code> statusable_type</code>,<code> team_id</code>,<code> update</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>statusable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0babfa65-5fec-465c-acbf-7a8d25973cc4"},{"name":"Tagables","item":[{"name":"Destroy","item":[{"name":"api/v1/tagables/{tagable}","id":"9510dfaf-54b7-4c9b-b71f-ed189f0d58f6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tagables/:tagable","description":"<p>Remove the specified <code>Tagable</code> from storage.</p>\n","urlObject":{"path":["api","v1","tagables",":tagable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tagable"}]}},"response":[],"_postman_id":"9510dfaf-54b7-4c9b-b71f-ed189f0d58f6"}],"id":"bbb02ccc-e823-463f-a8b5-798982780002","_postman_id":"bbb02ccc-e823-463f-a8b5-798982780002","description":""},{"name":"Store","item":[{"name":"api/v1/tagables","id":"fca8b2b2-2f29-4dae-bce2-93036640133d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"tag_id","value":null,"description":"<p>(Optional), The tag id field must be an integer.</p>\n","type":"text"},{"key":"tagable_id","value":null,"description":"<p>(Optional), The tagable id field must be an integer.</p>\n","type":"text"},{"key":"tagable_type","value":null,"description":"<p>(Optional), The tagable type field must be a string., The tagable type field must not be greater than 45 characters., The selected tagable type is invalid, it must exist in BillOfMaterialItem, Allocation, BidItem, OrderItem, PurchaseOrderItem, RequisitionItem.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/tagables","description":"<p>Create a new <code>Tagable</code> object.</p>\n","urlObject":{"path":["api","v1","tagables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"fca8b2b2-2f29-4dae-bce2-93036640133d"}],"id":"f8527941-9e9d-4b8c-9308-993f5f0fdd89","_postman_id":"f8527941-9e9d-4b8c-9308-993f5f0fdd89","description":""}],"id":"afdee271-db3e-4bb5-9df5-386d78fd5f43","description":"<p><code>Tagables</code> are the implementation of a <code>Tag</code> within the context of a specific transaction.</p>\n<p>Transaction Items (e.g. <code>BidItem</code>, <code>OrderItem</code>, <code>Allocation</code> ...) are assigned none or many <code>Tags</code> via the creation of none or many <code>Tagables</code>.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> project_id</code>,<code> tag_id</code>,<code> tagable_id</code>,<code> tagable_type</code>,<code> team_id</code>,</p>\n","_postman_id":"afdee271-db3e-4bb5-9df5-386d78fd5f43"},{"name":"Tags","item":[{"name":"Catalog Mismatch","item":[{"name":"api/v1/identifiers/catalog_mismatch/{tag}","id":"f56607ed-ace0-43e3-8ad9-c324c015bde7","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/identifiers/catalog_mismatch/:tag","description":"<p>Returns the <code>CatalogItems</code> within a <code>Project</code> that are associated with a specified <code>Tag</code>.</p>\n","urlObject":{"path":["api","v1","identifiers","catalog_mismatch",":tag"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tag"}]}},"response":[],"_postman_id":"f56607ed-ace0-43e3-8ad9-c324c015bde7"}],"id":"a4ad3512-bcf0-44a8-a0e0-d349085b85e5","_postman_id":"a4ad3512-bcf0-44a8-a0e0-d349085b85e5","description":""},{"name":"Destroy","item":[{"name":"api/v1/tags/{tag}","id":"8e7d1c3e-6c6f-48f1-88ab-611f819bc6a3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tags/:tag","description":"<p>Remove the specified <code>Tag</code> from storage.</p>\n","urlObject":{"path":["api","v1","tags",":tag"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tag"}]}},"response":[],"_postman_id":"8e7d1c3e-6c6f-48f1-88ab-611f819bc6a3"}],"id":"04835f43-f28f-416c-99ca-e6f1c7b5f471","_postman_id":"04835f43-f28f-416c-99ca-e6f1c7b5f471","description":""},{"name":"Index","item":[{"name":"api/v1/tags","id":"34855b25-4779-4398-91a5-6addeac092ba","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tags","description":"<p>Returns a list of multiple <code>Tag</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","tags"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"34855b25-4779-4398-91a5-6addeac092ba"}],"id":"a1dcac16-72ca-4988-a6c3-1ff6812761aa","_postman_id":"a1dcac16-72ca-4988-a6c3-1ff6812761aa","description":""},{"name":"Locate","item":[{"name":"api/v1/identifiers/locate/{tag}","id":"45c2c236-c6b6-433c-be26-b474f31a7829","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/identifiers/locate/:tag","description":"<p>Returns the related <code>Orderables</code> that are associated with a specified <code>Tag</code>.</p>\n","urlObject":{"path":["api","v1","identifiers","locate",":tag"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tag"}]}},"response":[],"_postman_id":"45c2c236-c6b6-433c-be26-b474f31a7829"}],"id":"d10b4b9b-b841-4a2f-bc02-da82b3b4b3cf","_postman_id":"d10b4b9b-b841-4a2f-bc02-da82b3b4b3cf","description":""},{"name":"Show","item":[{"name":"api/v1/tags/{tag}","id":"29c0a0cc-3f59-476e-8006-663a1565a0fe","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tags/:tag","description":"<p>Display the specified <code>Tag</code>.</p>\n","urlObject":{"path":["api","v1","tags",":tag"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tag"}]}},"response":[],"_postman_id":"29c0a0cc-3f59-476e-8006-663a1565a0fe"}],"id":"8651f800-42a2-4c1f-a8b9-7143313649fb","_postman_id":"8651f800-42a2-4c1f-a8b9-7143313649fb","description":""},{"name":"Store","item":[{"name":"api/v1/tags","id":"f719a656-f38b-480e-a2c4-2ae9ac017f8b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field must be true or false.</p>\n","type":"text"},{"key":"tag","value":null,"description":"<p>The tag has already been taken.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/tags","description":"<p>Create a new <code>Tag</code> object.</p>\n","urlObject":{"path":["api","v1","tags"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f719a656-f38b-480e-a2c4-2ae9ac017f8b"}],"id":"fed9b5bd-a8fd-4d30-9a08-6c2f0f652bb2","_postman_id":"fed9b5bd-a8fd-4d30-9a08-6c2f0f652bb2","description":""},{"name":"Update","item":[{"name":"api/v1/tags/{tag}","id":"d9f4cccd-a367-46e4-908b-75567f99e5ad","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field must be true or false.</p>\n","type":"text"},{"key":"tag","value":null,"description":"<p>The tag has already been taken.</p>\n","type":"text"},{"key":"id","value":null,"description":"<p>The id field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/tags/:tag","description":"<p>Update the specified <code>Tag</code> .</p>\n","urlObject":{"path":["api","v1","tags",":tag"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tag"}]}},"response":[],"_postman_id":"d9f4cccd-a367-46e4-908b-75567f99e5ad"},{"name":"api/v1/tags/{tag}","id":"3c6fe380-1835-4158-bef1-e82bdf602d72","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field must be an integer.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field must be true or false.</p>\n","type":"text"},{"key":"tag","value":null,"description":"<p>The tag has already been taken.</p>\n","type":"text"},{"key":"id","value":null,"description":"<p>The id field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/tags/:tag","description":"<p>Update the specified <code>Tag</code> .</p>\n","urlObject":{"path":["api","v1","tags",":tag"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tag"}]}},"response":[],"_postman_id":"3c6fe380-1835-4158-bef1-e82bdf602d72"}],"id":"dbd4dd71-626f-4851-80ee-8c9e4e46852b","_postman_id":"dbd4dd71-626f-4851-80ee-8c9e4e46852b","description":""}],"id":"ba825abb-0a16-4ec4-a61e-1ac1c6fa7d04","description":"<p><code>Tags</code> define a specific component identifier within the context of a <code>Project</code> within the application.</p>\n<p><code>Tags</code> are implemented on specific transactions via <code>Tagables</code> </p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> is_active</code>,<code> project_id</code>,<code> tag</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>activeBillOfMaterialItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bidItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>billOfMaterialItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitionItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tagables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ba825abb-0a16-4ec4-a61e-1ac1c6fa7d04"},{"name":"Tasks","item":[{"name":"Destroy","item":[{"name":"api/v1/tasks/{task}","id":"1fbcfb11-c5af-4e0c-973d-afe32e6bf37f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tasks/:task","description":"<p>Remove the specified <code>Task</code> from storage.</p>\n","urlObject":{"path":["api","v1","tasks",":task"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"task"}]}},"response":[],"_postman_id":"1fbcfb11-c5af-4e0c-973d-afe32e6bf37f"}],"id":"691bf0de-3c3a-492f-a901-fe2757484d84","_postman_id":"691bf0de-3c3a-492f-a901-fe2757484d84","description":""},{"name":"Index","item":[{"name":"api/v1/tasks","id":"8e171fc2-e3cb-49d6-8468-9d436bdc860a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tasks","description":"<p>Returns a list of multiple <code>Task</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","tasks"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e171fc2-e3cb-49d6-8468-9d436bdc860a"}],"id":"c10d9eaa-7c22-46e2-8c95-eeb03b3e2acc","_postman_id":"c10d9eaa-7c22-46e2-8c95-eeb03b3e2acc","description":""},{"name":"Seed Tasks","item":[{"name":"api/v1/tasks/seed_tasks","id":"d040585a-c22b-42ca-9b87-bffca93c7821","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"recipe","value":null,"description":"<p>The recipe field is required., The selected recipe is invalid, it must exist in project_opening, project_closing.</p>\n","type":"text"},{"key":"taskable_id","value":null,"description":"<p>The taskable id field is required., The taskable id field must be an integer.</p>\n","type":"text"},{"key":"taskable_type","value":null,"description":"<p>The taskable type field is required., The selected taskable type is invalid, it must exist in Project.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/tasks/seed_tasks","urlObject":{"path":["api","v1","tasks","seed_tasks"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d040585a-c22b-42ca-9b87-bffca93c7821"}],"id":"271ffa2a-5953-4ace-9b28-5ab8f713f059","_postman_id":"271ffa2a-5953-4ace-9b28-5ab8f713f059","description":""},{"name":"Show","item":[{"name":"api/v1/tasks/{task}","id":"c95be45e-4a93-4296-aa4c-51e04aad9fe6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tasks/:task","description":"<p>Display the specified <code>Task</code>.</p>\n","urlObject":{"path":["api","v1","tasks",":task"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"task"}]}},"response":[],"_postman_id":"c95be45e-4a93-4296-aa4c-51e04aad9fe6"}],"id":"c3e7aa9f-f7aa-451b-9c44-a2cac6c5ac81","_postman_id":"c3e7aa9f-f7aa-451b-9c44-a2cac6c5ac81","description":""},{"name":"Store","item":[{"name":"api/v1/tasks","id":"03b4a7e7-e6aa-491e-96a9-1c77845db211","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"closing_notes","value":null,"description":"<p>(Nullable), The closing notes field must be a string., The closing notes field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., (Nullable), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"person_id","value":null,"description":"<p>(Nullable), The person id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"task_date","value":null,"description":"<p>The task date field is required., The task date field must be a valid date.</p>\n","type":"text"},{"key":"task_status","value":null,"description":"<p>The task status field is required., The task status field must be a string., The task status field must not be greater than 45 characters., The selected task status is invalid, it must exist in in_progress, waiting.</p>\n","type":"text"},{"key":"task_type","value":null,"description":"<p>The task type field must be a string., The task type field must not be greater than 12 characters., The selected task type is invalid, it must exist in workflow, user.</p>\n","type":"text"},{"key":"taskable_id","value":null,"description":"<p>The taskable id field is required., The taskable id field must be an integer., The taskable id field must be at least 0., The taskable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"taskable_type","value":null,"description":"<p>The taskable type field is required., The taskable type field must be a string.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Nullable), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/tasks","description":"<p>Create a new <code>Task</code> object.</p>\n","urlObject":{"path":["api","v1","tasks"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"03b4a7e7-e6aa-491e-96a9-1c77845db211"}],"id":"80939784-8acd-4448-ba1e-f36ab78aec2f","_postman_id":"80939784-8acd-4448-ba1e-f36ab78aec2f","description":""},{"name":"Update","item":[{"name":"api/v1/tasks/{task}","id":"ecba9a4c-bd45-4475-a07a-edbffa8dd84a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"closing_notes","value":null,"description":"<p>(Optional), (Nullable), The closing notes field must be a string., The closing notes field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"person_id","value":null,"description":"<p>(Nullable), The person id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"task_date","value":null,"description":"<p>(Optional), The task date field must be a valid date.</p>\n","type":"text"},{"key":"task_status","value":null,"description":"<p>(Optional), The task status field must be a string., The task status field must not be greater than 45 characters., The selected task status is invalid, it must exist in in_progress, waiting, closed, cancelled.</p>\n","type":"text"},{"key":"task_type","value":null,"description":"<p>(Optional), The task type field must be a string., The task type field must not be greater than 12 characters., The selected task type is invalid, it must exist in workflow, user.</p>\n","type":"text"},{"key":"taskable_id","value":null,"description":"<p>(Optional), The taskable id field must be an integer., The taskable id field must be at least 0., The taskable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"taskable_type","value":null,"description":"<p>(Optional), The taskable type field must be a string.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/tasks/:task","description":"<p>Update the specified <code>Task</code> .</p>\n","urlObject":{"path":["api","v1","tasks",":task"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"task"}]}},"response":[],"_postman_id":"ecba9a4c-bd45-4475-a07a-edbffa8dd84a"},{"name":"api/v1/tasks/{task}","id":"34e1dfeb-892e-4344-a201-c1fec2473283","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"closing_notes","value":null,"description":"<p>(Optional), (Nullable), The closing notes field must be a string., The closing notes field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 3000 characters.</p>\n","type":"text"},{"key":"metadata","value":null,"description":"<p>(Optional), (Nullable), The metadata field must be an array.</p>\n","type":"text"},{"key":"metadata.*.key","value":null,"description":"<p>(Optional), The metadata.<em>.key field must be a string., (Nullable), The metadata.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"metadata.*.value","value":null,"description":"<p>(Optional), (Nullable), The metadata.<em>.value field must be a string., The metadata.</em>.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"person_id","value":null,"description":"<p>(Nullable), The person id field must be an integer.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"task_date","value":null,"description":"<p>(Optional), The task date field must be a valid date.</p>\n","type":"text"},{"key":"task_status","value":null,"description":"<p>(Optional), The task status field must be a string., The task status field must not be greater than 45 characters., The selected task status is invalid, it must exist in in_progress, waiting, closed, cancelled.</p>\n","type":"text"},{"key":"task_type","value":null,"description":"<p>(Optional), The task type field must be a string., The task type field must not be greater than 12 characters., The selected task type is invalid, it must exist in workflow, user.</p>\n","type":"text"},{"key":"taskable_id","value":null,"description":"<p>(Optional), The taskable id field must be an integer., The taskable id field must be at least 0., The taskable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"taskable_type","value":null,"description":"<p>(Optional), The taskable type field must be a string.</p>\n","type":"text"},{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/tasks/:task","description":"<p>Update the specified <code>Task</code> .</p>\n","urlObject":{"path":["api","v1","tasks",":task"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"task"}]}},"response":[],"_postman_id":"34e1dfeb-892e-4344-a201-c1fec2473283"}],"id":"ee0eb623-e5c0-404a-a928-997689c4d11a","_postman_id":"ee0eb623-e5c0-404a-a928-997689c4d11a","description":""}],"id":"40c10c4d-ecff-4906-acfa-0d105241afdc","description":"<p><code>Tasks</code> are a common entity that can be attached to a number of entities to define an assigned and trackable\nactivity.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> closing_notes</code>,<code> creator_user_id</code>,<code> description</code>,<code> metadata</code>,<code> name</code>,<code> person_id</code>,<code> project_id</code>,<code> task_date</code>,<code> task_status</code>,<code> taskable_id</code>,<code> taskable_type</code>,<code> team_id</code>,<code> user_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>assignment</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>closer</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>creator</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>taskable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>link</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>preview</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"40c10c4d-ecff-4906-acfa-0d105241afdc"},{"name":"Taxes","item":[{"name":"Destroy","item":[{"name":"api/v1/taxes/{tax}","id":"e045be11-9c2d-4236-9921-7ae86c2442fb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/taxes/:tax","description":"<p>Remove the specified <code>Tax</code> from storage.</p>\n","urlObject":{"path":["api","v1","taxes",":tax"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tax"}]}},"response":[],"_postman_id":"e045be11-9c2d-4236-9921-7ae86c2442fb"}],"id":"7932c169-2adf-49b5-bd40-b626437249fd","_postman_id":"7932c169-2adf-49b5-bd40-b626437249fd","description":""},{"name":"Index","item":[{"name":"api/v1/taxes","id":"69a03fcd-763e-4dfe-a43a-ad96eb4a3c1b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/taxes","description":"<p>Returns a list of multiple <code>Tax</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","taxes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"69a03fcd-763e-4dfe-a43a-ad96eb4a3c1b"}],"id":"1eb197c3-2753-4078-8b73-47ac4ccf02db","_postman_id":"1eb197c3-2753-4078-8b73-47ac4ccf02db","description":""},{"name":"Show","item":[{"name":"api/v1/taxes/{tax}","id":"4d43345e-b196-4cb8-a247-c66c751babd9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/taxes/:tax","description":"<p>Display the specified <code>Tax</code>.</p>\n","urlObject":{"path":["api","v1","taxes",":tax"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tax"}]}},"response":[],"_postman_id":"4d43345e-b196-4cb8-a247-c66c751babd9"}],"id":"5c2b1880-b937-4041-b83a-b3cdef42ae15","_postman_id":"5c2b1880-b937-4041-b83a-b3cdef42ae15","description":""},{"name":"Store","item":[{"name":"api/v1/taxes","id":"2fbb5770-5f39-4ec1-b75f-3da983ef5e99","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"rate","value":null,"description":"<p>(Nullable), The rate field must be a number., The rate field must be at least -999.99., The rate field must not be greater than 999.99.</p>\n","type":"text"},{"key":"tax_name","value":null,"description":"<p>The tax name field is required., The tax name field must be a string., The tax name field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/taxes","description":"<p>Create a new <code>Tax</code> object.</p>\n","urlObject":{"path":["api","v1","taxes"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2fbb5770-5f39-4ec1-b75f-3da983ef5e99"}],"id":"47595224-0ff1-4b08-9942-76dd3e470673","_postman_id":"47595224-0ff1-4b08-9942-76dd3e470673","description":""},{"name":"Update","item":[{"name":"api/v1/taxes/{tax}","id":"6fbb67c2-0093-4233-b0a2-7b071c582144","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"rate","value":null,"description":"<p>(Nullable), The rate field must be a number., The rate field must be at least -999.99., The rate field must not be greater than 999.99.</p>\n","type":"text"},{"key":"tax_name","value":null,"description":"<p>The tax name field must be a string., The tax name field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/taxes/:tax","description":"<p>Update the specified <code>Tax</code> .</p>\n","urlObject":{"path":["api","v1","taxes",":tax"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tax"}]}},"response":[],"_postman_id":"6fbb67c2-0093-4233-b0a2-7b071c582144"},{"name":"api/v1/taxes/{tax}","id":"16327f05-6912-43b0-80f9-21d24e35ed8d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"rate","value":null,"description":"<p>(Nullable), The rate field must be a number., The rate field must be at least -999.99., The rate field must not be greater than 999.99.</p>\n","type":"text"},{"key":"tax_name","value":null,"description":"<p>The tax name field must be a string., The tax name field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/taxes/:tax","description":"<p>Update the specified <code>Tax</code> .</p>\n","urlObject":{"path":["api","v1","taxes",":tax"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"tax"}]}},"response":[],"_postman_id":"16327f05-6912-43b0-80f9-21d24e35ed8d"}],"id":"882f3ff5-370e-4bf7-999a-83dbc7e7493b","_postman_id":"882f3ff5-370e-4bf7-999a-83dbc7e7493b","description":""}],"id":"87c4b741-fe99-4f0d-825b-8747fdb15a88","description":"<p><code>Taxes</code> manage the different taxes and tax rates available within the application. </p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> is_active</code>,<code> rate</code>,<code> tax_name</code>,<code> team_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"87c4b741-fe99-4f0d-825b-8747fdb15a88"},{"name":"Team Customizations","item":[{"name":"Index","item":[{"name":"api/v1/team_customizations","id":"1c8de6b0-73fa-4213-a920-f21e1d447f24","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/team_customizations","description":"<p>Returns a list of multiple <code>TeamCustomization</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","team_customizations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c8de6b0-73fa-4213-a920-f21e1d447f24"}],"id":"d3508f6d-5439-495b-99ef-3a168bdebfb3","_postman_id":"d3508f6d-5439-495b-99ef-3a168bdebfb3","description":""},{"name":"Show","item":[{"name":"api/v1/team_customizations/{team_customization}","id":"ddab1a63-9301-46b4-b6ca-48298388e68b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/team_customizations/:team_customization","description":"<p>Display the specified <code>TeamCustomization</code>.</p>\n","urlObject":{"path":["api","v1","team_customizations",":team_customization"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"team_customization"}]}},"response":[],"_postman_id":"ddab1a63-9301-46b4-b6ca-48298388e68b"}],"id":"a8d5550d-dcea-4c26-aeb3-5566cbcbefcc","_postman_id":"a8d5550d-dcea-4c26-aeb3-5566cbcbefcc","description":""}],"id":"7c837329-45d2-45d0-865d-97a7153ee3ef","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> id</code>,<code> key</code>,<code> team_id</code>,</p>\n","_postman_id":"7c837329-45d2-45d0-865d-97a7153ee3ef"},{"name":"Teams","item":[{"name":"Access","item":[{"name":"api/v1/teams/{team}/teamaccess","id":"02acf013-ba0e-4d1b-aab6-083e368dc6f4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/teams/:team/teamaccess","description":"<p>Returns a package of <code>Team</code> users with their <code>Team</code> <code>Roles</code>.</p>\n","urlObject":{"path":["api","v1","teams",":team","teamaccess"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"team"}]}},"response":[],"_postman_id":"02acf013-ba0e-4d1b-aab6-083e368dc6f4"}],"id":"332bbd6d-7fa8-41cc-ba62-d76dc7db1973","_postman_id":"332bbd6d-7fa8-41cc-ba62-d76dc7db1973","description":""},{"name":"Config Show","item":[{"name":"api/v1/teamconfig","id":"0d4e1d95-3ce2-4b08-ba13-9c2785af78eb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/teamconfig","description":"<p>Returns the full configuration of a <code>Team</code> by combining the defined <code>TeamCustomizations</code> with the application defaults.</p>\n","urlObject":{"path":["api","v1","teamconfig"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d4e1d95-3ce2-4b08-ba13-9c2785af78eb"}],"id":"fec438d9-3121-4986-a7a3-69ecd743a61e","_postman_id":"fec438d9-3121-4986-a7a3-69ecd743a61e","description":""},{"name":"Config Update","item":[{"name":"api/v1/teamconfig","id":"0d1f35e5-f00d-4d42-ad34-5292d1f668ff","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"order_items_custom_field_keys","value":null,"description":"<p>(Nullable), The order items custom field keys field must be an array.</p>\n","type":"text"},{"key":"order_items_custom_field_keys.*","value":null,"description":"<p>The order items custom field keys.* field is required when order items custom field keys is present., The order items custom field keys.* field must be a string., The order items custom field keys.* field must be at least 1 characters., The order items custom field keys.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"order_custom_field_keys","value":null,"description":"<p>(Nullable), The order custom field keys field must be an array.</p>\n","type":"text"},{"key":"order_custom_field_keys.*","value":null,"description":"<p>The order custom field keys.* field is required when order custom field keys is present., The order custom field keys.* field must be a string., The order custom field keys.* field must be at least 1 characters., The order custom field keys.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"order_custom_field_is_printed","value":null,"description":"<p>(Nullable), The order custom field is printed field must be true or false.</p>\n","type":"text"},{"key":"client_supplied_revisioning","value":null,"description":"<p>(Optional), The client supplied revisioning field must be true or false.</p>\n","type":"text"},{"key":"dates_bid","value":null,"description":"<p>(Nullable), The dates bid field must be an array.</p>\n","type":"text"},{"key":"dates_bid.*.name","value":null,"description":"<p>The dates bid.<em>.name field is required when dates bid is present., The dates bid.</em>.name field must be a string., The dates bid.<em>.name field must be at least 1 characters., The dates bid.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_bid.*.slug","value":null,"description":"<p>The dates bid.<em>.slug field is required when dates bid is present., The dates bid.</em>.slug field must be a string., The dates bid.<em>.slug field must be at least 1 characters., The dates bid.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_bid.*.required","value":null,"description":"<p>The dates bid.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_expedite","value":null,"description":"<p>(Nullable), The dates expedite field must be an array.</p>\n","type":"text"},{"key":"dates_expedite.*.name","value":null,"description":"<p>The dates expedite.<em>.name field is required when dates expedite is present., The dates expedite.</em>.name field must be a string., The dates expedite.<em>.name field must be at least 1 characters., The dates expedite.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_expedite.*.slug","value":null,"description":"<p>The dates expedite.<em>.slug field is required when dates expedite is present., The dates expedite.</em>.slug field must be a string., The dates expedite.<em>.slug field must be at least 1 characters., The dates expedite.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_expedite.*.required","value":null,"description":"<p>The dates expedite.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_offer","value":null,"description":"<p>(Nullable), The dates offer field must be an array.</p>\n","type":"text"},{"key":"dates_offer.*.name","value":null,"description":"<p>The dates offer.<em>.name field is required when dates offer is present., The dates offer.</em>.name field must be a string., The dates offer.<em>.name field must be at least 1 characters., The dates offer.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_offer.*.slug","value":null,"description":"<p>The dates offer.<em>.slug field is required when dates offer is present., The dates offer.</em>.slug field must be a string., The dates offer.<em>.slug field must be at least 1 characters., The dates offer.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_offer.*.required","value":null,"description":"<p>The dates offer.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_order","value":null,"description":"<p>(Nullable), The dates order field must be an array.</p>\n","type":"text"},{"key":"dates_order.*.name","value":null,"description":"<p>The dates order.<em>.name field is required when dates order is present., The dates order.</em>.name field must be a string., The dates order.<em>.name field must be at least 1 characters., The dates order.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_order.*.slug","value":null,"description":"<p>The dates order.<em>.slug field is required when dates order is present., The dates order.</em>.slug field must be a string., The dates order.<em>.slug field must be at least 1 characters., The dates order.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_order.*.required","value":null,"description":"<p>The dates order.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_sales_order","value":null,"description":"<p>(Nullable), The dates sales order field must be an array.</p>\n","type":"text"},{"key":"dates_sales_order.*.name","value":null,"description":"<p>The dates sales order.<em>.name field is required when dates sales order is present., The dates sales order.</em>.name field must be a string., The dates sales order.<em>.name field must be at least 1 characters., The dates sales order.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_sales_order.*.slug","value":null,"description":"<p>The dates sales order.<em>.slug field is required when dates sales order is present., The dates sales order.</em>.slug field must be a string., The dates sales order.<em>.slug field must be at least 1 characters., The dates sales order.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_sales_order.*.required","value":null,"description":"<p>The dates sales order.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_project","value":null,"description":"<p>(Nullable), The dates project field must be an array.</p>\n","type":"text"},{"key":"dates_project.*.name","value":null,"description":"<p>The dates project.<em>.name field is required when dates project is present., The dates project.</em>.name field must be a string., The dates project.<em>.name field must be at least 1 characters., The dates project.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_project.*.slug","value":null,"description":"<p>The dates project.<em>.slug field is required when dates project is present., The dates project.</em>.slug field must be a string., The dates project.<em>.slug field must be at least 1 characters., The dates project.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_project.*.required","value":null,"description":"<p>The dates project.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_purchase_order","value":null,"description":"<p>(Nullable), The dates purchase order field must be an array.</p>\n","type":"text"},{"key":"dates_purchase_order.*.name","value":null,"description":"<p>The dates purchase order.<em>.name field is required when dates purchase order is present., The dates purchase order.</em>.name field must be a string., The dates purchase order.<em>.name field must be at least 1 characters., The dates purchase order.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_purchase_order.*.slug","value":null,"description":"<p>The dates purchase order.<em>.slug field is required when dates purchase order is present., The dates purchase order.</em>.slug field must be a string., The dates purchase order.<em>.slug field must be at least 1 characters., The dates purchase order.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_purchase_order.*.required","value":null,"description":"<p>The dates purchase order.*.required field must be true or false.</p>\n","type":"text"},{"key":"dates_requisition","value":null,"description":"<p>(Nullable), The dates requisition field must be an array.</p>\n","type":"text"},{"key":"dates_requisition.*.name","value":null,"description":"<p>The dates requisition.<em>.name field is required when dates requisition is present., The dates requisition.</em>.name field must be a string., The dates requisition.<em>.name field must be at least 1 characters., The dates requisition.</em>.name field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_requisition.*.slug","value":null,"description":"<p>The dates requisition.<em>.slug field is required when dates requisition is present., The dates requisition.</em>.slug field must be a string., The dates requisition.<em>.slug field must be at least 1 characters., The dates requisition.</em>.slug field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dates_requisition.*.required","value":null,"description":"<p>The dates requisition.*.required field must be true or false.</p>\n","type":"text"},{"key":"default_currency_code","value":null,"description":"<p>(Nullable), The default currency code field must be a string., The default currency code field must not be greater than 3 characters.</p>\n","type":"text"},{"key":"default_taxes_id","value":null,"description":"<p>(Nullable), The default taxes id field must be an integer., The default taxes id field must be at least 0., The default taxes id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"default_group_approvals_bids_enabled","value":null,"description":"<p>(Nullable), (Optional), The default group approvals bids enabled field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_bids_array","value":null,"description":"<p>(Nullable), (Optional), The default group approvals bids array field must be an array.</p>\n","type":"text"},{"key":"default_group_approvals_bids_array.*.is_required","value":null,"description":"<p>The default group approvals bids array.<em>.is required field is required., The default group approvals bids array.</em>.is required field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_bids_array.*.requested_user_id","value":null,"description":"<p>(Nullable), The default group approvals bids array.<em>.requested user id field must be an integer., The default group approvals bids array.</em>.requested user id field must be at least 0 characters., The default group approvals bids array.*.requested user id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"default_group_approvals_bids_array.*.responsibility","value":null,"description":"<p>(Nullable), The default group approvals bids array.<em>.responsibility field must be a string., The default group approvals bids array.</em>.responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"default_group_approvals_orders_enabled","value":null,"description":"<p>(Nullable), (Optional), The default group approvals orders enabled field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_orders_array","value":null,"description":"<p>(Nullable), (Optional), The default group approvals orders array field must be an array.</p>\n","type":"text"},{"key":"default_group_approvals_orders_array.*.is_required","value":null,"description":"<p>The default group approvals orders array.<em>.is required field is required., The default group approvals orders array.</em>.is required field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_orders_array.*.requested_user_id","value":null,"description":"<p>(Nullable), The default group approvals orders array.<em>.requested user id field must be an integer., The default group approvals orders array.</em>.requested user id field must be at least 0 characters., The default group approvals orders array.*.requested user id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"default_group_approvals_orders_array.*.responsibility","value":null,"description":"<p>(Nullable), The default group approvals orders array.<em>.responsibility field must be a string., The default group approvals orders array.</em>.responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_enabled","value":null,"description":"<p>(Nullable), (Optional), The default group approvals requisitions enabled field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_array","value":null,"description":"<p>(Nullable), (Optional), The default group approvals requisitions array field must be an array.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_array.*.is_required","value":null,"description":"<p>The default group approvals requisitions array.<em>.is required field is required., The default group approvals requisitions array.</em>.is required field must be true or false.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_array.*.requested_user_id","value":null,"description":"<p>(Nullable), The default group approvals requisitions array.<em>.requested user id field must be an integer., The default group approvals requisitions array.</em>.requested user id field must be at least 0 characters., The default group approvals requisitions array.*.requested user id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"default_group_approvals_requisitions_array.*.responsibility","value":null,"description":"<p>(Nullable), The default group approvals requisitions array.<em>.responsibility field must be a string., The default group approvals requisitions array.</em>.responsibility field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"dictionary","value":null,"description":"<p>(Nullable), The dictionary field must be an array.</p>\n","type":"text"},{"key":"dictionary.Project","value":null,"description":"<p>(Nullable), The dictionary. project field must be a string., The dictionary. project field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dictionary.Manager","value":null,"description":"<p>(Nullable), The dictionary. manager field must be a string., The dictionary. manager field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"dictionary.ResponsibleEngineer","value":null,"description":"<p>(Nullable), The dictionary. responsible engineer field must be a string., The dictionary. responsible engineer field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"evaluations_bid","value":null,"description":"<p>(Nullable), The evaluations bid field must be an array.</p>\n","type":"text"},{"key":"evaluations_bid.*.id","value":null,"description":"<p>(Nullable), The evaluations bid.<em>.id field must be an integer., The evaluations bid.</em>.id field must be at least 0 characters., The evaluations bid.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"evaluations_bid.*.title","value":null,"description":"<p>The evaluations bid.<em>.title field is required when evaluations bid is present., The evaluations bid.</em>.title field must be a string., The evaluations bid.<em>.title field must be at least 1 characters., The evaluations bid.</em>.title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"evaluations_bid.*.field_type","value":null,"description":"<p>The evaluations bid.<em>.field type field is required when evaluations bid is present., The evaluations bid.</em>.field type field must be a string., The evaluations bid.<em>.field type field must be at least 1 characters., The evaluations bid.</em>.field type field must not be greater than 12 characters.</p>\n","type":"text"},{"key":"evaluations_bid.*.select_options","value":null,"description":"<p>(Nullable), The evaluations bid.*.select options field must be an array.</p>\n","type":"text"},{"key":"evaluations_bid.*.select_options.*","value":null,"description":"<p>The evaluations bid.<em>.select options.</em> field is required when evaluations bid.select options is present., The evaluations bid.<em>.select options.</em> field must be a string., The evaluations bid.<em>.select options.</em> field must be at least 1 characters., The evaluations bid.<em>.select options.</em> field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"evaluations_business","value":null,"description":"<p>(Nullable), The evaluations business field must be an array.</p>\n","type":"text"},{"key":"evaluations_business.*.id","value":null,"description":"<p>(Nullable), The evaluations business.<em>.id field must be an integer., The evaluations business.</em>.id field must be at least 0 characters., The evaluations business.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"evaluations_business.*.title","value":null,"description":"<p>The evaluations business.<em>.title field is required when evaluations business is present., The evaluations business.</em>.title field must be a string., The evaluations business.<em>.title field must be at least 1 characters., The evaluations business.</em>.title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"evaluations_business.*.field_type","value":null,"description":"<p>The evaluations business.<em>.field type field is required when evaluations business is present., The evaluations business.</em>.field type field must be a string., The evaluations business.<em>.field type field must be at least 1 characters., The evaluations business.</em>.field type field must not be greater than 12 characters.</p>\n","type":"text"},{"key":"evaluations_business.*.select_options","value":null,"description":"<p>(Nullable), The evaluations business.*.select options field must be an array.</p>\n","type":"text"},{"key":"evaluations_business.*.select_options.*","value":null,"description":"<p>The evaluations business.<em>.select options.</em> field is required when evaluations business.select options is present., The evaluations business.<em>.select options.</em> field must be a string., The evaluations business.<em>.select options.</em> field must be at least 1 characters., The evaluations business.<em>.select options.</em> field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"evaluations_offer","value":null,"description":"<p>(Nullable), The evaluations offer field must be an array.</p>\n","type":"text"},{"key":"evaluations_offer.*.id","value":null,"description":"<p>(Nullable), The evaluations offer.<em>.id field must be an integer., The evaluations offer.</em>.id field must be at least 0 characters., The evaluations offer.*.id field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"evaluations_offer.*.title","value":null,"description":"<p>The evaluations offer.<em>.title field is required when evaluations offer is present., The evaluations offer.</em>.title field must be a string., The evaluations offer.<em>.title field must be at least 1 characters., The evaluations offer.</em>.title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"evaluations_offer.*.field_type","value":null,"description":"<p>The evaluations offer.<em>.field type field is required when evaluations offer is present., The evaluations offer.</em>.field type field must be a string., The evaluations offer.<em>.field type field must be at least 1 characters., The evaluations offer.</em>.field type field must not be greater than 12 characters.</p>\n","type":"text"},{"key":"evaluations_offer.*.select_options","value":null,"description":"<p>(Nullable), The evaluations offer.*.select options field must be an array.</p>\n","type":"text"},{"key":"evaluations_offer.*.select_options.*","value":null,"description":"<p>The evaluations offer.<em>.select options.</em> field is required when evaluations offer.select options is present., The evaluations offer.<em>.select options.</em> field must be a string., The evaluations offer.<em>.select options.</em> field must be at least 1 characters., The evaluations offer.<em>.select options.</em> field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"expediting_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Optional), The expediting must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"expediting_levels_options","value":null,"description":"<p>(Nullable), The expediting levels options field must be an array.</p>\n","type":"text"},{"key":"expediting_levels_options.*","value":null,"description":"<p>The expediting levels options.* field is required when expediting levels options is present., The expediting levels options.* field must be a string., The expediting levels options.* field must be at least 1 characters., The expediting levels options.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"file_type_options","value":null,"description":"<p>(Nullable), The file type options field must be an array.</p>\n","type":"text"},{"key":"file_type_options.*","value":null,"description":"<p>The file type options.* field is required when file type options is present., The file type options.* field must be a string., The file type options.* field must be at least 1 characters., The file type options.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"ncr_impact_options","value":null,"description":"<p>(Nullable), The ncr impact options field must be an array.</p>\n","type":"text"},{"key":"ncr_impact_options.*","value":null,"description":"<p>The ncr impact options.* field is required when ncr impact options is present., The ncr impact options.* field must be a string., The ncr impact options.* field must be at least 1 characters., The ncr impact options.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"ncr_nature_options","value":null,"description":"<p>(Nullable), The ncr nature options field must be an array.</p>\n","type":"text"},{"key":"ncr_nature_options.*","value":null,"description":"<p>The ncr nature options.* field is required when ncr nature options is present., The ncr nature options.* field must be a string., The ncr nature options.* field must be at least 1 characters., The ncr nature options.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"ncr_disposition_options","value":null,"description":"<p>(Nullable), The ncr disposition options field must be an array.</p>\n","type":"text"},{"key":"ncr_disposition_options.*","value":null,"description":"<p>The ncr disposition options.* field is required when ncr nature options is present., The ncr disposition options.* field must be a string., The ncr disposition options.* field must be at least 1 characters., The ncr disposition options.* field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"uses_inspection_module","value":null,"description":"<p>The uses inspection module field must be true or false.</p>\n","type":"text"},{"key":"inspection_type_options","value":null,"description":"<p>(Nullable), The inspection type options field must be an array.</p>\n","type":"text"},{"key":"inspection_type_options.*","value":null,"description":"<p>The inspection type options.* field is required when inspection type options is present., The inspection type options.* field must be a string., The inspection type options.* field must be at least 1 characters., The inspection type options.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"inspection_level_options","value":null,"description":"<p>(Nullable), The inspection level options field must be an array.</p>\n","type":"text"},{"key":"inspection_level_options.*","value":null,"description":"<p>The inspection level options.* field is required when inspection level options is present., The inspection level options.* field must be a string., The inspection level options.* field must be at least 1 characters., The inspection level options.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"meta_business","value":null,"description":"<p>(Nullable), The meta business field must be an array.</p>\n","type":"text"},{"key":"meta_business.*.key","value":null,"description":"<p>The meta business.<em>.key field is required when meta business is present., The meta business.</em>.key field must be a string., The meta business.<em>.key field must be at least 1 characters., The meta business.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_business.*.value","value":null,"description":"<p>(Nullable), The meta business.<em>.value field must be a string., The meta business.</em>.value field must be at least 1 characters., The meta business.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_location","value":null,"description":"<p>(Nullable), The meta location field must be an array.</p>\n","type":"text"},{"key":"meta_location.*.key","value":null,"description":"<p>The meta location.<em>.key field is required when meta location is present., The meta location.</em>.key field must be a string., The meta location.<em>.key field must be at least 1 characters., The meta location.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_location.*.value","value":null,"description":"<p>(Nullable), The meta location.<em>.value field must be a string., The meta location.</em>.value field must be at least 1 characters., The meta location.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_person","value":null,"description":"<p>(Nullable), The meta person field must be an array.</p>\n","type":"text"},{"key":"meta_person.*.key","value":null,"description":"<p>The meta person.<em>.key field is required when meta person is present., The meta person.</em>.key field must be a string., The meta person.<em>.key field must be at least 1 characters., The meta person.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_person.*.value","value":null,"description":"<p>(Nullable), The meta person.<em>.value field must be a string., The meta person.</em>.value field must be at least 1 characters., The meta person.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_catalog_item","value":null,"description":"<p>(Nullable), The meta catalog item field must be an array.</p>\n","type":"text"},{"key":"meta_catalog_item.*.key","value":null,"description":"<p>The meta catalog item.<em>.key field is required when meta catalog item is present., The meta catalog item.</em>.key field must be a string., The meta catalog item.<em>.key field must be at least 1 characters., The meta catalog item.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_catalog_item.*.value","value":null,"description":"<p>(Nullable), The meta catalog item.<em>.value field must be a string., The meta catalog item.</em>.value field must be at least 1 characters., The meta catalog item.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_project","value":null,"description":"<p>(Nullable), The meta project field must be an array.</p>\n","type":"text"},{"key":"meta_project.*.key","value":null,"description":"<p>The meta project.<em>.key field is required when meta project is present., The meta project.</em>.key field must be a string., The meta project.<em>.key field must be at least 1 characters., The meta project.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_project.*.value","value":null,"description":"<p>(Nullable), The meta project.<em>.value field must be a string., The meta project.</em>.value field must be at least 1 characters., The meta project.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_requisition","value":null,"description":"<p>(Nullable), The meta requisition field must be an array.</p>\n","type":"text"},{"key":"meta_requisition.*.key","value":null,"description":"<p>The meta requisition.<em>.key field is required when meta requisition is present., The meta requisition.</em>.key field must be a string., The meta requisition.<em>.key field must be at least 1 characters., The meta requisition.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_requisition.*.value","value":null,"description":"<p>(Nullable), The meta requisition.<em>.value field must be a string., The meta requisition.</em>.value field must be at least 1 characters., The meta requisition.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_bid","value":null,"description":"<p>(Nullable), The meta bid field must be an array.</p>\n","type":"text"},{"key":"meta_bid.*.key","value":null,"description":"<p>The meta bid.<em>.key field is required when meta bid is present., The meta bid.</em>.key field must be a string., The meta bid.<em>.key field must be at least 1 characters., The meta bid.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_bid.*.value","value":null,"description":"<p>(Nullable), The meta bid.<em>.value field must be a string., The meta bid.</em>.value field must be at least 1 characters., The meta bid.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_offer","value":null,"description":"<p>(Nullable), The meta offer field must be an array.</p>\n","type":"text"},{"key":"meta_offer.*.key","value":null,"description":"<p>The meta offer.<em>.key field is required when meta offer is present., The meta offer.</em>.key field must be a string., The meta offer.<em>.key field must be at least 1 characters., The meta offer.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_offer.*.value","value":null,"description":"<p>(Nullable), The meta offer.<em>.value field must be a string., The meta offer.</em>.value field must be at least 1 characters., The meta offer.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_order","value":null,"description":"<p>(Nullable), The meta order field must be an array.</p>\n","type":"text"},{"key":"meta_order.*.key","value":null,"description":"<p>The meta order.<em>.key field is required when meta order is present., The meta order.</em>.key field must be a string., The meta order.<em>.key field must be at least 1 characters., The meta order.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_order.*.value","value":null,"description":"<p>(Nullable), The meta order.<em>.value field must be a string., The meta order.</em>.value field must be at least 1 characters., The meta order.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"task_recipe_project_opening","value":null,"description":"<p>(Nullable), The task recipe project opening field must be an array.</p>\n","type":"text"},{"key":"task_recipe_project_opening.*.name","value":null,"description":"<p>The task recipe project opening.<em>.name field is required., The task recipe project opening.</em>.name field must be a string.</p>\n","type":"text"},{"key":"task_recipe_project_opening.*.description","value":null,"description":"<p>The task recipe project opening.<em>.description field is required., The task recipe project opening.</em>.description field must be a string.</p>\n","type":"text"},{"key":"task_recipe_project_opening.*.due_in_days","value":null,"description":"<p>The task recipe project opening.<em>.due in days field is required., The task recipe project opening.</em>.due in days field must be an integer.</p>\n","type":"text"},{"key":"task_recipe_project_opening.*.user_type_task_is_assigned_to","value":null,"description":"<p>The task recipe project opening.<em>.user type task is assigned to field is required., The task recipe project opening.</em>.user type task is assigned to field must be a string.</p>\n","type":"text"},{"key":"task_recipe_project_closing","value":null,"description":"<p>(Nullable), The task recipe project closing field must be an array.</p>\n","type":"text"},{"key":"task_recipe_project_closing.*.name","value":null,"description":"<p>The task recipe project closing.<em>.name field is required., The task recipe project closing.</em>.name field must be a string.</p>\n","type":"text"},{"key":"task_recipe_project_closing.*.description","value":null,"description":"<p>The task recipe project closing.<em>.description field is required., The task recipe project closing.</em>.description field must be a string.</p>\n","type":"text"},{"key":"task_recipe_project_closing.*.due_in_days","value":null,"description":"<p>The task recipe project closing.<em>.due in days field is required., The task recipe project closing.</em>.due in days field must be an integer.</p>\n","type":"text"},{"key":"task_recipe_project_closing.*.user_type_task_is_assigned_to","value":null,"description":"<p>The task recipe project closing.<em>.user type task is assigned to field is required., The task recipe project closing.</em>.user type task is assigned to field must be a string.</p>\n","type":"text"},{"key":"meta_inspection","value":null,"description":"<p>(Nullable), The meta inspection field must be an array.</p>\n","type":"text"},{"key":"meta_inspection.*.key","value":null,"description":"<p>The meta inspection.<em>.key field is required when meta inspection is present., The meta inspection.</em>.key field must be a string., The meta inspection.<em>.key field must be at least 1 characters., The meta inspection.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_inspection.*.value","value":null,"description":"<p>(Nullable), The meta inspection.<em>.value field must be a string., The meta inspection.</em>.value field must be at least 1 characters., The meta inspection.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_inspection_requirement","value":null,"description":"<p>(Nullable), The meta inspection requirement field must be an array.</p>\n","type":"text"},{"key":"meta_inspection_requirement.*.key","value":null,"description":"<p>The meta inspection requirement.<em>.key field is required when meta inspection requirement is present., The meta inspection requirement.</em>.key field must be a string., The meta inspection requirement.<em>.key field must be at least 1 characters., The meta inspection requirement.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_inspection_requirement.*.value","value":null,"description":"<p>(Nullable), The meta inspection requirement.<em>.value field must be a string., The meta inspection requirement.</em>.value field must be at least 1 characters., The meta inspection requirement.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_inspection_release","value":null,"description":"<p>(Nullable), The meta inspection release field must be an array.</p>\n","type":"text"},{"key":"meta_inspection_release.*.key","value":null,"description":"<p>The meta inspection release.<em>.key field is required when meta inspection release is present., The meta inspection release.</em>.key field must be a string., The meta inspection release.<em>.key field must be at least 1 characters., The meta inspection release.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_inspection_release.*.value","value":null,"description":"<p>(Nullable), The meta inspection release.<em>.value field must be a string., The meta inspection release.</em>.value field must be at least 1 characters., The meta inspection release.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_ncr","value":null,"description":"<p>(Nullable), The meta ncr field must be an array.</p>\n","type":"text"},{"key":"meta_ncr.*.key","value":null,"description":"<p>The meta ncr.<em>.key field is required when meta ncr is present., The meta ncr.</em>.key field must be a string., The meta ncr.<em>.key field must be at least 1 characters., The meta ncr.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_ncr.*.value","value":null,"description":"<p>(Nullable), The meta ncr.<em>.value field must be a string., The meta ncr.</em>.value field must be at least 1 characters., The meta ncr.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_order_invoice","value":null,"description":"<p>(Nullable), The meta order invoice field must be an array.</p>\n","type":"text"},{"key":"meta_order_invoice.*.key","value":null,"description":"<p>The meta order invoice.<em>.key field is required when meta order invoice is present., The meta order invoice.</em>.key field must be a string., The meta order invoice.<em>.key field must be at least 1 characters., The meta order invoice.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_order_invoice.*.value","value":null,"description":"<p>(Nullable), The meta order invoice.<em>.value field must be a string., The meta order invoice.</em>.value field must be at least 1 characters., The meta order invoice.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"meta_order_expedite","value":null,"description":"<p>(Nullable), The meta order expedite field must be an array.</p>\n","type":"text"},{"key":"meta_order_expedite.*.key","value":null,"description":"<p>The meta order expedite.<em>.key field is required when meta order expedite is present., The meta order expedite.</em>.key field must be a string., The meta order expedite.<em>.key field must be at least 1 characters., The meta order expedite.</em>.key field must not be greater than 30 characters.</p>\n","type":"text"},{"key":"meta_order_expedite.*.value","value":null,"description":"<p>(Nullable), The meta order expedite.<em>.value field must be a string., The meta order expedite.</em>.value field must be at least 1 characters., The meta order expedite.*.value field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"options_assets_tasks","value":null,"description":"<p>(Nullable), The options assets tasks field must be an array.</p>\n","type":"text"},{"key":"options_assets_tasks.*","value":null,"description":"<p>The options assets tasks.* field is required when options assets tasks is present., The options assets tasks.* field must be a string., The options assets tasks.* field must be at least 1 characters., The options assets tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_bids_tasks","value":null,"description":"<p>(Nullable), The options bids tasks field must be an array.</p>\n","type":"text"},{"key":"options_bids_tasks.*","value":null,"description":"<p>The options bids tasks.* field is required when options bids tasks is present., The options bids tasks.* field must be a string., The options bids tasks.* field must be at least 1 characters., The options bids tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_businesses_tasks","value":null,"description":"<p>(Nullable), The options businesses tasks field must be an array.</p>\n","type":"text"},{"key":"options_businesses_tasks.*","value":null,"description":"<p>The options businesses tasks.* field is required when options businesses tasks is present., The options businesses tasks.* field must be a string., The options businesses tasks.* field must be at least 1 characters., The options businesses tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_expedites_tasks","value":null,"description":"<p>(Nullable), The options expedites tasks field must be an array.</p>\n","type":"text"},{"key":"options_expedites_tasks.*","value":null,"description":"<p>The options expedites tasks.* field is required when options expedites tasks is present., The options expedites tasks.* field must be a string., The options expedites tasks.* field must be at least 1 characters., The options expedites tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_offers_tasks","value":null,"description":"<p>(Nullable), The options offers tasks field must be an array.</p>\n","type":"text"},{"key":"options_offers_tasks.*","value":null,"description":"<p>The options offers tasks.* field is required when options offers tasks is present., The options offers tasks.* field must be a string., The options offers tasks.* field must be at least 1 characters., The options offers tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_orders_tasks","value":null,"description":"<p>(Nullable), The options orders tasks field must be an array.</p>\n","type":"text"},{"key":"options_orders_tasks.*","value":null,"description":"<p>The options orders tasks.* field is required when options orders tasks is present., The options orders tasks.* field must be a string., The options orders tasks.* field must be at least 1 characters., The options orders tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_people_tasks","value":null,"description":"<p>(Nullable), The options people tasks field must be an array.</p>\n","type":"text"},{"key":"options_people_tasks.*","value":null,"description":"<p>The options people tasks.* field is required when options people tasks is present., The options people tasks.* field must be a string., The options people tasks.* field must be at least 1 characters., The options people tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_projects_tasks","value":null,"description":"<p>(Nullable), The options projects tasks field must be an array.</p>\n","type":"text"},{"key":"options_projects_tasks.*","value":null,"description":"<p>The options projects tasks.* field is required when options projects tasks is present., The options projects tasks.* field must be a string., The options projects tasks.* field must be at least 1 characters., The options projects tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_requisitions_tasks","value":null,"description":"<p>(Nullable), The options requisitions tasks field must be an array.</p>\n","type":"text"},{"key":"options_requisitions_tasks.*","value":null,"description":"<p>The options requisitions tasks.* field is required when options requisitions tasks is present., The options requisitions tasks.* field must be a string., The options requisitions tasks.* field must be at least 1 characters., The options requisitions tasks.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_fulfillment_strategy","value":null,"description":"<p>(Nullable), The options fulfillment strategy field must be an array.</p>\n","type":"text"},{"key":"options_fulfillment_strategy.*","value":null,"description":"<p>The options fulfillment strategy.* field is required when options fulfillment strategy is present., The options fulfillment strategy.* field must be a string., The options fulfillment strategy.* field must be at least 1 characters., The options fulfillment strategy.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_evaluation_results","value":null,"description":"<p>(Nullable), The options evaluation results field must be an array.</p>\n","type":"text"},{"key":"options_evaluation_results.*","value":null,"description":"<p>The options evaluation results.* field is required when options evaluation results is present., The options evaluation results.* field must be a string., The options evaluation results.* field must be at least 1 characters., The options evaluation results.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"options_business_agreements","value":null,"description":"<p>(Nullable), The options business agreements field must be an array.</p>\n","type":"text"},{"key":"options_business_agreements.*","value":null,"description":"<p>The options business agreements.* field is required when options business agreements is present., The options business agreements.* field must be a string., The options business agreements.* field must be at least 1 characters., The options business agreements.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"sourcing_options","value":null,"description":"<p>(Nullable), The sourcing options field must be an array.</p>\n","type":"text"},{"key":"sourcing_options.*","value":null,"description":"<p>The sourcing options.* field is required when sourcing options is present., The sourcing options.* field must be a string., The sourcing options.* field must be at least 1 characters., The sourcing options.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"default_order_validation_graph_uuid","value":null,"description":"<p>(Nullable), The default order validation graph uuid field must be a valid UUID.</p>\n","type":"text"},{"key":"default_sales_order_validation_graph_uuid","value":null,"description":"<p>(Nullable), The default sales order validation graph uuid field must be a valid UUID.</p>\n","type":"text"},{"key":"default_offer_validation_graph_uuid","value":null,"description":"<p>(Nullable), The default offer validation graph uuid field must be a valid UUID.</p>\n","type":"text"},{"key":"default_bid_validation_graph_uuid","value":null,"description":"<p>(Nullable), The default bid validation graph uuid field must be a valid UUID.</p>\n","type":"text"},{"key":"default_requisition_validation_graph_uuid","value":null,"description":"<p>(Nullable), The default requisition validation graph uuid field must be a valid UUID.</p>\n","type":"text"},{"key":"default_project_validation_graph_uuid","value":null,"description":"<p>(Nullable), The default project validation graph uuid field must be a valid UUID.</p>\n","type":"text"},{"key":"default_catalog_item_validation_graph_uuid","value":null,"description":"<p>(Nullable), The default catalog item validation graph uuid field must be a valid UUID.</p>\n","type":"text"},{"key":"uses_documentation_module","value":null,"description":"<p>(Optional), The uses documentation module field must be true or false.</p>\n","type":"text"},{"key":"uses_sales_module","value":null,"description":"<p>(Optional), The uses sales module field must be true or false.</p>\n","type":"text"},{"key":"document_submission_basis","value":null,"description":"<p>(Optional), (Nullable), The document submission basis field must be an array.</p>\n","type":"text"},{"key":"document_submission_basis.*","value":null,"description":"<p>The document submission basis.* field is required when document submission basis is present., The document submission basis.* field must be a string., The document submission basis.* field must not be greater than 35 characters., The document submission basis.* field must be at least 5 characters., The document submission basis.* field format is invalid.</p>\n","type":"text"},{"key":"document_submission_format","value":null,"description":"<p>(Optional), (Nullable), The document submission format field must be an array.</p>\n","type":"text"},{"key":"document_submission_format.*","value":null,"description":"<p>The document submission format.* field is required when document submission format is present., The document submission format.* field must be a string., The document submission format.* field must not be greater than 35 characters., The document submission format.* field must be at least 5 characters., The document submission format.* field format is invalid.</p>\n","type":"text"},{"key":"document_submission_type","value":null,"description":"<p>(Optional), (Nullable), The document submission type field must be an array.</p>\n","type":"text"},{"key":"document_submission_type.*","value":null,"description":"<p>The document submission type.* field is required when document submission type is present., The document submission type.* field must be a string., The document submission type.* field must not be greater than 35 characters., The document submission type.* field must be at least 5 characters., The document submission type.* field format is invalid.</p>\n","type":"text"},{"key":"document_categories","value":null,"description":"<p>(Nullable), The document categories field must be an array.</p>\n","type":"text"},{"key":"document_categories.*","value":null,"description":"<p>The document categories.* field is required when document categories is present., The document categories.* field must be a string., The document categories.* field must be at least 1 characters., The document categories.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"spec_categories","value":null,"description":"<p>(Nullable), The spec categories field must be an array.</p>\n","type":"text"},{"key":"spec_categories.*","value":null,"description":"<p>The spec categories.* field is required when spec categories is present., The spec categories.* field must be a string., The spec categories.* field must be at least 1 characters., The spec categories.* field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"purchase_order_invoices_must_be_closed","value":null,"description":"<p>(Optional), The purchase order invoices must be closed field must be true or false.</p>\n","type":"text"},{"key":"po_invoice_values_must_be_within_tolerance","value":null,"description":"<p>(Optional), The po invoice values must be within tolerance field must be true or false.</p>\n","type":"text"},{"key":"po_must_not_have_outstanding_receiving","value":null,"description":"<p>(Optional), The po must not have outstanding receiving field must be true or false.</p>\n","type":"text"},{"key":"po_must_not_have_incomplete_releases","value":null,"description":"<p>(Optional), The po must not have incomplete releases field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_open_orders","value":null,"description":"<p>(Optional), The projects must not have open orders field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_open_bids","value":null,"description":"<p>(Optional), The projects must not have open bids field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_open_requisitions","value":null,"description":"<p>(Optional), The projects must not have open requisitions field must be true or false.</p>\n","type":"text"},{"key":"print_area_contract_1","value":null,"description":"<p>(Optional), The print area contract 1 field must be a string., The print area contract 1 field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"print_area_contract_2","value":null,"description":"<p>(Optional), The print area contract 2 field must be a string., The print area contract 2 field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"print_area_contract_3","value":null,"description":"<p>(Optional), The print area contract 3 field must be a string., The print area contract 3 field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"print_area_technical_1","value":null,"description":"<p>(Optional), The print area technical 1 field must be a string., The print area technical 1 field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"print_area_technical_2","value":null,"description":"<p>(Optional), The print area technical 2 field must be a string., The print area technical 2 field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"print_area_technical_3","value":null,"description":"<p>(Optional), The print area technical 3 field must be a string., The print area technical 3 field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"project_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Optional), The project must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_quantity_in_quarantine","value":null,"description":"<p>(Optional), The projects must not have quantity in quarantine field must be true or false.</p>\n","type":"text"},{"key":"projects_must_not_have_inventory","value":null,"description":"<p>(Optional), The projects must not have inventory field must be true or false.</p>\n","type":"text"},{"key":"show_document_requirement_descriptions_on_exports","value":null,"description":"<p>(Optional), The show document requirement descriptions on exports field must be true or false.</p>\n","type":"text"},{"key":"show_purchase_order_revisions_on_exports","value":null,"description":"<p>(Optional), The show purchase order revisions on exports field must be true or false.</p>\n","type":"text"},{"key":"print_client_supplied_on_order_exports","value":null,"description":"<p>(Optional), The print client supplied on order exports field must be true or false.</p>\n","type":"text"},{"key":"uses_group_approvals_module","value":null,"description":"<p>(Optional), The uses group approvals module field must be true or false.</p>\n","type":"text"},{"key":"catalog_item_edit_meta","value":null,"description":"<p>(Optional), The catalog item edit meta field must be true or false.</p>\n","type":"text"},{"key":"bids_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Optional), The bids must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"bid_items_must_be_approved","value":null,"description":"<p>(Optional), The bid items must be approved field must be true or false.</p>\n","type":"text"},{"key":"bid_items_must_be_purchasable","value":null,"description":"<p>(Optional), The bid items must be purchasable field must be true or false.</p>\n","type":"text"},{"key":"offer_items_must_be_approved","value":null,"description":"<p>(Optional), The offer items must be approved field must be true or false.</p>\n","type":"text"},{"key":"offer_items_must_be_purchasable","value":null,"description":"<p>(Optional), The offer items must be purchasable field must be true or false.</p>\n","type":"text"},{"key":"offers_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Optional), The offers must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"order_items_must_be_approved","value":null,"description":"<p>(Optional), The order items must be approved field must be true or false.</p>\n","type":"text"},{"key":"order_items_must_be_purchasable","value":null,"description":"<p>(Optional), The order items must be purchasable field must be true or false.</p>\n","type":"text"},{"key":"order_items_must_have_promise_dates","value":null,"description":"<p>(Optional), The order items must have promise dates field must be true or false.</p>\n","type":"text"},{"key":"order_items_must_have_cost_codes","value":null,"description":"<p>(Optional), The order items must have cost codes field must be true or false.</p>\n","type":"text"},{"key":"transfer_items_must_have_cost_codes","value":null,"description":"<p>(Optional), The transfer items must have cost codes field must be true or false.</p>\n","type":"text"},{"key":"bid_print_incoterms","value":null,"description":"<p>(Optional), The bid print incoterms field must be true or false.</p>\n","type":"text"},{"key":"requisition_items_documentation_required","value":null,"description":"<p>(Optional), The requisition items documentation required field must be true or false.</p>\n","type":"text"},{"key":"bid_items_documentation_required","value":null,"description":"<p>(Optional), The bid items documentation required field must be true or false.</p>\n","type":"text"},{"key":"order_items_documentation_required","value":null,"description":"<p>(Optional), The order items documentation required field must be true or false.</p>\n","type":"text"},{"key":"po_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Optional), The po must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"requisition_has_user_defined_revision","value":null,"description":"<p>(Optional), The requisition has user defined revision field must be true or false.</p>\n","type":"text"},{"key":"requisition_user_defined_revision","value":null,"description":"<p>(Optional), (Nullable), The requisition user defined revision field must be a string., The requisition user defined revision field must be at least 1 characters., The requisition user defined revision field must not be greater than 32 characters.</p>\n","type":"text"},{"key":"requisition_must_not_have_outstanding_key_dates","value":null,"description":"<p>(Optional), The requisition must not have outstanding key dates field must be true or false.</p>\n","type":"text"},{"key":"requisition_items_must_be_purchasable","value":null,"description":"<p>(Optional), The requisition items must be purchasable field must be true or false.</p>\n","type":"text"},{"key":"requisition_items_must_be_approved","value":null,"description":"<p>(Optional), The requisition items must be approved field must be true or false.</p>\n","type":"text"},{"key":"allowed_invoice_overage_tolerance","value":null,"description":"<p>(Nullable), (Optional), The allowed invoice overage tolerance field must be an integer., The allowed invoice overage tolerance field must be at least 0., The allowed invoice overage tolerance field must not be greater than 100.</p>\n","type":"text"},{"key":"allowed_invoice_value_tolerance","value":null,"description":"<p>(Optional), The allowed invoice value tolerance field must be a number., The allowed invoice value tolerance field must be at least 0.</p>\n","type":"text"},{"key":"issue_orders_to_approved_vendors_only","value":null,"description":"<p>(Optional), The issue orders to approved vendors only field must be true or false.</p>\n","type":"text"},{"key":"issue_bids_to_approved_vendors_only","value":null,"description":"<p>(Optional), The issue bids to approved vendors only field must be true or false.</p>\n","type":"text"},{"key":"require_detailed_invoices","value":null,"description":"<p>(Optional), The require detailed invoices field must be true or false.</p>\n","type":"text"},{"key":"show_bid_revisions_on_exports","value":null,"description":"<p>(Optional), The show bid revisions on exports field must be true or false.</p>\n","type":"text"},{"key":"show_required_at_site_date_on_purchase_orders","value":null,"description":"<p>(Optional), The show required at site date on purchase orders field must be true or false.</p>\n","type":"text"},{"key":"show_requisition_budget_on_exports","value":null,"description":"<p>(Optional), The show requisition budget on exports field must be true or false.</p>\n","type":"text"},{"key":"show_requisition_groupings_on_exports","value":null,"description":"<p>(Optional), The show requisition groupings on exports field must be true or false.</p>\n","type":"text"},{"key":"show_requisition_bidders_on_exports","value":null,"description":"<p>(Optional), The show requisition bidders on exports field must be true or false.</p>\n","type":"text"},{"key":"order_cannot_have_incomplete_document_requirements","value":null,"description":"<p>(Optional), The order cannot have incomplete document requirements field must be true or false.</p>\n","type":"text"},{"key":"triggers_line_item_revisions_orders","value":null,"description":"<p>(Nullable), The triggers line item revisions orders field must be an array.</p>\n","type":"text"},{"key":"triggers_line_item_revisions_orders.*","value":null,"description":"<p>The triggers line item revisions orders.* field is required when triggers line item revisions orders is present., The selected triggers line item revisions orders.* is invalid, it must exist in line_number, quantity, unit_price, subtotal, inspection_level, promised_by_date, comment.</p>\n","type":"text"},{"key":"auto_send_bids","value":null,"description":"<p>(Optional), The auto send bids field must be true or false.</p>\n","type":"text"},{"key":"require_purchase_items_on_orders","value":null,"description":"<p>(Optional), The require purchase items on orders field must be true or false.</p>\n","type":"text"},{"key":"uses_jm_module","value":null,"description":"<p>(Optional), The uses jm module field must be true or false.</p>\n","type":"text"},{"key":"uses_osd_module","value":null,"description":"<p>(Optional), The uses osd module field must be true or false.</p>\n","type":"text"},{"key":"osd_overage_threshold","value":null,"description":"<p>(Optional), (Nullable), The osd overage threshold field must be an integer., The osd overage threshold field must be at least 0.</p>\n","type":"text"},{"key":"osd_shortage_threshold","value":null,"description":"<p>(Optional), (Nullable), The osd shortage threshold field must be an integer., The osd shortage threshold field must be at least 0.</p>\n","type":"text"},{"key":"osd_damage_threshold","value":null,"description":"<p>(Optional), (Nullable), The osd damage threshold field must be an integer., The osd damage threshold field must be at least 0.</p>\n","type":"text"},{"key":"uses_smart_dates_module","value":null,"description":"<p>(Optional), The uses smart dates module field must be true or false.</p>\n","type":"text"},{"key":"smart_dates_project","value":null,"description":"<p>(Nullable), The smart dates project field must be an array.</p>\n","type":"text"},{"key":"smart_dates_project.*.sequence","value":null,"description":"<p>The smart dates project.<em>.sequence field is required when smart dates project is present., The smart dates project.</em>.sequence field must be a string., The smart dates project.<em>.sequence field must be at least 1 characters., The smart dates project.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_project.*.description","value":null,"description":"<p>The smart dates project.<em>.description field is required when smart dates project is present., The smart dates project.</em>.description field must be a string., The smart dates project.<em>.description field must be at least 1 characters., The smart dates project.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_project.*.smart_intervals","value":null,"description":"<p>The smart dates project.<em>.smart intervals field is required when smart dates project is present., The smart dates project.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_project.*.smart_intervals.*","value":null,"description":"<p>The smart dates project.<em>.smart intervals.</em> field must be an integer., The smart dates project.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates project.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_requisition","value":null,"description":"<p>(Nullable), The smart dates requisition field must be an array.</p>\n","type":"text"},{"key":"smart_dates_requisition.*.sequence","value":null,"description":"<p>The smart dates requisition.<em>.sequence field is required when smart dates requisition is present., The smart dates requisition.</em>.sequence field must be a string., The smart dates requisition.<em>.sequence field must be at least 1 characters., The smart dates requisition.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_requisition.*.description","value":null,"description":"<p>The smart dates requisition.<em>.description field is required when smart dates requisition is present., The smart dates requisition.</em>.description field must be a string., The smart dates requisition.<em>.description field must be at least 1 characters., The smart dates requisition.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_requisition.*.smart_intervals","value":null,"description":"<p>The smart dates requisition.<em>.smart intervals field is required when smart dates requisition is present., The smart dates requisition.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_requisition.*.smart_intervals.*","value":null,"description":"<p>The smart dates requisition.<em>.smart intervals.</em> field must be an integer., The smart dates requisition.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates requisition.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_bid","value":null,"description":"<p>(Nullable), The smart dates bid field must be an array.</p>\n","type":"text"},{"key":"smart_dates_bid.*.sequence","value":null,"description":"<p>The smart dates bid.<em>.sequence field is required when smart dates bid is present., The smart dates bid.</em>.sequence field must be a string., The smart dates bid.<em>.sequence field must be at least 1 characters., The smart dates bid.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_bid.*.description","value":null,"description":"<p>The smart dates bid.<em>.description field is required when smart dates bid is present., The smart dates bid.</em>.description field must be a string., The smart dates bid.<em>.description field must be at least 1 characters., The smart dates bid.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_bid.*.smart_intervals","value":null,"description":"<p>The smart dates bid.<em>.smart intervals field is required when smart dates bid is present., The smart dates bid.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_bid.*.smart_intervals.*","value":null,"description":"<p>The smart dates bid.<em>.smart intervals.</em> field must be an integer., The smart dates bid.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates bid.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_offer","value":null,"description":"<p>(Nullable), The smart dates offer field must be an array.</p>\n","type":"text"},{"key":"smart_dates_offer.*.sequence","value":null,"description":"<p>The smart dates offer.<em>.sequence field is required when smart dates offer is present., The smart dates offer.</em>.sequence field must be a string., The smart dates offer.<em>.sequence field must be at least 1 characters., The smart dates offer.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_offer.*.description","value":null,"description":"<p>The smart dates offer.<em>.description field is required when smart dates offer is present., The smart dates offer.</em>.description field must be a string., The smart dates offer.<em>.description field must be at least 1 characters., The smart dates offer.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_offer.*.smart_intervals","value":null,"description":"<p>The smart dates offer.<em>.smart intervals field is required when smart dates offer is present., The smart dates offer.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_offer.*.smart_intervals.*","value":null,"description":"<p>The smart dates offer.<em>.smart intervals.</em> field must be an integer., The smart dates offer.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates offer.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_order","value":null,"description":"<p>(Nullable), The smart dates order field must be an array.</p>\n","type":"text"},{"key":"smart_dates_order.*.sequence","value":null,"description":"<p>The smart dates order.<em>.sequence field is required when smart dates order is present., The smart dates order.</em>.sequence field must be a string., The smart dates order.<em>.sequence field must be at least 1 characters., The smart dates order.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_order.*.description","value":null,"description":"<p>The smart dates order.<em>.description field is required when smart dates order is present., The smart dates order.</em>.description field must be a string., The smart dates order.<em>.description field must be at least 1 characters., The smart dates order.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_order.*.smart_intervals","value":null,"description":"<p>The smart dates order.<em>.smart intervals field is required when smart dates order is present., The smart dates order.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_order.*.smart_intervals.*","value":null,"description":"<p>The smart dates order.<em>.smart intervals.</em> field must be an integer., The smart dates order.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates order.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"},{"key":"smart_dates_expedite","value":null,"description":"<p>(Nullable), The smart dates expedite field must be an array.</p>\n","type":"text"},{"key":"smart_dates_expedite.*.sequence","value":null,"description":"<p>The smart dates expedite.<em>.sequence field is required when smart dates expedite is present., The smart dates expedite.</em>.sequence field must be a string., The smart dates expedite.<em>.sequence field must be at least 1 characters., The smart dates expedite.</em>.sequence field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"smart_dates_expedite.*.description","value":null,"description":"<p>The smart dates expedite.<em>.description field is required when smart dates expedite is present., The smart dates expedite.</em>.description field must be a string., The smart dates expedite.<em>.description field must be at least 1 characters., The smart dates expedite.</em>.description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"smart_dates_expedite.*.smart_intervals","value":null,"description":"<p>The smart dates expedite.<em>.smart intervals field is required when smart dates expedite is present., The smart dates expedite.</em>.smart intervals field must be an array.</p>\n","type":"text"},{"key":"smart_dates_expedite.*.smart_intervals.*","value":null,"description":"<p>The smart dates expedite.<em>.smart intervals.</em> field must be an integer., The smart dates expedite.<em>.smart intervals.</em> field must be at least 0 characters., The smart dates expedite.<em>.smart intervals.</em> field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teamconfig","description":"<p>Update the specified <code>TeamCustomization</code> .</p>\n","urlObject":{"path":["api","v1","teamconfig"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d1f35e5-f00d-4d42-ad34-5292d1f668ff"}],"id":"e4341bf9-c4da-4353-8e4d-b9a9475551a5","_postman_id":"e4341bf9-c4da-4353-8e4d-b9a9475551a5","description":""},{"name":"History Index","item":[{"name":"api/v1/teamhistory/{days}","id":"b2a3e53a-f957-4786-aa87-42efc064e4dc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/teamhistory/:days","description":"<p>Get the team history quickly.</p>\n","urlObject":{"path":["api","v1","teamhistory",":days"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"days"}]}},"response":[],"_postman_id":"b2a3e53a-f957-4786-aa87-42efc064e4dc"}],"id":"73efe2ac-13e9-4d92-be7b-c601053f9d7b","_postman_id":"73efe2ac-13e9-4d92-be7b-c601053f9d7b","description":""},{"name":"Index","item":[{"name":"api/v1/teams","id":"2d419b38-6980-44ea-a594-f18af6b32d9d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/teams","description":"<p>Returns a list of multiple <code>Team</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","teams"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d419b38-6980-44ea-a594-f18af6b32d9d"}],"id":"cb46a83d-4da2-4785-b0af-0565d8836999","_postman_id":"cb46a83d-4da2-4785-b0af-0565d8836999","description":""},{"name":"Reassign User Tasks","item":[{"name":"api/v1/teams/reassign_tasks","id":"ae2d8a45-5f40-4f96-b146-05bd293ebdc0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"new_user_id","value":null,"description":"<p>The new user id field is required., The new user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teams/reassign_tasks","description":"<p>Reassigns the open <code>Tasks</code> from one <code>User</code> to another <code>User</code> within the context of the current <code>Team</code>.</p>\n","urlObject":{"path":["api","v1","teams","reassign_tasks"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae2d8a45-5f40-4f96-b146-05bd293ebdc0"}],"id":"37420a56-4a65-4fe8-b91d-cd3176d0fdf4","_postman_id":"37420a56-4a65-4fe8-b91d-cd3176d0fdf4","description":""},{"name":"Roles Add","item":[{"name":"api/v1/team_roles/add","id":"6254c034-76ff-43bc-94c6-6726809b8602","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"role","value":null,"description":"<p>The role field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/team_roles/add","description":"<p>Attaches <code>User</code> to <code>Role</code> within Scope of a <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","team_roles","add"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6254c034-76ff-43bc-94c6-6726809b8602"}],"id":"0813d7fb-a777-46be-87c6-71f678fea623","_postman_id":"0813d7fb-a777-46be-87c6-71f678fea623","description":""},{"name":"Roles Options","item":[{"name":"api/v1/team_roles/options/{team}","id":"a36df8ea-3ed4-4485-88c0-3b26bd6795a3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/team_roles/options/:team","description":"<p>Provides list of <code>Roles</code> available within <code>Team</code>.</p>\n","urlObject":{"path":["api","v1","team_roles","options",":team"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"team"}]}},"response":[],"_postman_id":"a36df8ea-3ed4-4485-88c0-3b26bd6795a3"}],"id":"9b3fd8b2-8894-4999-85b9-61566b246cf8","_postman_id":"9b3fd8b2-8894-4999-85b9-61566b246cf8","description":""},{"name":"Roles Options Permissions","item":[{"name":"api/v1/team_roles/options/{team}/permissions","id":"e433adec-6a7e-4396-a833-12fa8a691112","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/team_roles/options/:team/permissions","description":"<p>Provides list of <code>Roles</code> available within <code>Team</code> and appends <code>Permissions</code> associated with each.</p>\n","urlObject":{"path":["api","v1","team_roles","options",":team","permissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"team"}]}},"response":[],"_postman_id":"e433adec-6a7e-4396-a833-12fa8a691112"}],"id":"0180df1f-69c8-46a6-933a-cab0b4cd733a","_postman_id":"0180df1f-69c8-46a6-933a-cab0b4cd733a","description":""},{"name":"Roles Remove","item":[{"name":"api/v1/team_roles/remove","id":"fb0feef7-6816-4611-809e-50c30146156f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"role","value":null,"description":"<p>The role field is required.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/team_roles/remove","description":"<p>Detaches <code>User</code> from <code>Role</code> within Scope of a <code>Team</code>.</p>\n","urlObject":{"path":["api","v1","team_roles","remove"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb0feef7-6816-4611-809e-50c30146156f"}],"id":"5303e767-0347-455b-858c-da2a5b8899b7","_postman_id":"5303e767-0347-455b-858c-da2a5b8899b7","description":""},{"name":"Show","item":[{"name":"api/v1/teams/{id}","id":"809b9803-8c83-4c1e-a07c-1b8acb3a57c6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/teams/:id","description":"<p>Display the specified <code>Team</code>.</p>\n","urlObject":{"path":["api","v1","teams",":id"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"id"}]}},"response":[],"_postman_id":"809b9803-8c83-4c1e-a07c-1b8acb3a57c6"}],"id":"3e150be8-e13a-4d2d-aa0b-d6d6de9efbe3","_postman_id":"3e150be8-e13a-4d2d-aa0b-d6d6de9efbe3","description":""},{"name":"Store","item":[{"name":"api/v1/teams","id":"8d66cc3d-96b8-4737-881b-921a7e9c1039","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"owner_id","value":null,"description":"<p>The owner id field is required., The owner id field must be an integer.</p>\n","type":"text"},{"key":"photo_url","value":null,"description":"<p>(Nullable), The photo url field must be a string., The photo url field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"slug","value":null,"description":"<p>(Nullable), The slug field must be a string., The slug field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Nullable), The timezone field must be a string., The timezone field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teams","description":"<p>Create a new <code>Team</code> object.</p>\n","urlObject":{"path":["api","v1","teams"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d66cc3d-96b8-4737-881b-921a7e9c1039"}],"id":"0e5b05e4-a8a9-4a4e-8d2b-51bcddc5e6c1","_postman_id":"0e5b05e4-a8a9-4a4e-8d2b-51bcddc5e6c1","description":""},{"name":"Sync Custom Permissions","item":[{"name":"api/v1/team_roles/sync_permissions","id":"ba428cf7-0feb-4995-b926-45e8e9f670c4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"permission_names","value":null,"description":"<p>(Nullable), The permission names field must be an array.</p>\n","type":"text"},{"key":"permission_names.*","value":null,"description":"<p>(Nullable), The permission names.* field must be a string., The permission names.* field must not be greater than 255 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/team_roles/sync_permissions","description":"<p>Synchronizes an array of <code>Permissions</code> to the <code>User</code> in the context of the current <code>Team</code>.</p>\n","urlObject":{"path":["api","v1","team_roles","sync_permissions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba428cf7-0feb-4995-b926-45e8e9f670c4"}],"id":"2600936c-871f-4f46-9738-f01c6f4d9599","_postman_id":"2600936c-871f-4f46-9738-f01c6f4d9599","description":""},{"name":"Update","item":[{"name":"api/v1/teams/{id}","id":"fbeebb5d-bf28-40bc-9fc9-f35cd769f62a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"owner_id","value":null,"description":"<p>(Optional), The owner id field must be an integer.</p>\n","type":"text"},{"key":"photo_url","value":null,"description":"<p>(Optional), (Nullable), The photo url field must be a string., The photo url field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Optional), (Nullable), The timezone field must be a string., The timezone field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teams/:id","description":"<p>Update the specified <code>Team</code> .</p>\n","urlObject":{"path":["api","v1","teams",":id"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"id"}]}},"response":[],"_postman_id":"fbeebb5d-bf28-40bc-9fc9-f35cd769f62a"},{"name":"api/v1/teams/{id}","id":"9ccca943-a031-46b0-846c-d69834263c5b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"owner_id","value":null,"description":"<p>(Optional), The owner id field must be an integer.</p>\n","type":"text"},{"key":"photo_url","value":null,"description":"<p>(Optional), (Nullable), The photo url field must be a string., The photo url field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"timezone","value":null,"description":"<p>(Optional), (Nullable), The timezone field must be a string., The timezone field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teams/:id","description":"<p>Update the specified <code>Team</code> .</p>\n","urlObject":{"path":["api","v1","teams",":id"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"id"}]}},"response":[],"_postman_id":"9ccca943-a031-46b0-846c-d69834263c5b"}],"id":"4b33aa83-eb7d-483f-9257-a0fe54dc727e","_postman_id":"4b33aa83-eb7d-483f-9257-a0fe54dc727e","description":""},{"name":"Update Avatar","item":[{"name":"api/v1/teams/imageupload","id":"b740a739-5c55-4f6c-bce4-472ad5322619","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"image","value":null,"description":"<p>The image field is required., The image field must be a file of type: jpg, jpeg, bmp, png, gif., The image field must not be greater than 200 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teams/imageupload","description":"<p>Handles the upload of a <code>Team</code> Avatar, the provided url can be used to update the <code>Team</code> object via a secondary request.</p>\n","urlObject":{"path":["api","v1","teams","imageupload"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b740a739-5c55-4f6c-bce4-472ad5322619"}],"id":"97338216-e951-430f-8e63-abaf131b5669","_postman_id":"97338216-e951-430f-8e63-abaf131b5669","description":""},{"name":"User Add","item":[{"name":"api/v1/teams/{team}/adduser","id":"da1b0303-d227-4768-a290-2824301321eb","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teams/:team/adduser","description":"<p>Adds a <code>Enterprise</code> <code>User</code> to a <code>Team</code>. Requires sufficient permissions: Team Administrator.</p>\n","urlObject":{"path":["api","v1","teams",":team","adduser"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"team"}]}},"response":[],"_postman_id":"da1b0303-d227-4768-a290-2824301321eb"}],"id":"1e4ecbf1-f3dc-49cc-8e65-9cb250f862c6","_postman_id":"1e4ecbf1-f3dc-49cc-8e65-9cb250f862c6","description":""},{"name":"User Add To Projects","item":[{"name":"api/v1/teams/addusertoprojects","id":"4c5cf529-9ae0-43c7-ac62-3656de131ab0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"projects","value":null,"description":"<p>The projects field is required., The projects field must be an array.</p>\n","type":"text"},{"key":"projects.*","value":null,"description":"<p>The projects.* field is required., The projects.* field must be an integer.</p>\n","type":"text"},{"key":"roles","value":null,"description":"<p>The roles field is required., The roles field must be an array.</p>\n","type":"text"},{"key":"roles.*","value":null,"description":"<p>The roles.* field is required., The roles.* field must be a string.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teams/addusertoprojects","description":"<p>Streamlined process for adding one or many <code>Roles</code> to one or many <code>Projects</code> within a single <code>Team</code>.</p>\n","urlObject":{"path":["api","v1","teams","addusertoprojects"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c5cf529-9ae0-43c7-ac62-3656de131ab0"}],"id":"ec87705c-c7db-458b-b864-24ac7f94bb20","_postman_id":"ec87705c-c7db-458b-b864-24ac7f94bb20","description":""},{"name":"User Remove","item":[{"name":"api/v1/teams/{team}/removeuser","id":"8b62ce1f-53a1-4dec-a0d5-0c817baa8d60","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/teams/:team/removeuser","description":"<p>Removes a <code>Enterprise</code> <code>User</code> to a <code>Team</code>. Requires sufficient permissions: Team Administrator.</p>\n","urlObject":{"path":["api","v1","teams",":team","removeuser"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"team"}]}},"response":[],"_postman_id":"8b62ce1f-53a1-4dec-a0d5-0c817baa8d60"}],"id":"690b0b9c-fde5-4464-a12c-40d15d2928a6","_postman_id":"690b0b9c-fde5-4464-a12c-40d15d2928a6","description":""}],"id":"45893e15-36d9-4cc9-b3ad-4d58b61e35e0","description":"<p>Within the application, all data is segregated within the context of a <code>Team</code>.</p>\n<p><code>Enterprises</code> can have multiple <code>Teams</code>.  </p>\n<p>Note the creation of <code>Teams</code> is limited by licensing and the system will disallow certain actions based on the <code>Enterprise</code>'s licensing.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> description</code>,<code> name</code>,<code> owner_id</code>,<code> photo_url</code>,<code> slug</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>activeUsers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachables</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>attachments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>businessGroups</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>businesses</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>locationTypes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>offers</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderableLocations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>owner</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>people</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>peopleBusinessGroups</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectRollups</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>stateHistories</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>teamCustomizations</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>termTypes</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>users</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validationGraphs</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"45893e15-36d9-4cc9-b3ad-4d58b61e35e0"},{"name":"Term Types","item":[{"name":"Destroy","item":[{"name":"api/v1/term_types/{term_type}","id":"a3150b0e-fcdc-4efc-8bf6-e890c8b90029","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/term_types/:term_type","description":"<p>Remove the specified <code>TermType</code> from storage.</p>\n","urlObject":{"path":["api","v1","term_types",":term_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"term_type"}]}},"response":[],"_postman_id":"a3150b0e-fcdc-4efc-8bf6-e890c8b90029"}],"id":"cf473899-7dfb-4f75-93bf-ad0a67dcf36c","_postman_id":"cf473899-7dfb-4f75-93bf-ad0a67dcf36c","description":""},{"name":"Index","item":[{"name":"api/v1/term_types","id":"262975f1-8cce-47a4-b07e-6772119eb1d4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/term_types","description":"<p>Returns a list of multiple <code>TermType</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","term_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"262975f1-8cce-47a4-b07e-6772119eb1d4"}],"id":"f9239a4c-6d74-4515-ac8a-e3bcedb36a04","_postman_id":"f9239a4c-6d74-4515-ac8a-e3bcedb36a04","description":""},{"name":"Show","item":[{"name":"api/v1/term_types/{term_type}","id":"9b1e37cd-37c3-4d30-ad9a-676cff365acc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/term_types/:term_type","description":"<p>Display the specified <code>TermType</code>.</p>\n","urlObject":{"path":["api","v1","term_types",":term_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"term_type"}]}},"response":[],"_postman_id":"9b1e37cd-37c3-4d30-ad9a-676cff365acc"}],"id":"0ab55f63-75d8-49f8-a1be-167f6359193d","_postman_id":"0ab55f63-75d8-49f8-a1be-167f6359193d","description":""},{"name":"Store","item":[{"name":"api/v1/term_types","id":"70659b68-4054-45c4-994a-e08128706bee","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"long_description","value":null,"description":"<p>(Nullable), The long description field must be a string., The long description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"display_order","value":null,"description":"<p>The display order field must be an integer.</p>\n","type":"text"},{"key":"short_description","value":null,"description":"<p>(Nullable), The short description field must be a string., The short description field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The selected type is invalid, it must exist in technical, contract.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/term_types","description":"<p>Create a new <code>TermType</code> object.</p>\n","urlObject":{"path":["api","v1","term_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"70659b68-4054-45c4-994a-e08128706bee"}],"id":"c2756615-ac0b-4696-8017-4f7b4acaa4d9","_postman_id":"c2756615-ac0b-4696-8017-4f7b4acaa4d9","description":""},{"name":"Update","item":[{"name":"api/v1/term_types/{term_type}","id":"469b9291-e1a0-4518-8dd3-1b05f518dbb5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"long_description","value":null,"description":"<p>(Nullable), The long description field must be a string., The long description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"display_order","value":null,"description":"<p>The display order field must be an integer.</p>\n","type":"text"},{"key":"short_description","value":null,"description":"<p>(Nullable), The short description field must be a string., The short description field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The selected type is invalid, it must exist in technical, contract.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/term_types/:term_type","description":"<p>Update the specified <code>TermType</code> .</p>\n","urlObject":{"path":["api","v1","term_types",":term_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"term_type"}]}},"response":[],"_postman_id":"469b9291-e1a0-4518-8dd3-1b05f518dbb5"},{"name":"api/v1/term_types/{term_type}","id":"00cd6b8e-5667-4d12-8805-c6cb8726454d","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"long_description","value":null,"description":"<p>(Nullable), The long description field must be a string., The long description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"display_order","value":null,"description":"<p>The display order field must be an integer.</p>\n","type":"text"},{"key":"short_description","value":null,"description":"<p>(Nullable), The short description field must be a string., The short description field must not be greater than 50 characters.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The selected type is invalid, it must exist in technical, contract.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/term_types/:term_type","description":"<p>Update the specified <code>TermType</code> .</p>\n","urlObject":{"path":["api","v1","term_types",":term_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"term_type"}]}},"response":[],"_postman_id":"00cd6b8e-5667-4d12-8805-c6cb8726454d"}],"id":"af9b61fc-acb6-4ac7-b5d2-013d48a029d7","_postman_id":"af9b61fc-acb6-4ac7-b5d2-013d48a029d7","description":""}],"id":"e18374cc-4a3e-4696-a10a-5917cdab618e","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> display_order</code>,<code> long_description</code>,<code> short_description</code>,<code> team_id</code>,<code> type</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>terms</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e18374cc-4a3e-4696-a10a-5917cdab618e"},{"name":"Termables","item":[{"name":"Bulk Delete","item":[{"name":"api/v1/bulk_termables","id":"c2752839-bc7d-4d91-a697-572e52e4edff","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_termables","description":"<p>Destroy multiple <code>Termable</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_termables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"c2752839-bc7d-4d91-a697-572e52e4edff"}],"id":"d7d4157f-ad56-4a85-893a-92bb750d4371","_postman_id":"d7d4157f-ad56-4a85-893a-92bb750d4371","description":""},{"name":"Bulk Store","item":[{"name":"api/v1/bulk_termables","id":"b8a91d77-1c47-4e36-b185-b89cb05acc2a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*.termable_type","value":null,"description":"<p>The data.<em>.termable type field is required., The data.</em>.termable type field must be a string., The selected data.*.termable type is invalid, it must exist in Order, Bid, Requisition, SalesOrder.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_termables","description":"<p>Store multiple <code>Termable</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_termables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8a91d77-1c47-4e36-b185-b89cb05acc2a"}],"id":"2d97677a-1c23-4f13-a311-35e7bfba2aef","_postman_id":"2d97677a-1c23-4f13-a311-35e7bfba2aef","description":""},{"name":"Bulk Update","item":[{"name":"api/v1/bulk_termables","id":"92f71658-c849-4736-815f-799dd92f146c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"data","value":null,"description":"<p>The data field is required., The data field must be an array.</p>\n","type":"text"},{"key":"data.*.termable_type","value":null,"description":"<p>The data.<em>.termable type field is required., The data.</em>.termable type field must be a string., The selected data.*.termable type is invalid, it must exist in Order, Bid, Requisition, SalesOrder.</p>\n","type":"text"},{"key":"data.*.id","value":null,"description":"<p>The data.<em>.id field is required., The data.</em>.id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/bulk_termables","description":"<p>Update multiple <code>Termable</code> objects.</p>\n","urlObject":{"path":["api","v1","bulk_termables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"92f71658-c849-4736-815f-799dd92f146c"}],"id":"939e75f4-031e-4a52-ba41-5e4b6a12d244","_postman_id":"939e75f4-031e-4a52-ba41-5e4b6a12d244","description":""},{"name":"Destroy","item":[{"name":"api/v1/termables/{termable}","id":"85c209c4-70f3-4acc-afa8-14dfe22c00c8","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/termables/:termable","description":"<p>Remove the specified <code>Termable</code> from storage.</p>\n","urlObject":{"path":["api","v1","termables",":termable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"termable"}]}},"response":[],"_postman_id":"85c209c4-70f3-4acc-afa8-14dfe22c00c8"}],"id":"5ae69798-87fe-4116-ad9d-aab1eb2fd31f","_postman_id":"5ae69798-87fe-4116-ad9d-aab1eb2fd31f","description":""},{"name":"Index","item":[{"name":"api/v1/termables","id":"0df9cf63-6eb2-48dd-ba7b-f47cab134c2c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/termables","description":"<p>Returns a list of multiple <code>Termable</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","termables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"0df9cf63-6eb2-48dd-ba7b-f47cab134c2c"}],"id":"124d82e0-d626-40e3-b5db-5413def33cf3","_postman_id":"124d82e0-d626-40e3-b5db-5413def33cf3","description":""},{"name":"Show","item":[{"name":"api/v1/termables/{termable}","id":"245adf2c-0bbd-46a6-a0ea-87699baa862c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/termables/:termable","description":"<p>Display the specified <code>Termable</code>.</p>\n","urlObject":{"path":["api","v1","termables",":termable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"termable"}]}},"response":[],"_postman_id":"245adf2c-0bbd-46a6-a0ea-87699baa862c"}],"id":"1ef3ee10-6f66-404c-b177-cdb0cd15a22f","_postman_id":"1ef3ee10-6f66-404c-b177-cdb0cd15a22f","description":""},{"name":"Store","item":[{"name":"api/v1/termables","id":"a73c7d05-200d-48b8-95ee-ec3c61be48db","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"has_page_break_before","value":null,"description":"<p>(Nullable), The has page break before field must be true or false.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>The order field must be an integer., The order field must be at least 0., The order field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"print_area","value":null,"description":"<p>(Optional), The print area field must be an integer., The print area field must be at least 1., The print area field must not be greater than 3.</p>\n","type":"text"},{"key":"term_id","value":null,"description":"<p>(Nullable), The term id field must be an integer.</p>\n","type":"text"},{"key":"term_text","value":null,"description":"<p>The term text field must be a string., The term text field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"termable_id","value":null,"description":"<p>(Nullable), The termable id field must be an integer., The termable id field must be at least 0., The termable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"termable_type","value":null,"description":"<p>The termable type field is required., The termable type field must be a string., The termable type field must not be greater than 45 characters., The selected termable type is invalid, it must exist in Order, Bid, Requisition.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>The title field is required., The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The selected type is invalid, it must exist in technical, contract.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/termables","description":"<p>Create a new <code>Termable</code> object.</p>\n","urlObject":{"path":["api","v1","termables"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a73c7d05-200d-48b8-95ee-ec3c61be48db"}],"id":"d490addd-e99d-4196-86f3-a08e4d81a417","_postman_id":"d490addd-e99d-4196-86f3-a08e4d81a417","description":""},{"name":"Update","item":[{"name":"api/v1/termables/{termable}","id":"e535236d-948d-429c-a385-e5f9a156f103","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"has_page_break_before","value":null,"description":"<p>(Nullable), The has page break before field must be true or false.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>The order field must be an integer., The order field must be at least 0., The order field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"print_area","value":null,"description":"<p>(Optional), The print area field must be an integer., The print area field must be at least 1., The print area field must not be greater than 3.</p>\n","type":"text"},{"key":"term_id","value":null,"description":"<p>The term id field must be an integer., The term id field must be at least 0.</p>\n","type":"text"},{"key":"term_text","value":null,"description":"<p>The term text field must be a string., The term text field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"termable_id","value":null,"description":"<p>The termable id field must be an integer., The termable id field must be at least 0., The termable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"termable_type","value":null,"description":"<p>The termable type field must be a string., The termable type field must not be greater than 45 characters., The selected termable type is invalid, it must exist in Order, Bid, Requisition.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The selected type is invalid, it must exist in technical, contract.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/termables/:termable","description":"<p>Update the specified <code>Termable</code> .</p>\n","urlObject":{"path":["api","v1","termables",":termable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"termable"}]}},"response":[],"_postman_id":"e535236d-948d-429c-a385-e5f9a156f103"},{"name":"api/v1/termables/{termable}","id":"2ac480d2-b0dc-4b16-a9f0-269a88d8b47c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"has_page_break_before","value":null,"description":"<p>(Nullable), The has page break before field must be true or false.</p>\n","type":"text"},{"key":"order","value":null,"description":"<p>The order field must be an integer., The order field must be at least 0., The order field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"print_area","value":null,"description":"<p>(Optional), The print area field must be an integer., The print area field must be at least 1., The print area field must not be greater than 3.</p>\n","type":"text"},{"key":"term_id","value":null,"description":"<p>The term id field must be an integer., The term id field must be at least 0.</p>\n","type":"text"},{"key":"term_text","value":null,"description":"<p>The term text field must be a string., The term text field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"termable_id","value":null,"description":"<p>The termable id field must be an integer., The termable id field must be at least 0., The termable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"termable_type","value":null,"description":"<p>The termable type field must be a string., The termable type field must not be greater than 45 characters., The selected termable type is invalid, it must exist in Order, Bid, Requisition.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"type","value":null,"description":"<p>(Optional), The selected type is invalid, it must exist in technical, contract.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/termables/:termable","description":"<p>Update the specified <code>Termable</code> .</p>\n","urlObject":{"path":["api","v1","termables",":termable"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"termable"}]}},"response":[],"_postman_id":"2ac480d2-b0dc-4b16-a9f0-269a88d8b47c"}],"id":"9479fbff-a908-4f8f-b6b3-61075a6764c2","_postman_id":"9479fbff-a908-4f8f-b6b3-61075a6764c2","description":""}],"id":"08020112-c4cc-400c-a6d3-25f8bc54b4c8","description":"<p>A <code>Termable</code> links an entity, such as a <code>Bid</code>, <code>PurchaseOrder</code>, or <code>Requisition</code> with a <code>Term</code>.</p>\n<p> As the <code>Termable</code> is the implementation of a <code>Term</code> in a specific context, the text of the <code>term</code> can be modified to customize the specific implementation.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> print_area</code>,<code> team_id</code>,<code> term_id</code>,<code> termable_id</code>,<code> termable_type</code>,<code> type</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>term</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>termable</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"08020112-c4cc-400c-a6d3-25f8bc54b4c8"},{"name":"Terms","item":[{"name":"Destroy","item":[{"name":"api/v1/terms/{term}","id":"5c287f8b-8017-422c-a3c9-312e08272590","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/terms/:term","description":"<p>Remove the specified <code>Term</code> from storage.</p>\n","urlObject":{"path":["api","v1","terms",":term"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"term"}]}},"response":[],"_postman_id":"5c287f8b-8017-422c-a3c9-312e08272590"}],"id":"91806593-fe6c-431c-97cd-5f5278d8fd74","_postman_id":"91806593-fe6c-431c-97cd-5f5278d8fd74","description":""},{"name":"Index","item":[{"name":"api/v1/terms","id":"23f8b744-c300-4f13-9645-f759c591a1bc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/terms","description":"<p>Returns a list of multiple <code>Term</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","terms"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"23f8b744-c300-4f13-9645-f759c591a1bc"}],"id":"15c6d3f3-109a-4aa1-93ea-f1c868054451","_postman_id":"15c6d3f3-109a-4aa1-93ea-f1c868054451","description":""},{"name":"Show","item":[{"name":"api/v1/terms/{term}","id":"66778ad3-c634-47db-b78e-da8aabba79e9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/terms/:term","description":"<p>Display the specified <code>Term</code>.</p>\n","urlObject":{"path":["api","v1","terms",":term"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"term"}]}},"response":[],"_postman_id":"66778ad3-c634-47db-b78e-da8aabba79e9"}],"id":"cb427c19-79ba-447b-900b-dbbaa614dfe2","_postman_id":"cb427c19-79ba-447b-900b-dbbaa614dfe2","description":""},{"name":"Store","item":[{"name":"api/v1/terms","id":"2e55d311-c5cc-4bf7-a54d-83e983519f7a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>The is active field is required., The is active field must be true or false.</p>\n","type":"text"},{"key":"is_approved","value":null,"description":"<p>The is approved field is required., The is approved field must be true or false.</p>\n","type":"text"},{"key":"term","value":null,"description":"<p>(Nullable), The term field must be a string., The term field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>The title field is required., The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"term_type_id","value":null,"description":"<p>The term type id field is required., The term type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/terms","description":"<p>Create a new <code>Term</code> object.</p>\n","urlObject":{"path":["api","v1","terms"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e55d311-c5cc-4bf7-a54d-83e983519f7a"}],"id":"2f6c6295-b8da-47a9-8849-9b13549a1b74","_postman_id":"2f6c6295-b8da-47a9-8849-9b13549a1b74","description":""},{"name":"Update","item":[{"name":"api/v1/terms/{term}","id":"d195865e-562b-4ccd-8759-c784cd8b3006","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_approved","value":null,"description":"<p>(Optional), The is approved field must be true or false.</p>\n","type":"text"},{"key":"term","value":null,"description":"<p>(Optional), (Nullable), The term field must be a string., The term field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Optional), The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"term_type_id","value":null,"description":"<p>(Optional), The term type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/terms/:term","description":"<p>Update the specified <code>Term</code> .</p>\n","urlObject":{"path":["api","v1","terms",":term"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"term"}]}},"response":[],"_postman_id":"d195865e-562b-4ccd-8759-c784cd8b3006"},{"name":"api/v1/terms/{term}","id":"56716946-b02b-4c3e-9df1-2ca508b7d9dc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"is_approved","value":null,"description":"<p>(Optional), The is approved field must be true or false.</p>\n","type":"text"},{"key":"term","value":null,"description":"<p>(Optional), (Nullable), The term field must be a string., The term field must not be greater than 65535 characters.</p>\n","type":"text"},{"key":"title","value":null,"description":"<p>(Optional), The title field must be a string., The title field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"term_type_id","value":null,"description":"<p>(Optional), The term type id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/terms/:term","description":"<p>Update the specified <code>Term</code> .</p>\n","urlObject":{"path":["api","v1","terms",":term"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"term"}]}},"response":[],"_postman_id":"56716946-b02b-4c3e-9df1-2ca508b7d9dc"}],"id":"5a787735-389d-4cc1-8dc0-3ab0a25d13c1","_postman_id":"5a787735-389d-4cc1-8dc0-3ab0a25d13c1","description":""}],"id":"17c7197a-8608-45a6-b09e-9b949e5b0567","description":"<p><code>Terms</code> help the user to quickly compose <code>Contract Conditions</code>,  and <code>Technical Notes</code> within the context of various transactions by defining term libraries.</p>\n<p><code>Terms</code> represent the template version, and not the implementation, to define a specific implementation the application utilizes the <code>Termables</code> entity.</p>\n<p><code>Terms</code> of the type <code>technical</code> are used to populate the <code>Technical Notes</code> library, and those of the type <code>contract</code> are used to populate the <code>Contact Conditions</code> library.</p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> is_active</code>,<code> is_approved</code>,<code> team_id</code>,<code> term</code>,<code> term_type_id</code>,<code> title</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>termType</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>termable</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"17c7197a-8608-45a6-b09e-9b949e5b0567"},{"name":"Tokens","item":[{"name":"Create Token","item":[{"name":"api/v1/tokens","id":"f0ec2036-f760-408e-918b-b4f310fc818a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tokens","description":"<p>Create a new API token for the user.</p>\n","urlObject":{"path":["api","v1","tokens"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0ec2036-f760-408e-918b-b4f310fc818a"}],"id":"0659b4a8-1108-4b52-bacb-6af3caf60ee7","_postman_id":"0659b4a8-1108-4b52-bacb-6af3caf60ee7","description":""},{"name":"Delete Token","item":[{"name":"api/v1/tokens/delete/{token_id}","id":"9f7345da-3c9e-4b77-a2df-4ce094999b31","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tokens/delete/:token_id","description":"<p>Delete the given token.</p>\n","urlObject":{"path":["api","v1","tokens","delete",":token_id"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"token_id"}]}},"response":[],"_postman_id":"9f7345da-3c9e-4b77-a2df-4ce094999b31"}],"id":"91fe7fcf-a850-4fff-aada-0e2fcf4e216e","_postman_id":"91fe7fcf-a850-4fff-aada-0e2fcf4e216e","description":""},{"name":"List Issued Tokens","item":[{"name":"api/v1/tokens/user/{user_id}","id":"42662bda-1098-4649-91d0-1ca1428b5180","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/tokens/user/:user_id","description":"<p>Get all tokens generated by the user.</p>\n","urlObject":{"path":["api","v1","tokens","user",":user_id"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_id"}]}},"response":[],"_postman_id":"42662bda-1098-4649-91d0-1ca1428b5180"}],"id":"56094bb1-cdb6-4635-aa2c-68f462da15d9","_postman_id":"56094bb1-cdb6-4635-aa2c-68f462da15d9","description":""}],"id":"baaf24a3-a693-4665-84f3-f836a3f0de95","_postman_id":"baaf24a3-a693-4665-84f3-f836a3f0de95","description":""},{"name":"Unit Conversions","item":[{"name":"Index","item":[{"name":"api/v1/unit_conversions","id":"79e183b3-9810-4a3d-bb4a-f883868c8797","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/unit_conversions","description":"<p>Returns a list of multiple <code>UnitConversion</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","unit_conversions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"79e183b3-9810-4a3d-bb4a-f883868c8797"}],"id":"08f57f2e-8027-416f-834a-1bc1d36355b4","_postman_id":"08f57f2e-8027-416f-834a-1bc1d36355b4","description":""},{"name":"Show","item":[{"name":"api/v1/unit_conversions/{unit_conversion}","id":"7787cbde-f4d9-42a9-9178-2061d5756bb4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/unit_conversions/:unit_conversion","description":"<p>Display the specified <code>UnitConversion</code>.</p>\n","urlObject":{"path":["api","v1","unit_conversions",":unit_conversion"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"unit_conversion"}]}},"response":[],"_postman_id":"7787cbde-f4d9-42a9-9178-2061d5756bb4"}],"id":"36df0abe-a014-48a5-8e15-f18839021d04","_postman_id":"36df0abe-a014-48a5-8e15-f18839021d04","description":""}],"id":"aac39bd6-5029-48cc-ad89-41f219dae66c","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> conversion_factor</code>,<code> from_unit_id</code>,<code> is_active</code>,<code> to_unit_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fromUnit</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toUnit</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"aac39bd6-5029-48cc-ad89-41f219dae66c"},{"name":"Unit Types","item":[{"name":"Index","item":[{"name":"api/v1/unit_types","id":"6aed7494-5c66-4854-96dc-0d3653283ba1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/unit_types","description":"<p>Returns a list of multiple <code>UnitType</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","unit_types"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"6aed7494-5c66-4854-96dc-0d3653283ba1"}],"id":"0d526c9b-b1ac-4f9a-926a-6cdb64c2226c","_postman_id":"0d526c9b-b1ac-4f9a-926a-6cdb64c2226c","description":""},{"name":"Show","item":[{"name":"api/v1/unit_types/{unit_type}","id":"6b50f480-af97-4305-aca7-ddfd7a5ab510","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/unit_types/:unit_type","description":"<p>Display the specified <code>UnitType</code>.</p>\n","urlObject":{"path":["api","v1","unit_types",":unit_type"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"unit_type"}]}},"response":[],"_postman_id":"6b50f480-af97-4305-aca7-ddfd7a5ab510"}],"id":"27e4530f-06d2-4dd5-a73c-0e0c04fccd48","_postman_id":"27e4530f-06d2-4dd5-a73c-0e0c04fccd48","description":""}],"id":"9e87a959-0b24-4dc0-b6d7-8ed68c43822a","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> is_active</code>,<code> name</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>unit</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"9e87a959-0b24-4dc0-b6d7-8ed68c43822a"},{"name":"Units","item":[{"name":"Index","item":[{"name":"api/v1/units","id":"d1ecda5b-449c-4ca2-abef-65f4aff3dc7b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/units","description":"<p>Returns a list of multiple <code>Unit</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","units"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d1ecda5b-449c-4ca2-abef-65f4aff3dc7b"}],"id":"96f74082-f764-4ffd-bfd9-0525016f392a","_postman_id":"96f74082-f764-4ffd-bfd9-0525016f392a","description":""},{"name":"Show","item":[{"name":"api/v1/units/{unit}","id":"add40725-764d-4a27-99ab-9f4781a3f65a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/units/:unit","description":"<p>Display the specified <code>Unit</code>.</p>\n","urlObject":{"path":["api","v1","units",":unit"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"unit"}]}},"response":[],"_postman_id":"add40725-764d-4a27-99ab-9f4781a3f65a"}],"id":"01daf171-2738-400b-bb70-d8eac39ac85c","_postman_id":"01daf171-2738-400b-bb70-d8eac39ac85c","description":""}],"id":"03e198a4-7525-4da0-a64e-d46000db6afd","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> abbreviation</code>,<code> is_active</code>,<code> name</code>,<code> unit_type_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fromUnit</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement10Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement1Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement2Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement3Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement4Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement5Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement6Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement7Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement8Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>measurement9Units</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>toUnit</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>unitType</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"03e198a4-7525-4da0-a64e-d46000db6afd"},{"name":"User","item":[{"name":"Seed Tasks","item":[{"name":"api/v1/users/{userId}/seed_tasks","id":"53e873d4-76bd-4fdd-871e-fa6c2989cb04","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"recipe","value":null,"description":"<p>The recipe field is required., The recipe field must be a string., The selected recipe is invalid, it must exist in enterprise_admin, team_admin, basic_user.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/users/:userId/seed_tasks","description":"<p>Assigns a task recipe to a specified <code>User</code>. This is typically used in the context of new user onboarding</p>\n","urlObject":{"path":["api","v1","users",":userId","seed_tasks"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"userId"}]}},"response":[],"_postman_id":"53e873d4-76bd-4fdd-871e-fa6c2989cb04"}],"id":"0aef1891-a460-454b-82c6-db286be5c3cc","_postman_id":"0aef1891-a460-454b-82c6-db286be5c3cc","description":""}],"id":"d899dd70-e5f5-42c8-a55d-cee614148495","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> email</code>,<code> name</code>,<code> receives_browser_notifications</code>,<code> receives_digest_notification</code>,<code> receives_email_notifications</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentProject</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentProjects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>customTeamPermissions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>enterprise</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>files</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastLogin</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>permissions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectRoles</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>teamRoles</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>teams</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"d899dd70-e5f5-42c8-a55d-cee614148495"},{"name":"User Defined Field Assignments","item":[{"name":"Destroy","item":[{"name":"api/v1/user_defined_field_assignments/{user_defined_field_assignment}","id":"7d5888ae-f6c5-487e-99b1-05c120d64050","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_assignments/:user_defined_field_assignment","description":"<p>Remove the specified <code>UserDefinedFieldAssignment</code> from storage.</p>\n","urlObject":{"path":["api","v1","user_defined_field_assignments",":user_defined_field_assignment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_assignment"}]}},"response":[],"_postman_id":"7d5888ae-f6c5-487e-99b1-05c120d64050"}],"id":"2c6bb51f-1aed-45d2-bc35-60ed4568cfff","_postman_id":"2c6bb51f-1aed-45d2-bc35-60ed4568cfff","description":""},{"name":"Index","item":[{"name":"api/v1/user_defined_field_assignments","id":"e4a2fa3d-2a39-455c-ad97-c9666fbb9489","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_assignments","description":"<p>Returns a list of multiple <code>UserDefinedFieldAssignment</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","user_defined_field_assignments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4a2fa3d-2a39-455c-ad97-c9666fbb9489"}],"id":"2c8370f0-86be-4932-97a7-cd75a309154f","_postman_id":"2c8370f0-86be-4932-97a7-cd75a309154f","description":""},{"name":"Show","item":[{"name":"api/v1/user_defined_field_assignments/{user_defined_field_assignment}","id":"5877f849-2954-4d4b-bdd5-c5840ea7507c","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_assignments/:user_defined_field_assignment","description":"<p>Display the specified <code>UserDefinedFieldAssignment</code>.</p>\n","urlObject":{"path":["api","v1","user_defined_field_assignments",":user_defined_field_assignment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_assignment"}]}},"response":[],"_postman_id":"5877f849-2954-4d4b-bdd5-c5840ea7507c"}],"id":"3c16996a-a28a-4297-9405-3e9019f6fd6a","_postman_id":"3c16996a-a28a-4297-9405-3e9019f6fd6a","description":""},{"name":"Store","item":[{"name":"api/v1/user_defined_field_assignments","id":"a913894a-ef63-4356-908a-5d97bd729fc0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attributable_type","value":null,"description":"<p>The attributable type field must be a string., The attributable type field must not be greater than 45 characters., The selected attributable type is invalid, it must exist in Project.</p>\n","type":"text"},{"key":"display_order","value":null,"description":"<p>(Nullable), The display order field must be an integer., The display order field must be at least 0., The display order field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>(Nullable), The udf definition id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_assignments","description":"<p>Create a new <code>UserDefinedFieldAssignment</code> object.</p>\n","urlObject":{"path":["api","v1","user_defined_field_assignments"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"a913894a-ef63-4356-908a-5d97bd729fc0"}],"id":"748ed3c8-6a48-46e1-a674-7e0b5beedea3","_postman_id":"748ed3c8-6a48-46e1-a674-7e0b5beedea3","description":""},{"name":"Update","item":[{"name":"api/v1/user_defined_field_assignments/{user_defined_field_assignment}","id":"e1272793-f1e8-48d7-b46d-28389c76b0c9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attributable_type","value":null,"description":"<p>(Optional), The attributable type field must be a string., The selected attributable type is invalid, it must exist in Project.</p>\n","type":"text"},{"key":"display_order","value":null,"description":"<p>(Optional), The display order field must be an integer., The display order field must be at least 0., The display order field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>(Optional), The udf definition id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_assignments/:user_defined_field_assignment","description":"<p>Update the specified <code>UserDefinedFieldAssignment</code> .</p>\n","urlObject":{"path":["api","v1","user_defined_field_assignments",":user_defined_field_assignment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_assignment"}]}},"response":[],"_postman_id":"e1272793-f1e8-48d7-b46d-28389c76b0c9"},{"name":"api/v1/user_defined_field_assignments/{user_defined_field_assignment}","id":"57279110-f5bd-461c-886e-49499fbe8ebe","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attributable_type","value":null,"description":"<p>(Optional), The attributable type field must be a string., The selected attributable type is invalid, it must exist in Project.</p>\n","type":"text"},{"key":"display_order","value":null,"description":"<p>(Optional), The display order field must be an integer., The display order field must be at least 0., The display order field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Optional), (Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>(Optional), The udf definition id field must be an integer.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_assignments/:user_defined_field_assignment","description":"<p>Update the specified <code>UserDefinedFieldAssignment</code> .</p>\n","urlObject":{"path":["api","v1","user_defined_field_assignments",":user_defined_field_assignment"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_assignment"}]}},"response":[],"_postman_id":"57279110-f5bd-461c-886e-49499fbe8ebe"}],"id":"089452dc-5626-4cdb-ac6a-0eb0f0c36e85","_postman_id":"089452dc-5626-4cdb-ac6a-0eb0f0c36e85","description":""}],"id":"2a843f09-e84f-4b15-9a0e-dea2dc8b6a6a","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> attributable_type</code>,<code> display_order</code>,<code> project_id</code>,<code> team_id</code>,<code> udf_definition_id</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>constraints</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>definition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>validValues</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2a843f09-e84f-4b15-9a0e-dea2dc8b6a6a"},{"name":"User Defined Field Constraints","item":[{"name":"Destroy","item":[{"name":"api/v1/user_defined_field_constraints/{user_defined_field_constraint}","id":"0972357b-307f-4ae5-8dfc-728f9b1354f4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_constraints/:user_defined_field_constraint","description":"<p>Remove the specified <code>UserDefinedFieldConstraint</code> from storage.</p>\n","urlObject":{"path":["api","v1","user_defined_field_constraints",":user_defined_field_constraint"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_constraint"}]}},"response":[],"_postman_id":"0972357b-307f-4ae5-8dfc-728f9b1354f4"}],"id":"87f60223-7493-481a-bd81-3dfe7877aca4","_postman_id":"87f60223-7493-481a-bd81-3dfe7877aca4","description":""},{"name":"Index","item":[{"name":"api/v1/user_defined_field_constraints","id":"f392da9f-032c-48ea-a9d3-52ec88200fb0","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_constraints","description":"<p>Returns a list of multiple <code>UserDefinedFieldConstraint</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","user_defined_field_constraints"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"f392da9f-032c-48ea-a9d3-52ec88200fb0"}],"id":"384bfd41-aa1d-4ef0-b4a0-6486a17f13ea","_postman_id":"384bfd41-aa1d-4ef0-b4a0-6486a17f13ea","description":""},{"name":"Show","item":[{"name":"api/v1/user_defined_field_constraints/{user_defined_field_constraint}","id":"a1c0e98e-0af8-429a-9c3b-2ae7480cd9ae","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_constraints/:user_defined_field_constraint","description":"<p>Display the specified <code>UserDefinedFieldConstraint</code>.</p>\n","urlObject":{"path":["api","v1","user_defined_field_constraints",":user_defined_field_constraint"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_constraint"}]}},"response":[],"_postman_id":"a1c0e98e-0af8-429a-9c3b-2ae7480cd9ae"}],"id":"299c5152-5ac5-4e12-87c4-9276a3bbb560","_postman_id":"299c5152-5ac5-4e12-87c4-9276a3bbb560","description":""},{"name":"Store","item":[{"name":"api/v1/user_defined_field_constraints","id":"fe89b1f7-2c57-4f59-9852-543e1c93ef59","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>The project id field is required., The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_assignment_id","value":null,"description":"<p>The udf assignment id field is required., The udf assignment id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>The udf definition id field is required., The udf definition id field must be an integer.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>The value field is required., The value field must be a string., The value field must not be greater than 45 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_constraints","description":"<p>Create a new <code>UserDefinedFieldConstraint</code> object.</p>\n","urlObject":{"path":["api","v1","user_defined_field_constraints"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe89b1f7-2c57-4f59-9852-543e1c93ef59"}],"id":"63c2f1fe-2d73-4a0a-9390-2bd0528a3cc4","_postman_id":"63c2f1fe-2d73-4a0a-9390-2bd0528a3cc4","description":""},{"name":"Update","item":[{"name":"api/v1/user_defined_field_constraints/{user_defined_field_constraint}","id":"778fa8f9-6bc5-46ab-9430-68f87e6a25cc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_assignment_id","value":null,"description":"<p>(Optional), The udf assignment id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>(Optional), The udf definition id field must be an integer.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>(Optional), (Nullable), The value field must be a string., The value field must not be greater than 45 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_constraints/:user_defined_field_constraint","description":"<p>Update the specified <code>UserDefinedFieldConstraint</code> .</p>\n","urlObject":{"path":["api","v1","user_defined_field_constraints",":user_defined_field_constraint"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_constraint"}]}},"response":[],"_postman_id":"778fa8f9-6bc5-46ab-9430-68f87e6a25cc"},{"name":"api/v1/user_defined_field_constraints/{user_defined_field_constraint}","id":"de0078f2-40f2-4988-9e8d-4c3af590282a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"project_id","value":null,"description":"<p>(Optional), The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_assignment_id","value":null,"description":"<p>(Optional), The udf assignment id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>(Optional), The udf definition id field must be an integer.</p>\n","type":"text"},{"key":"value","value":null,"description":"<p>(Optional), (Nullable), The value field must be a string., The value field must not be greater than 45 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_constraints/:user_defined_field_constraint","description":"<p>Update the specified <code>UserDefinedFieldConstraint</code> .</p>\n","urlObject":{"path":["api","v1","user_defined_field_constraints",":user_defined_field_constraint"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_constraint"}]}},"response":[],"_postman_id":"de0078f2-40f2-4988-9e8d-4c3af590282a"}],"id":"5690a570-d728-4744-9ce7-f4b74512c7ad","_postman_id":"5690a570-d728-4744-9ce7-f4b74512c7ad","description":""}],"id":"1aaf4589-b2b8-4067-a647-3290eb3953d8","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> project_id</code>,<code> team_id</code>,<code> udf_definition_id</code>,<code> value</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>assignment</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>definition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>usages</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>usage_count</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1aaf4589-b2b8-4067-a647-3290eb3953d8"},{"name":"User Defined Field Definitions","item":[{"name":"Destroy","item":[{"name":"api/v1/user_defined_field_definitions/{user_defined_field_definition}","id":"c2394c7f-5a66-480a-b885-818a05aaa157","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_definitions/:user_defined_field_definition","description":"<p>Remove the specified <code>UserDefinedFieldDefinition</code> from storage.</p>\n","urlObject":{"path":["api","v1","user_defined_field_definitions",":user_defined_field_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_definition"}]}},"response":[],"_postman_id":"c2394c7f-5a66-480a-b885-818a05aaa157"}],"id":"b0a624a0-db44-4759-b071-123eccb28502","_postman_id":"b0a624a0-db44-4759-b071-123eccb28502","description":""},{"name":"Index","item":[{"name":"api/v1/user_defined_field_definitions","id":"bbaeb340-2fb3-4ecd-92fb-c11955311b59","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_definitions","description":"<p>Returns a list of multiple <code>UserDefinedFieldDefinition</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","user_defined_field_definitions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbaeb340-2fb3-4ecd-92fb-c11955311b59"}],"id":"f6186492-aa1c-43cb-b8f6-2d314bed3315","_postman_id":"f6186492-aa1c-43cb-b8f6-2d314bed3315","description":""},{"name":"Show","item":[{"name":"api/v1/user_defined_field_definitions/{user_defined_field_definition}","id":"48924b47-9aa3-4e5e-8495-676ff3b275a5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_definitions/:user_defined_field_definition","description":"<p>Display the specified <code>UserDefinedFieldDefinition</code>.</p>\n","urlObject":{"path":["api","v1","user_defined_field_definitions",":user_defined_field_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_definition"}]}},"response":[],"_postman_id":"48924b47-9aa3-4e5e-8495-676ff3b275a5"}],"id":"9e6c914b-2975-4b94-9fd6-ff344d0dbfd6","_postman_id":"9e6c914b-2975-4b94-9fd6-ff344d0dbfd6","description":""},{"name":"Store","item":[{"name":"api/v1/user_defined_field_definitions","id":"15fdf007-2120-414a-ab8b-517b726b2b8f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"udf_name","value":null,"description":"<p>(Nullable), The udf name field must be a string., The udf name field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"udf_type","value":null,"description":"<p>(Nullable), The udf type field must be a string., The udf type field must not be greater than 12 characters., The selected udf type is invalid, it must exist in group, user_defined.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_definitions","description":"<p>Create a new <code>UserDefinedFieldDefinition</code> object.</p>\n","urlObject":{"path":["api","v1","user_defined_field_definitions"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"15fdf007-2120-414a-ab8b-517b726b2b8f"}],"id":"314e6b9c-9e7f-462d-96b9-3125046be407","_postman_id":"314e6b9c-9e7f-462d-96b9-3125046be407","description":""},{"name":"Update","item":[{"name":"api/v1/user_defined_field_definitions/{user_defined_field_definition}","id":"8f5c3068-173a-4be1-9e29-35db95f3d6f5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"udf_name","value":null,"description":"<p>(Optional), (Nullable), The udf name field must be a string., The udf name field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"udf_type","value":null,"description":"<p>(Optional), (Nullable), The udf type field must be a string., The udf type field must not be greater than 12 characters., The selected udf type is invalid, it must exist in group, user_defined.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_definitions/:user_defined_field_definition","description":"<p>Update the specified <code>UserDefinedFieldDefinition</code> .</p>\n","urlObject":{"path":["api","v1","user_defined_field_definitions",":user_defined_field_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_definition"}]}},"response":[],"_postman_id":"8f5c3068-173a-4be1-9e29-35db95f3d6f5"},{"name":"api/v1/user_defined_field_definitions/{user_defined_field_definition}","id":"2e9d6da8-014a-4db1-83b6-330941c1ac13","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"udf_name","value":null,"description":"<p>(Optional), (Nullable), The udf name field must be a string., The udf name field must not be greater than 45 characters.</p>\n","type":"text"},{"key":"udf_type","value":null,"description":"<p>(Optional), (Nullable), The udf type field must be a string., The udf type field must not be greater than 12 characters., The selected udf type is invalid, it must exist in group, user_defined.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_definitions/:user_defined_field_definition","description":"<p>Update the specified <code>UserDefinedFieldDefinition</code> .</p>\n","urlObject":{"path":["api","v1","user_defined_field_definitions",":user_defined_field_definition"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_definition"}]}},"response":[],"_postman_id":"2e9d6da8-014a-4db1-83b6-330941c1ac13"}],"id":"8353a3f9-0941-4dc3-8437-195ccd32fe33","_postman_id":"8353a3f9-0941-4dc3-8437-195ccd32fe33","description":""}],"id":"07adb84b-0fe9-4da8-81e7-598e67fb5d4c","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> is_active</code>,<code> project_id</code>,<code> team_id</code>,<code> udf_name</code>,<code> udf_type</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>assignments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>constraints</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>values</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"07adb84b-0fe9-4da8-81e7-598e67fb5d4c"},{"name":"User Defined Field Values","item":[{"name":"Destroy","item":[{"name":"api/v1/user_defined_field_values/{user_defined_field_value}","id":"5be56f69-29b7-4a57-ad8f-fcfbb782bd01","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_values/:user_defined_field_value","description":"<p>Remove the specified <code>UserDefinedFieldValue</code> from storage.</p>\n","urlObject":{"path":["api","v1","user_defined_field_values",":user_defined_field_value"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_value"}]}},"response":[],"_postman_id":"5be56f69-29b7-4a57-ad8f-fcfbb782bd01"}],"id":"7a2c53d0-56fa-421d-9bf7-a64f1058b240","_postman_id":"7a2c53d0-56fa-421d-9bf7-a64f1058b240","description":""},{"name":"Index","item":[{"name":"api/v1/user_defined_field_values","id":"758e1a8b-9a10-4cb0-997b-297d80e1620a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_values","description":"<p>Returns a list of multiple <code>UserDefinedFieldValue</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","user_defined_field_values"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"758e1a8b-9a10-4cb0-997b-297d80e1620a"}],"id":"f13126f6-815f-4a32-8ef3-23cb45d3cc1c","_postman_id":"f13126f6-815f-4a32-8ef3-23cb45d3cc1c","description":""},{"name":"Show","item":[{"name":"api/v1/user_defined_field_values/{user_defined_field_value}","id":"f42e3241-7953-4eb0-918e-70db8d1e46f5","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/user_defined_field_values/:user_defined_field_value","description":"<p>Display the specified <code>UserDefinedFieldValue</code>.</p>\n","urlObject":{"path":["api","v1","user_defined_field_values",":user_defined_field_value"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_value"}]}},"response":[],"_postman_id":"f42e3241-7953-4eb0-918e-70db8d1e46f5"}],"id":"093a6387-6a3d-40a9-8040-46baf6e9420f","_postman_id":"093a6387-6a3d-40a9-8040-46baf6e9420f","description":""},{"name":"Store","item":[{"name":"api/v1/user_defined_field_values","id":"5cbd84ac-b848-4413-9a3d-ef17619d9cf3","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attributable_id","value":null,"description":"<p>(Nullable), The attributable id field must be an integer., The attributable id field must be at least 0., The attributable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"attributable_type","value":null,"description":"<p>(Nullable), The attributable type field must be a string., The selected attributable type is invalid, it must exist in Project, Requisition, Bid, Offer, Order, PurchaseOrder, RequisitionItem, SalesOrder, BidItem, OfferItem, OrderItem, PurchaseOrderItem, Allocation.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>(Nullable), The udf definition id field must be an integer.</p>\n","type":"text"},{"key":"udf_value","value":null,"description":"<p>(Nullable), The udf value field must be a string., The udf value field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_values","description":"<p>Create a new <code>UserDefinedFieldValue</code> object.</p>\n","urlObject":{"path":["api","v1","user_defined_field_values"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cbd84ac-b848-4413-9a3d-ef17619d9cf3"}],"id":"c0c5e066-2f49-42a5-ab25-bfec944d2b54","_postman_id":"c0c5e066-2f49-42a5-ab25-bfec944d2b54","description":""},{"name":"Update","item":[{"name":"api/v1/user_defined_field_values/{user_defined_field_value}","id":"4bed8ea8-6373-4e76-ad46-8af77a46a436","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attributable_id","value":null,"description":"<p>(Nullable), The attributable id field must be an integer., The attributable id field must be at least 0., The attributable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"attributable_type","value":null,"description":"<p>(Nullable), The attributable type field must be a string., The attributable type field must not be greater than 45 characters., The selected attributable type is invalid, it must exist in Project, Requisition, Bid, Offer, Order, PurchaseOrder, RequisitionItem, SalesOrder, BidItem, OfferItem, OrderItem, PurchaseOrderItem, Allocation.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>(Nullable), The udf definition id field must be an integer.</p>\n","type":"text"},{"key":"udf_value","value":null,"description":"<p>(Nullable), The udf value field must be a string., The udf value field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_values/:user_defined_field_value","description":"<p>Update the specified <code>UserDefinedFieldValue</code> .</p>\n","urlObject":{"path":["api","v1","user_defined_field_values",":user_defined_field_value"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_value"}]}},"response":[],"_postman_id":"4bed8ea8-6373-4e76-ad46-8af77a46a436"},{"name":"api/v1/user_defined_field_values/{user_defined_field_value}","id":"2bcd9a99-b05f-4b85-bb32-4b21c324ffa9","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"attributable_id","value":null,"description":"<p>(Nullable), The attributable id field must be an integer., The attributable id field must be at least 0., The attributable id field must not be greater than 4294967295.</p>\n","type":"text"},{"key":"attributable_type","value":null,"description":"<p>(Nullable), The attributable type field must be a string., The attributable type field must not be greater than 45 characters., The selected attributable type is invalid, it must exist in Project, Requisition, Bid, Offer, Order, PurchaseOrder, RequisitionItem, SalesOrder, BidItem, OfferItem, OrderItem, PurchaseOrderItem, Allocation.</p>\n","type":"text"},{"key":"project_id","value":null,"description":"<p>(Nullable), The project id field must be an integer.</p>\n","type":"text"},{"key":"udf_definition_id","value":null,"description":"<p>(Nullable), The udf definition id field must be an integer.</p>\n","type":"text"},{"key":"udf_value","value":null,"description":"<p>(Nullable), The udf value field must be a string., The udf value field must not be greater than 50 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/user_defined_field_values/:user_defined_field_value","description":"<p>Update the specified <code>UserDefinedFieldValue</code> .</p>\n","urlObject":{"path":["api","v1","user_defined_field_values",":user_defined_field_value"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user_defined_field_value"}]}},"response":[],"_postman_id":"2bcd9a99-b05f-4b85-bb32-4b21c324ffa9"}],"id":"1d8bca47-99d8-4f6f-89e5-a7c82f06af2c","_postman_id":"1d8bca47-99d8-4f6f-89e5-a7c82f06af2c","description":""}],"id":"8610547b-e75e-42fb-8d08-e1124a060605","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> attributable_id</code>,<code> attributable_type</code>,<code> project_id</code>,<code> udf_definition_id</code>,<code> udf_value</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attributable</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>definition</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orderItems</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8610547b-e75e-42fb-8d08-e1124a060605"},{"name":"User Defined Fields","item":[{"name":"Project Listing","item":[{"name":"api/v1/uiudf/{project}/{entityType}/{entityId?}","id":"e0bccc86-4723-480b-b52d-494edd1606e1","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/uiudf/:project/:entityType/{entityId?}","description":"<p>Returns a listing of available <code>UserDefinedFieldDefinitions</code> and their <code>UserDefinedFieldConstraints</code> for a specified <code>Project</code>.</p>\n","urlObject":{"path":["api","v1","uiudf",":project",":entityType","{entityId"],"host":["https://app.currentscm.com/"],"query":[{"key":"}","value":null}],"variable":[{"type":"any","key":"project"},{"type":"any","key":"entityType"}]}},"response":[],"_postman_id":"e0bccc86-4723-480b-b52d-494edd1606e1"}],"id":"54de0578-7b2d-4eb7-9f23-0450f9582abe","_postman_id":"54de0578-7b2d-4eb7-9f23-0450f9582abe","description":""}],"id":"63bae544-46ad-489f-9d0c-2617b9ad1449","_postman_id":"63bae544-46ad-489f-9d0c-2617b9ad1449","description":""},{"name":"Users","item":[{"name":"History Listing","item":[{"name":"api/v1/userhistory/{user}/{days}","id":"d227e269-ccca-4e65-a4de-9d356f198449","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/userhistory/:user/:days","description":"<p>Get a history of state transitions completed by a <code>User</code>.</p>\n","urlObject":{"path":["api","v1","userhistory",":user",":days"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"user"},{"type":"any","key":"days"}]}},"response":[],"_postman_id":"d227e269-ccca-4e65-a4de-9d356f198449"}],"id":"110e5631-55cb-492f-be7b-839f1822233b","_postman_id":"110e5631-55cb-492f-be7b-839f1822233b","description":""}],"id":"8fd6bf3f-82af-4944-8549-872df690b092","description":"<p><code>Users</code> are unique application Users that belong to an <code>Enterprise</code></p>\n<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> email</code>,<code> name</code>,<code> receives_browser_notifications</code>,<code> receives_digest_notification</code>,<code> receives_email_notifications</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>bids</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>comments</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentProject</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>currentProjects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>customTeamPermissions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>enterprise</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>files</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>integrationKeys</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>lastLogin</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>orders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>permissions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projectRoles</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>projects</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>purchaseOrders</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>requisitions</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>tasks</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>teamRoles</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>teams</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8fd6bf3f-82af-4944-8549-872df690b092"},{"name":"Validate Potential Release","item":[{"name":"Api/V1/Validate Potential Release","id":"9ea62ba4-2f45-474d-be52-f1229c13d354","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"allocation_ids","value":null,"description":"<p>The allocation ids field is required., The allocation ids field must be an array., The allocation ids field must have at least 1 items.</p>\n","type":"text"},{"key":"allocation_ids.*","value":null,"description":"<p>The allocation ids.* field must be an integer., The allocation ids.* field must be at least 0 characters., The allocation ids.* field must not be greater than 4294967295 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/validate_potential_release","description":"<p>Validates the ability to execute a planned Release.</p>\n","urlObject":{"path":["api","v1","validate_potential_release"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ea62ba4-2f45-474d-be52-f1229c13d354"}],"id":"f269fb30-ad9e-41e7-b41f-ad0a6c558275","_postman_id":"f269fb30-ad9e-41e7-b41f-ad0a6c558275","description":""},{"name":"View Customizations","item":[{"name":"Available","item":[{"name":"api/v1/view_customizations/available","id":"b74769a6-32f1-4174-a9de-cdaa4cf8617f","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/view_customizations/available?business_id","description":"<p>Returns a concise list of available <code>ViewCustomizations</code> by report type.</p>\n","urlObject":{"path":["api","v1","view_customizations","available"],"host":["https://app.currentscm.com/"],"query":[{"description":{"content":"<p>(Optional), The business id field must be an integer.</p>\n","type":"text/plain"},"key":"business_id","value":null}],"variable":[]}},"response":[],"_postman_id":"b74769a6-32f1-4174-a9de-cdaa4cf8617f"}],"id":"b27ac870-ab7a-430f-bb0d-979d9b552530","_postman_id":"b27ac870-ab7a-430f-bb0d-979d9b552530","description":""},{"name":"Destroy","item":[{"name":"api/v1/view_customizations/{view_customization}","id":"1f80e60c-d1d0-4e40-b0e1-c3e5c661e014","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/view_customizations/:view_customization","description":"<p>Remove the specified <code>ViewCustomization</code> from storage.</p>\n","urlObject":{"path":["api","v1","view_customizations",":view_customization"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"view_customization"}]}},"response":[],"_postman_id":"1f80e60c-d1d0-4e40-b0e1-c3e5c661e014"}],"id":"e2056afb-73e5-4c5b-8d71-618b663b3995","_postman_id":"e2056afb-73e5-4c5b-8d71-618b663b3995","description":""},{"name":"Index","item":[{"name":"api/v1/view_customizations","id":"24e70985-4c32-4022-be8b-7900fe153e97","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/view_customizations","description":"<p>Returns a list of multiple <code>ViewCustomization</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","view_customizations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"24e70985-4c32-4022-be8b-7900fe153e97"}],"id":"49fbaeff-49f8-4544-a5c3-db798828265c","_postman_id":"49fbaeff-49f8-4544-a5c3-db798828265c","description":""},{"name":"Saved Team Views","item":[{"name":"api/v1/view_customizations/team/{slug}","id":"676e60bd-5a09-43a0-ae4c-f1c9e1478a7b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/view_customizations/team/:slug","description":"<p>Returns a list of available <code>ViewCustomizations</code> for a specific view slug marked as shared with the <code>Team</code>.</p>\n","urlObject":{"path":["api","v1","view_customizations","team",":slug"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"slug"}]}},"response":[],"_postman_id":"676e60bd-5a09-43a0-ae4c-f1c9e1478a7b"}],"id":"1e6e6ea2-87aa-40ff-9c1d-3e6c983e4dbf","_postman_id":"1e6e6ea2-87aa-40ff-9c1d-3e6c983e4dbf","description":""},{"name":"Show","item":[{"name":"api/v1/view_customizations/{view_customization}","id":"895ca60d-56fa-4a7e-8d90-23b082011ffa","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/view_customizations/:view_customization","description":"<p>Display the specified <code>ViewCustomization</code>.</p>\n","urlObject":{"path":["api","v1","view_customizations",":view_customization"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"view_customization"}]}},"response":[],"_postman_id":"895ca60d-56fa-4a7e-8d90-23b082011ffa"}],"id":"ebcf2089-2ff4-4620-bd87-7acfc7352292","_postman_id":"ebcf2089-2ff4-4620-bd87-7acfc7352292","description":""},{"name":"Store","item":[{"name":"api/v1/view_customizations","id":"d8e832e8-e2d3-4150-88ff-fabbc099d64a","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>(Nullable), The business id field must be an integer.</p>\n","type":"text"},{"key":"view_slug","value":null,"description":"<p>The view slug field is required., The view slug field must be a string., The view slug field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>The name field is required., The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"definition","value":null,"description":"<p>The definition field is required., The definition field must be an array.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>The is active field must be true or false.</p>\n","type":"text"},{"key":"shared_with_team","value":null,"description":"<p>The shared with team field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/view_customizations","description":"<p>Create a new <code>ViewCustomization</code> object.</p>\n","urlObject":{"path":["api","v1","view_customizations"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8e832e8-e2d3-4150-88ff-fabbc099d64a"}],"id":"c5854eaa-2c32-47b2-91b3-a44721d5fb7c","_postman_id":"c5854eaa-2c32-47b2-91b3-a44721d5fb7c","description":""},{"name":"Update","item":[{"name":"api/v1/view_customizations/{view_customization}","id":"578d442d-3cae-42bb-970f-117476d56cef","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>(Nullable), The business id field must be an integer.</p>\n","type":"text"},{"key":"view_slug","value":null,"description":"<p>(Optional), The view slug field must be a string., The view slug field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"definition","value":null,"description":"<p>(Optional), The definition field must be an array.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"shared_with_team","value":null,"description":"<p>(Optional), The shared with team field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/view_customizations/:view_customization","description":"<p>Update the specified <code>ViewCustomization</code> .</p>\n","urlObject":{"path":["api","v1","view_customizations",":view_customization"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"view_customization"}]}},"response":[],"_postman_id":"578d442d-3cae-42bb-970f-117476d56cef"},{"name":"api/v1/view_customizations/{view_customization}","id":"ba77b5c7-fcc9-43f2-a145-2a2feb9bb7dd","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"},{"key":"business_id","value":null,"description":"<p>(Nullable), The business id field must be an integer.</p>\n","type":"text"},{"key":"view_slug","value":null,"description":"<p>(Optional), The view slug field must be a string., The view slug field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"name","value":null,"description":"<p>(Optional), The name field must be a string., The name field must not be greater than 72 characters.</p>\n","type":"text"},{"key":"description","value":null,"description":"<p>(Optional), (Nullable), The description field must be a string., The description field must not be greater than 255 characters.</p>\n","type":"text"},{"key":"definition","value":null,"description":"<p>(Optional), The definition field must be an array.</p>\n","type":"text"},{"key":"is_active","value":null,"description":"<p>(Optional), The is active field must be true or false.</p>\n","type":"text"},{"key":"shared_with_team","value":null,"description":"<p>(Optional), The shared with team field must be true or false.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/view_customizations/:view_customization","description":"<p>Update the specified <code>ViewCustomization</code> .</p>\n","urlObject":{"path":["api","v1","view_customizations",":view_customization"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"view_customization"}]}},"response":[],"_postman_id":"ba77b5c7-fcc9-43f2-a145-2a2feb9bb7dd"}],"id":"8d1ab8db-a6eb-4de8-acf9-d3e30328d75a","_postman_id":"8d1ab8db-a6eb-4de8-acf9-d3e30328d75a","description":""}],"id":"5a2c3acb-16c4-4612-835e-718a5bb2a913","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> business_id</code>,<code> definition</code>,<code> description</code>,<code> is_active</code>,<code> name</code>,<code> shared_with_team</code>,<code> team_id</code>,<code> user_id</code>,<code> view_slug</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>business</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>userDefault</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"appendable-attributes\">Appendable Attributes:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>is_valid</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5a2c3acb-16c4-4612-835e-718a5bb2a913"},{"name":"View Defaults","item":[{"name":"Destroy","item":[{"name":"api/v1/view_defaults/{view_default}","id":"e8ca3a7b-cc85-4b0f-8240-d91a7efa68c4","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/view_defaults/:view_default","description":"<p>Remove the specified <code>ViewDefault</code> from storage.</p>\n","urlObject":{"path":["api","v1","view_defaults",":view_default"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"view_default"}]}},"response":[],"_postman_id":"e8ca3a7b-cc85-4b0f-8240-d91a7efa68c4"}],"id":"fcab4bff-1a49-4c69-afed-abba4b1df5a8","_postman_id":"fcab4bff-1a49-4c69-afed-abba4b1df5a8","description":""},{"name":"Index","item":[{"name":"api/v1/view_defaults","id":"224b3b7a-2518-4513-b51c-4d450c4405fc","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/view_defaults","description":"<p>Returns a list of multiple <code>ViewDefault</code> objects based on optional criteria.</p>\n","urlObject":{"path":["api","v1","view_defaults"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"224b3b7a-2518-4513-b51c-4d450c4405fc"}],"id":"4a27032c-89fd-41c8-9f49-90ad5d0c8fab","_postman_id":"4a27032c-89fd-41c8-9f49-90ad5d0c8fab","description":""},{"name":"Show","item":[{"name":"api/v1/view_defaults/{view_default}","id":"941a00d1-0050-4a22-842f-853e18752f00","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"url":"https://app.currentscm.com//api/v1/view_defaults/:view_default","description":"<p>Display the specified <code>ViewDefault</code>.</p>\n","urlObject":{"path":["api","v1","view_defaults",":view_default"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"view_default"}]}},"response":[],"_postman_id":"941a00d1-0050-4a22-842f-853e18752f00"}],"id":"d01230dd-0878-4ee2-ad2b-419adebab173","_postman_id":"d01230dd-0878-4ee2-ad2b-419adebab173","description":""},{"name":"Store","item":[{"name":"api/v1/view_defaults","id":"9c852d9f-3038-4f93-9dee-cace4572414b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>The user id field is required., The user id field must be an integer.</p>\n","type":"text"},{"key":"view_customization_id","value":null,"description":"<p>(Nullable), The view customization id field must be an integer.</p>\n","type":"text"},{"key":"view_slug","value":null,"description":"<p>The view slug field is required., The view slug field must be a string., The view slug field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/view_defaults","description":"<p>Create a new <code>ViewDefault</code> object.</p>\n","urlObject":{"path":["api","v1","view_defaults"],"host":["https://app.currentscm.com/"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c852d9f-3038-4f93-9dee-cace4572414b"}],"id":"44924ff5-7ece-405a-8113-a6e7d1cadd61","_postman_id":"44924ff5-7ece-405a-8113-a6e7d1cadd61","description":""},{"name":"Update","item":[{"name":"api/v1/view_defaults/{view_default}","id":"5427bebf-994b-43ac-a041-2797c5bb696b","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"},{"key":"view_customization_id","value":null,"description":"<p>(Optional), The view customization id field must be an integer.</p>\n","type":"text"},{"key":"view_slug","value":null,"description":"<p>(Optional), The view slug field must be a string., The view slug field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/view_defaults/:view_default","description":"<p>Update the specified <code>ViewDefault</code> .</p>\n","urlObject":{"path":["api","v1","view_defaults",":view_default"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"view_default"}]}},"response":[],"_postman_id":"5427bebf-994b-43ac-a041-2797c5bb696b"},{"name":"api/v1/view_defaults/{view_default}","id":"d1a2b043-083a-4daf-889a-c39468c4d9e6","protocolProfileBehavior":{"disableBodyPruning":false},"request":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"TEAM-TOKEN","value":""},{"key":"If-None-Match","value":""}],"body":{"mode":"urlencoded","urlencoded":[{"key":"user_id","value":null,"description":"<p>(Optional), The user id field must be an integer.</p>\n","type":"text"},{"key":"view_customization_id","value":null,"description":"<p>(Optional), The view customization id field must be an integer.</p>\n","type":"text"},{"key":"view_slug","value":null,"description":"<p>(Optional), The view slug field must be a string., The view slug field must not be greater than 72 characters.</p>\n","type":"text"}]},"url":"https://app.currentscm.com//api/v1/view_defaults/:view_default","description":"<p>Update the specified <code>ViewDefault</code> .</p>\n","urlObject":{"path":["api","v1","view_defaults",":view_default"],"host":["https://app.currentscm.com/"],"query":[],"variable":[{"type":"any","key":"view_default"}]}},"response":[],"_postman_id":"d1a2b043-083a-4daf-889a-c39468c4d9e6"}],"id":"a4ddc390-52af-4268-912f-59cea5a8853f","_postman_id":"a4ddc390-52af-4268-912f-59cea5a8853f","description":""}],"id":"ce79325c-6b8f-4944-81b4-892f9c65aa98","description":"<hr />\n<h3 id=\"searchable-fields\">Searchable Fields:</h3>\n<p><code> team_id</code>,<code> user_id</code>,<code> view_customization_id</code>,<code> view_slug</code>,</p>\n<hr />\n<h3 id=\"includable-related-objects\">Includable Related Objects:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Related Object(s)</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>team</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ce79325c-6b8f-4944-81b4-892f9c65aa98"}],"variable":[{"key":"base_url","value":"https://app.currentscm.com/"}]}