{"info":{"_postman_id":"211b8398-7ee1-4b43-ab49-cce7cdb0a373","name":"Vertex PLM Integration API","description":"<html><head></head><body><p>The API schema for the PLM integration kernel. The integration kernel<br>exposes a RESTful interface that PLM extensions call to schedule part<br>imports to Vertex.</p>\n<h2 id=\"concepts\">Concepts</h2>\n<ul>\n<li><p><strong>Registered Part</strong>: Represents a part or assembly that a PLM intends<br>  to sync to Vertex. Parts must be given a unique PLM identifier. The<br>  kernel ensures that duplicate parts are not being registered.</p>\n</li>\n<li><p><strong>Registered Part Revision</strong>: Represents a revision of a registered<br>  part. Revisions must be given a unique version identifier that is<br>  assigned by the PLM system, and must be unique to the part.</p>\n</li>\n<li><p><strong>Revision Jobs</strong>: Represents a job that will perform the import of a<br>  CAD file or assembly creation in Vertex. Jobs are associated to<br>  revisions. The kernel ensures a revision only has a single job<br>  scheduled at any given time. It also handles the scheduling of jobs<br>  for assemblies that have dependencies to other parts.</p>\n</li>\n</ul>\n<h2 id=\"usage\">Usage</h2>\n<p>Import of a CAD model using the integration kernel should generally follow<br>this process:</p>\n<ol>\n<li><p>Checking if a part has already been registered with the kernel using<br> the <code>GET /registered-parts</code> endpoint and passing a <code>plmId</code> query param.<br> The kernel does not allow for multiple parts of the same <code>plmId</code> to<br> be created.</p>\n</li>\n<li><p>If a part does not exist, registering a part using the<br> <code>POST /registered-parts</code> endpoint.</p>\n</li>\n<li><p>Checking if a revision has already been registered with the kernel for<br> a part using the <code>GET /registered-parts/:id/revisions</code> endpoint, and<br> passing a <code>plmRevisionId</code> query param. The kernel does not allow for<br> duplicate <code>plmRevisionId</code>s within a part.</p>\n</li>\n<li><p>If a revision does not exist, registering the revision using the<br> <code>POST /registered-parts/:id/revisions</code> endpoint.</p>\n</li>\n<li><p>Checking if an active revision job exists using the<br> <code>GET /registered-part-revisions/:id/jobs</code> endpoint and passing the<br> <code>statuses=running&amp;statuses=success</code> query params. The kernel does not<br> allow a new job to be created if there's a running job or if the revision<br> has been already imported successfully.</p>\n</li>\n<li><p>Creation of a revision import job using the<br> <code>POST /registered-part-revisions/:id/jobs</code> endpoint. This endpoint<br> supports creation of both assemblies and non-assemblies. For<br> non-assemblies, you include the CAD file and filename as part of the<br> request. For assembly jobs, you will need to pass an <code>AssemblyDefinition</code><br> that includes a reference to the part and transform for each instance<br> in the assembly.</p>\n</li>\n<li><p>Polling for the status of the import job using the<br> <code>GET /registered-part-revision-jobs/:id</code> endpoint. The result will<br> indicate if the job is running, failed or successful and will include<br> any result or error data associated to the job.</p>\n</li>\n</ol>\n<h2 id=\"dependency-graph\">Dependency Graph</h2>\n<p>Internally the kernel maintains a dependency graph between parts and<br>assemblies, and handles the scheduling logic of imports. For example,<br>the kernel waits to import an assembly until all of its dependent parts<br>have been imported to Vertex. Practically this means interactions from<br>the extension can schedule jobs without dependents having been imported<br>yet.</p>\n<h2 id=\"auto-generation-of-api-clients\">Auto-generation of API Clients</h2>\n<p>The kernel exposes an OpenAPI v3 spec file at <code>http:///docs/docs.yaml</code>.<br>It's recommended to auto-generate an API client from this spec file and<br>have it integrated as part of your build process. This makes it easier<br>to incorporate changes and be warned of breaking changes.</p>\n<p>See <a href=\"https://openapi-generator.tech\">https://openapi-generator.tech</a> for<br>supported languages and build tool integrations.</p>\n<p><strong>Note:</strong> You will need to set <code>--global-property skipFormModel=true</code> in<br>the generators global settings for all the models to be correctly generated.<br>See <a href=\"https://openapi-generator.tech/docs/customization/#selective-generation\">OpenAPI generator customization</a><br>for more information.</p>\n<h2 id=\"deployment\">Deployment</h2>\n<h3 id=\"docker\">Docker</h3>\n<p>Docker is recommended for local development and for simple production<br>deployments. It can deployed alongside a single PLM instance or on a<br>separate container that is accessible by the PLM instance. Ask a Vertex<br>representative for access to the Docker image.</p>\n<p>Here's an example compose file to spin up the kernel and its dependencies.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code># docker-compose.yml\nversion: \"3\"\nservices:\n  plm-integration-kernel:\n    image: vertexvis/plm-integration-kernel:latest\n    ports:\n      - 8080:8080\n    environment:\n      DATABASE_URL: jdbc:postgresql://localhost:5432/plm-integration-service-data\n      DATABASE_USER: ${postgres-user}\n      DATABASE_PASSWORD: ${postgres-pass}\n      RABBITMQ_URL: {{vault:amqp-secret-url}}.0.0.1:5672\n      RABBITMQ_USER: ${rabbitmq-user}\n      RABBITMQ_PASS: ${rabbitmq-pass}\n      VERTEX_BASE_URL: https://platform.platprod.vertexvis.io\n      VERTEX_CLIENT_ID: ${vertex-client-id}\n      VERTEX_CLIENT_SECRET: ${vertex-client-secret}\n    volumes:\n      - ./.kernel/files/:/tmp/plm-integration-service/files\n  postgres:\n    image: postgres:13.0-alpine\n    ports:\n      - 5432:5432\n    restart: always\n    environment:\n      POSTGRES_USER: ${postgres-user}\n      POSTGRES_PASSWORD: ${postgres-pass}\n      POSTGRES_DB: plm-integration-service-data\n    volumes:\n      - ./.postgres:/var/lib/postgresql/data\n  rabbitmq:\n    image: rabbitmq:3.12-management-alpine\n    ports:\n      - 5672:5672\n      - 9102:15672\n    environment:\n      RABBITMQ_DEFAULT_USER: ${rabbitmq-user}\n      RABBITMQ_DEFAULT_PASS: ${rabbitmq-pass}\n    volumes:\n      - ./.rabbitmq/data/:/var/lib/rabbitmq\n      - ./.rabbitmq/log/:/var/log/rabbitmq\n\n</code></pre><p>Then run <code>docker compose up -d</code> to start the necessary services.</p>\n<h3 id=\"aws\">AWS</h3>\n<p>Ask a Vertex representative for more information about deploying<br>the kernel to a managed AWS environment.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"19169840","collectionId":"211b8398-7ee1-4b43-ab49-cce7cdb0a373","publishedId":"2sAXjJ7ZLe","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-08-29T03:11:35.000Z"},"item":[{"name":"file-collections","item":[{"name":"{id}","item":[{"name":"files","item":[{"name":"get File Collection Files","id":"879c5430-9261-44c6-96cd-69773cfc8018","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","description":"<p>List the files in a <code>file-collection</code>.</p>\n","urlObject":{"path":["file-collections",":id","files"],"host":["https://plm-service.my-company.com"],"query":[{"description":{"content":"<p>The cursor to fetch.</p>\n","type":"text/plain"},"key":"page[cursor]","value":"string"},{"description":{"content":"<p>The number of results to query. if omitted, will default to 500.</p>\n","type":"text/plain"},"key":"page[size]","value":"8298"}],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"838941b8-7893-44b0-bd80-969abaab54fb","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": \"c35a9fff-0f31-6cf4-d074-600fe614d3e4\",\n      \"name\": \"string\",\n      \"status\": \"complete\",\n      \"createdAt\": \"1947-04-21T12:01:26.958Z\",\n      \"rootFileName\": \"string\",\n      \"plmFileId\": \"string\",\n      \"uploadedAt\": \"2002-11-15T20:36:24.594Z\",\n      \"size\": 7238,\n      \"metadata\": {\n        \"key_0\": \"string\",\n        \"key_1\": \"string\",\n        \"key_2\": \"string\"\n      }\n    },\n    {\n      \"id\": \"2faee217-f890-d09a-32c9-9c3dea6f2c09\",\n      \"name\": \"string\",\n      \"status\": \"pending\",\n      \"createdAt\": \"1987-11-21T21:27:59.519Z\",\n      \"rootFileName\": \"string\",\n      \"plmFileId\": \"string\",\n      \"uploadedAt\": \"2015-01-09T00:12:05.693Z\",\n      \"size\": 9025,\n      \"metadata\": {\n        \"key_0\": \"string\"\n      }\n    }\n  ],\n  \"next\": \"string\"\n}"},{"id":"8f74e5b7-2c00-404e-8d43-e25eab0f3bea","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"6d5f8505-602d-4d21-8b5e-a1ad6de82c35","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"a8a52af0-9a76-4969-802e-9c9fc3784638","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"df99cb9e-2c10-48e4-bf13-e095345163f0","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"f290fece-f0b0-4081-9546-d9e2335ead91","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"6fbdc26c-f916-40b5-8334-3faa8e329aa5","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"c20e09c3-1643-4d4c-8570-354dc4a99105","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2644eb2b-6582-4252-845c-58050f15bd71","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"31061831-3af3-4e97-b1e9-72c0a4dc71fb","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"879c5430-9261-44c6-96cd-69773cfc8018"},{"name":"add File Collection Files","id":"7a72df42-a1f7-415a-878f-0b0b3def0794","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections/:id/files","description":"<p>Add files to a <code>file-collection</code>.</p>\n","urlObject":{"path":["file-collections",":id","files"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"5f353955-4e9e-4acb-ad98-157978417f34","name":"Untitled Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"0cd59c6e-289e-5d55-eef1-0160281699d7\",\n  \"createdAt\": \"2002-04-30T11:18:33.916Z\",\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"metadata\": {\n    \"key_0\": \"string\"\n  }\n}"},{"id":"95ae00f2-5752-4f59-8672-b502eb5b54a9","name":"Client specified an invalid argument.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"60df0e23-28d1-45cd-9bc3-498171afb1f8","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"b0194727-1bed-4bbf-99d8-a83aa52d0403","name":"Permission to resource denied.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"dc614462-a17e-48a3-920a-c5d08679222f","name":"A specified resource is not found.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"2ad767ad-0bed-437f-9f58-3ce4bf934b32","name":"Resource already exists.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"a8ff834b-e33c-4fa8-afcb-8d16803200db","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"5ec2e52a-024c-44db-b254-47eedd0e684e","name":"Unknown server error.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"aeb99894-c38a-4e9b-bb0d-0fd962cafed9","name":"Method not implemented.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"657d92ba-2ad8-4ad4-81a9-5c5b43c58aa2","name":"Server unavailable.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"vertexFileIds\": [\n    \"29639961-a6ab-7ee7-2c99-ae9eb94208e3\",\n    \"292a7a5b-9fcc-58c4-cb24-120ac5fec1ef\"\n  ]\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"7a72df42-a1f7-415a-878f-0b0b3def0794"},{"name":"remove File Collection Files","id":"9861dcdb-47cd-46aa-bf38-3308e4dba113","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=9cb1537b-c7a7-527f-315c-a50957226e6e&vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","description":"<p>Remove files from a <code>file-collection</code>.</p>\n","urlObject":{"path":["file-collections",":id","files"],"host":["https://plm-service.my-company.com"],"query":[{"description":{"content":"<p>Remove files from collection matching the given file ID. Supports multiple IDs.</p>\n","type":"text/plain"},"key":"vertexFileIds","value":"9cb1537b-c7a7-527f-315c-a50957226e6e"},{"description":{"content":"<p>Remove files from collection matching the given file ID. Supports multiple IDs.</p>\n","type":"text/plain"},"key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"cf1a3e80-e467-45b8-963b-fc6cd6eba5e2","name":"Untitled Response","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"b31886b5-c640-4340-b85c-6483ed23c121","name":"Client specified an invalid argument.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"452f22d4-255a-4414-a375-6be575d88eb4","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"723c9b3a-c0b1-4a33-abe1-e18a6b8ae9b6","name":"Permission to resource denied.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"50f5b7c6-4aef-4515-a61d-09a56c35d559","name":"A specified resource is not found.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"083a0d74-aa3d-48f1-b844-36f53b574bb8","name":"Resource already exists.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"dae38940-2957-40fd-8a84-926ac1a2cc75","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"85312db7-af23-4964-87ae-1851e95333df","name":"Unknown server error.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"00dc5d0e-96e2-4cf8-ad80-57a1d93b4fa1","name":"Method not implemented.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f1297858-506b-4af7-a4af-59e840eb4cf2","name":"Server unavailable.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id/files?vertexFileIds=36332ca1-ee43-5325-d101-e413c80fe3e3","host":["https://plm-service.my-company.com"],"path":["file-collections",":id","files"],"query":[{"description":"Remove files from collection matching the given file ID. Supports multiple IDs.","key":"vertexFileIds","value":"36332ca1-ee43-5325-d101-e413c80fe3e3"}],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"9861dcdb-47cd-46aa-bf38-3308e4dba113"}],"id":"2dc23645-98c6-4507-b174-cedb466c3a65","_postman_id":"2dc23645-98c6-4507-b174-cedb466c3a65","description":""},{"name":"get File Collection","id":"1adda67c-8244-4b13-a827-c791a8e5fa78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/file-collections/:id","description":"<p>Get a <code>file-collection</code> by ID.</p>\n","urlObject":{"path":["file-collections",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"a5f315d4-fc83-467f-bb66-56327f682076","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"0cd59c6e-289e-5d55-eef1-0160281699d7\",\n  \"createdAt\": \"2002-04-30T11:18:33.916Z\",\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"metadata\": {\n    \"key_0\": \"string\"\n  }\n}"},{"id":"76ffd194-cc1e-443e-aaa5-ca3051815f53","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"fabfec2f-9899-43f4-ac32-f56c841ccdb6","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"0d4d70bf-643c-4287-886c-80722073c463","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2141cd68-4675-4e4c-ab21-920dca459c3e","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"6e712633-3038-46c4-8368-e247753fe375","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"8f305bbd-209c-4b82-bb29-f3f39710eaf4","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"28eb4ec0-a978-441e-a12a-911a4a0e7ca3","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"7a68f762-53f8-48b4-a42d-cf6ad5a65e17","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"94c202ad-9e93-48f6-9ef8-7f4a76c24070","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"1adda67c-8244-4b13-a827-c791a8e5fa78"},{"name":"delete File Collection","id":"ba216f1b-5885-4ca6-969d-72c1101bea38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/file-collections/:id","description":"<p>Delete a <code>file-collection</code>.</p>\n","urlObject":{"path":["file-collections",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"1765c1e5-952f-4d3f-9279-992d83d41cab","name":"Untitled Response","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"821468c4-aa6e-4251-82a4-e7569af79ff9","name":"Client specified an invalid argument.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"f35d0406-fb52-439d-8df3-4e84173de5e4","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"016b3dab-5a50-486d-a262-10f6d17b5a3a","name":"Permission to resource denied.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"eceecabc-6bce-4885-89d3-7eb6ec5c0d2f","name":"A specified resource is not found.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"12af13df-4a20-48b1-af76-06398d2c6ec1","name":"Resource already exists.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"45b3d460-0677-4e4a-a1bb-c3a49affeeae","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"da5941d6-1ea8-428a-adbe-ea5b66f3c3a6","name":"Unknown server error.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"33c3c35b-6a32-47e4-a727-4a39ed279523","name":"Method not implemented.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"d98b71a7-6f4c-46c9-bf5f-717a46cbc299","name":"Server unavailable.","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"ba216f1b-5885-4ca6-969d-72c1101bea38"},{"name":"update File Collection","id":"b7b0f793-c5c0-4df2-a8b9-cf2a6384c4c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections/:id","description":"<p>Update a <code>file-collection</code>.</p>\n","urlObject":{"path":["file-collections",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"d58738e5-86b4-4810-a1b9-9afcc824e9b5","name":"Untitled Response","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"7f4e2342-d8a6-4564-862e-c05b1e58a32a","name":"Client specified an invalid argument.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"434c76fb-b81f-4025-a1e3-ea489bc03fdf","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"47e3f47f-978c-41d4-b4c9-e5d17c737270","name":"Permission to resource denied.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"022bb4d9-1e9b-4a9a-905f-7cd740d6536f","name":"A specified resource is not found.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"1f1caa7c-f81c-4fc9-90b1-44c9e01650d7","name":"Resource already exists.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"d11cfe2c-576d-4dd0-89f7-52c86be757ca","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"e14f2078-34b6-4baf-83e7-580064b0edb6","name":"Unknown server error.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"a9c55023-63a2-4281-92c4-c3df703e7c5a","name":"Method not implemented.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"184b957d-68f7-4aa2-8d57-e2d59b67006c","name":"Server unavailable.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"expiry\": 2915\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/file-collections/:id","host":["https://plm-service.my-company.com"],"path":["file-collections",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"b7b0f793-c5c0-4df2-a8b9-cf2a6384c4c0"}],"id":"9b9a54e1-f9b5-4598-a630-9dcb6e162536","_postman_id":"9b9a54e1-f9b5-4598-a630-9dcb6e162536","description":""},{"name":"get File Collections","id":"591e041a-dccb-4226-821c-690c375f84b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","description":"<p>Fetches a paged list of file collections.</p>\n","urlObject":{"path":["file-collections"],"host":["https://plm-service.my-company.com"],"query":[{"description":{"content":"<p>Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.</p>\n","type":"text/plain"},"key":"plmFileCollectionIds","value":"string"},{"description":{"content":"<p>Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.</p>\n","type":"text/plain"},"key":"plmFileCollectionIds","value":"string"},{"description":{"content":"<p>The cursor to fetch.</p>\n","type":"text/plain"},"key":"page[cursor]","value":"string"},{"description":{"content":"<p>The number of results to query. if omitted, will default to 500.</p>\n","type":"text/plain"},"key":"page[size]","value":"8298"}],"variable":[]}},"response":[{"id":"6388fb02-18b0-4a62-8900-76ba91f45d55","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": \"d7ca3103-ad40-c2ab-66cf-41974592d5e4\",\n      \"createdAt\": \"2000-01-16T17:50:41.502Z\",\n      \"name\": \"string\",\n      \"plmFileCollectionId\": \"str\",\n      \"metadata\": {\n        \"key_0\": \"string\",\n        \"key_1\": \"string\"\n      }\n    },\n    {\n      \"id\": \"6fb3407e-5ac3-a4f4-54ac-000fdbe5e8b2\",\n      \"createdAt\": \"1948-06-06T03:49:16.944Z\",\n      \"name\": \"string\",\n      \"plmFileCollectionId\": \"string\",\n      \"metadata\": {\n        \"key_0\": \"string\"\n      }\n    }\n  ],\n  \"next\": \"string\"\n}"},{"id":"383206a0-f20e-495f-82c1-fdb5b5289d9a","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"1350d488-e95f-4b54-9ad0-c4086b3ce999","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"54240adc-1e35-43b4-b6bf-0f57aaa07e0a","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"11e806fd-ffa1-4e35-9025-64238b870a65","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"ddb51517-2e4d-4ffd-a707-0926d0880ee3","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"12de8a16-afec-40d2-aaea-c7190a8f8ce1","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f9b68c4f-9083-4aad-a2e8-56fce14835a0","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"eb2678f6-2bf2-4912-977e-4e53492ed4c2","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"03070b49-9bab-4826-ac35-b5cf7bb78701","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/file-collections?plmFileCollectionIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["file-collections"],"query":[{"description":"Filter collections matching the given PLM file collection ID. Supports filtering on multiple IDs.","key":"plmFileCollectionIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"591e041a-dccb-4226-821c-690c375f84b2"},{"name":"create File Collection","id":"89cb586f-54ff-46e3-959c-ea5761079738","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections","description":"<p>Create a <code>file-collection</code>.</p>\n","urlObject":{"path":["file-collections"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[]}},"response":[{"id":"9d3ab819-3f78-480b-9cd5-df5f1422eb2a","name":"Untitled Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"0cd59c6e-289e-5d55-eef1-0160281699d7\",\n  \"createdAt\": \"2002-04-30T11:18:33.916Z\",\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"metadata\": {\n    \"key_0\": \"string\"\n  }\n}"},{"id":"6ce14799-85b8-4579-b460-72951488fa58","name":"Client specified an invalid argument.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"084f69b4-3db8-4935-991e-d56360f2ec78","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f296a4c3-e00d-48f0-8dd6-0ddaf91e77af","name":"Permission to resource denied.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"1c3adb99-1038-43e8-ad58-e944b53769e4","name":"A specified resource is not found.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"a2ad949a-44fb-45df-9012-0f7e373b4326","name":"Resource already exists.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"d3fb8ba1-b32c-4ce8-a117-e1551efefaa6","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"cfe66930-fefd-4656-a67d-99e25771e9d8","name":"Unknown server error.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"70aa6314-d060-4e6e-bc24-85f57eb9af2b","name":"Method not implemented.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"af4275cb-6095-49f6-91dd-8c9911af801c","name":"Server unavailable.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"plmFileCollectionId\": \"string\",\n  \"expiry\": 3143,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/file-collections"},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"89cb586f-54ff-46e3-959c-ea5761079738"}],"id":"17bab08b-540e-4b25-9516-a1630252bbc9","_postman_id":"17bab08b-540e-4b25-9516-a1630252bbc9","description":""},{"name":"files","item":[{"name":"{id}","item":[{"name":"get File","id":"e56d85a9-c23e-4069-a78a-f7e2ad7c35e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/files/:id","description":"<p>Get a <code>file</code> by ID.</p>\n","urlObject":{"path":["files",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"description":{"content":"<p>The <code>file</code> ID.</p>\n","type":"text/plain"},"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"a23914f4-4c5f-4f36-9fbb-7ac6870e088a","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"b46dd984-cab4-79fc-7757-6a311a0c8c4d\",\n  \"name\": \"string\",\n  \"status\": \"complete\",\n  \"createdAt\": \"1962-01-09T17:01:12.955Z\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"uploadedAt\": \"2018-04-09T05:04:01.079Z\",\n  \"size\": 2402,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}"},{"id":"5964afca-f49c-4f40-9b77-1e7da9044b5f","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"91f20979-b6df-4773-9df3-a9fdd51d9c77","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"ee126af4-1ef8-42dd-802e-eab33c1e5059","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2c4a5267-b992-40ee-bf22-e77af15ad7e0","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"0d4922c9-bbd8-4611-bc9e-0c2bd29d6d0f","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"33664ada-680e-40b2-ad5f-cde213d8aca7","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"0554fdcc-8f9d-450d-8099-de79ef977f8f","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"9d46f513-6fc0-44b9-9135-e21017392f8f","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"7f2d2d62-0102-49ce-a0d3-94b46394a7a4","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"e56d85a9-c23e-4069-a78a-f7e2ad7c35e7"},{"name":"upload File","id":"97ae6eeb-4134-43ae-81ad-d9a33812ef1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":"https://plm-service.my-company.com/files/:id","urlObject":{"path":["files",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"description":{"content":"<p>The <code>file</code> ID.</p>\n","type":"text/plain"},"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"cf6b8d69-ae9f-4109-bc16-f1bc19411ea2","name":"Untitled Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6196072a-6116-478b-9230-1771ba2b4e62","name":"Client specified an invalid argument.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"37e9f457-537c-4561-b8e6-1e2441d05114","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"fe76b572-49ac-4c8b-8e34-b6a232b6c329","name":"Permission to resource denied.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"21455c71-6fcf-472d-aa7f-c402393ef374","name":"A specified resource is not found.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"92db57dc-ab80-4474-9471-9321366991d1","name":"Resource already exists.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"f533d06a-4590-4cf5-bba3-ef7a64d07b71","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"005d7a43-b7f2-4f1c-aa2c-30fba9397a99","name":"Unknown server error.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"de7bf703-6e4e-4c50-93de-25fce49dc644","name":"Method not implemented.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"80812401-33eb-482b-9deb-2dc2fa22b1a2","name":"Server unavailable.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/octet-stream"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"string"},"url":{"raw":"https://plm-service.my-company.com/files/:id","host":["https://plm-service.my-company.com"],"path":["files",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","description":"The `file` ID."}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"97ae6eeb-4134-43ae-81ad-d9a33812ef1a"}],"id":"ed4151f5-21a0-4dbc-a462-1169098e39eb","_postman_id":"ed4151f5-21a0-4dbc-a462-1169098e39eb","description":""},{"name":"get Files","id":"bf93c8ef-1c3f-47d4-af27-99f56afaaa30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/files?plmFileIds=string&plmFileIds=string&page[cursor]=string&page[size]=8298","description":"<p>Get <code>files</code>.</p>\n","urlObject":{"path":["files"],"host":["https://plm-service.my-company.com"],"query":[{"description":{"content":"<p>Filter files matching the given PLM file ID. Supports filtering on multiple IDs.</p>\n","type":"text/plain"},"key":"plmFileIds","value":"string"},{"description":{"content":"<p>Filter files matching the given PLM file ID. Supports filtering on multiple IDs.</p>\n","type":"text/plain"},"key":"plmFileIds","value":"string"},{"description":{"content":"<p>The cursor to fetch.</p>\n","type":"text/plain"},"key":"page[cursor]","value":"string"},{"description":{"content":"<p>The number of results to query. if omitted, will default to 500.</p>\n","type":"text/plain"},"key":"page[size]","value":"8298"}],"variable":[]}},"response":[{"id":"52f59948-7d56-4cc7-b346-d88cf004c1bb","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": \"c35a9fff-0f31-6cf4-d074-600fe614d3e4\",\n      \"name\": \"string\",\n      \"status\": \"complete\",\n      \"createdAt\": \"1947-04-21T12:01:26.958Z\",\n      \"rootFileName\": \"string\",\n      \"plmFileId\": \"string\",\n      \"uploadedAt\": \"2002-11-15T20:36:24.594Z\",\n      \"size\": 7238,\n      \"metadata\": {\n        \"key_0\": \"string\",\n        \"key_1\": \"string\",\n        \"key_2\": \"string\"\n      }\n    },\n    {\n      \"id\": \"2faee217-f890-d09a-32c9-9c3dea6f2c09\",\n      \"name\": \"string\",\n      \"status\": \"pending\",\n      \"createdAt\": \"1987-11-21T21:27:59.519Z\",\n      \"rootFileName\": \"string\",\n      \"plmFileId\": \"string\",\n      \"uploadedAt\": \"2015-01-09T00:12:05.693Z\",\n      \"size\": 9025,\n      \"metadata\": {\n        \"key_0\": \"string\"\n      }\n    }\n  ],\n  \"next\": \"string\"\n}"},{"id":"368ef097-1d6d-4bd8-afcc-a0091907737f","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"58c3d14d-4fd0-426e-9b55-2b6c52dd7137","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"d0e52b71-876c-42d3-9ca0-d084fe3fba30","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"214612aa-aa69-4c6f-8b0e-9710417f890d","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"0ff31e7f-51da-43b4-84b3-725b8ec77eb6","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"698710d8-d6cb-4e1f-875d-a740f93f74ce","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"e9b35ff3-87c6-4921-86c4-3c96e6e8a669","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2c90d955-d3f1-4c32-8d9d-2e954a7fbe86","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"abf19ab1-ba90-4b6d-a3e2-c9c33f808646","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/files?plmFileIds=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["files"],"query":[{"description":"Filter files matching the given PLM file ID. Supports filtering on multiple IDs.","key":"plmFileIds","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"bf93c8ef-1c3f-47d4-af27-99f56afaaa30"},{"name":"create File","id":"7b2b5f8c-74f1-417e-afec-325c9009c2b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files","description":"<p>Create a <code>file</code>. Once created, upload file content via the uploadFile API.</p>\n","urlObject":{"path":["files"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[]}},"response":[{"id":"ab9e190f-5d99-4d21-ac38-9f5a8d308a05","name":"Untitled Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"b46dd984-cab4-79fc-7757-6a311a0c8c4d\",\n  \"name\": \"string\",\n  \"status\": \"complete\",\n  \"createdAt\": \"1962-01-09T17:01:12.955Z\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"uploadedAt\": \"2018-04-09T05:04:01.079Z\",\n  \"size\": 2402,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}"},{"id":"98d5fbcd-591e-4767-acf1-7d26c5e322ae","name":"Client specified an invalid argument.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"fb33441d-99d9-4c0a-bacb-6c6b833febf9","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"df2e1a6b-8a11-40fc-83ec-aecc60a6a19d","name":"Permission to resource denied.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"8ad2e11f-49e2-4021-9964-daafb810e7ae","name":"A specified resource is not found.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"ee75505f-1f14-4f3f-b348-61f6ba562c13","name":"Resource already exists.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"c1f76fd5-be2f-4e85-acc0-72a3baa22341","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f4a22f4c-9d62-44ab-91ca-475f03c2665d","name":"Unknown server error.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"1390c420-5d9f-4cf6-950e-6777f85a32bf","name":"Method not implemented.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"8c424621-be3c-4182-b5ca-69acc4a07956","name":"Server unavailable.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"string\",\n  \"rootFileName\": \"string\",\n  \"plmFileId\": \"string\",\n  \"expiry\": 6781,\n  \"metadata\": {\n    \"key_0\": \"string\",\n    \"key_1\": \"string\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/files"},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"7b2b5f8c-74f1-417e-afec-325c9009c2b0"}],"id":"d257e989-affd-4433-ace4-1a159f98028b","_postman_id":"d257e989-affd-4433-ace4-1a159f98028b","description":""},{"name":"registered-parts","item":[{"name":"{id}","item":[{"name":"get Registered Part","id":"b09a9e79-29b6-47c1-a6ec-a989a3b736ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/registered-parts/:id","description":"<p>Fetches a part registration.</p>\n","urlObject":{"path":["registered-parts",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"1084d06f-506b-4fcd-82ee-adaee535791f","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"23446638-1dae-5625-1dfa-ac4cf6fc04b6\",\n  \"createdAt\": \"1947-01-30T15:58:33.087Z\",\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"vertexPartId\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": false,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}"},{"id":"0645a8e2-03d3-4f77-8aa7-59e3480068bd","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"86d1a596-7b6d-48ad-99a2-20233a19a982","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"8868e829-e669-4b36-bbc6-03cd3e77affd","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"d2fe3078-ad9f-42c0-aa2e-90c89782b93c","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"c6caf632-1d3e-4c24-a40e-3215f914b629","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"7fd7682f-7edf-41ba-b9b5-8cda2121e88f","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"3c5f92d4-3b4e-43fb-b438-79ff3244495d","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"d27ab529-90b1-4204-99e9-2e4fee35ba14","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"b516dce9-2861-4201-9eeb-ed88bc26ccf3","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"b09a9e79-29b6-47c1-a6ec-a989a3b736ea"},{"name":"update Registered Part","id":"9ae90d11-fabb-4242-a7a2-8fc36c31f165","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts/:id","description":"<p>Schedules a job that will perform an update of the registered part.</p>\n","urlObject":{"path":["registered-parts",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"cebddc63-c9de-47b3-99ee-3bde334389e5","name":"Untitled Response","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"Location","value":"string"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"22274828-80cc-cc08-775b-dc1527d6912a\",\n  \"createdAt\": \"1949-06-09T17:17:08.154Z\",\n  \"status\": \"overridden\",\n  \"completionData\": {\n    \"type\": \"string\",\n    \"vertexSceneId\": \"string\"\n  },\n  \"vertexJobId\": \"d3107038-379e-7c5b-ec00-2b5f70d5ea40\"\n}"},{"id":"5f9d072c-7c9d-454c-9ab1-5e001091e559","name":"Untitled Response","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"Location","value":"string"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"22274828-80cc-cc08-775b-dc1527d6912a\",\n  \"createdAt\": \"1949-06-09T17:17:08.154Z\",\n  \"status\": \"overridden\",\n  \"completionData\": {\n    \"type\": \"string\",\n    \"vertexSceneId\": \"string\"\n  },\n  \"vertexJobId\": \"d3107038-379e-7c5b-ec00-2b5f70d5ea40\"\n}"},{"id":"47193d0e-f8a7-4902-899a-0d71c1ab1597","name":"Client specified an invalid argument.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"3100ee1e-82a9-4ee9-9f19-eeb73e7fde2b","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"b6e2670c-62b4-4205-85ee-abdead1b62a6","name":"Permission to resource denied.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"a1dbac98-e6e7-4e8a-bedc-acd6cc42cf82","name":"A specified resource is not found.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"53fe1dfc-411f-406b-b8a1-e1be756b380f","name":"Resource already exists.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"c9f71d4b-2578-4785-96e0-f13cb817c9bc","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"14295337-bb39-4515-bc39-6bb18603df35","name":"Unknown server error.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2ba02e3e-07a2-4b39-8da8-5510a3e6c4bf","name":"Method not implemented.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"d1ac0651-37df-40d4-ba35-94dd0fe532db","name":"Server unavailable.","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:id","host":["https://plm-service.my-company.com"],"path":["registered-parts",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"9ae90d11-fabb-4242-a7a2-8fc36c31f165"}],"id":"6d317dd0-53b8-4b7a-8f60-2c0fb8bc7b61","_postman_id":"6d317dd0-53b8-4b7a-8f60-2c0fb8bc7b61","description":""},{"name":"{partId}","item":[{"name":"revisions","item":[{"name":"get Registered Part Revisions For Part","id":"a33abf37-2c79-4d91-9ad6-0ebf951f174f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","description":"<p>Fetches a paged list of registered part revisions belonging to a part.</p>\n","urlObject":{"path":["registered-parts",":partId","revisions"],"host":["https://plm-service.my-company.com"],"query":[{"description":{"content":"<p>Filter revisions that are assigned the given PLM revision identifier.</p>\n","type":"text/plain"},"key":"plmRevisionId","value":"string"},{"description":{"content":"<p>Filter revisions that are assigned the given PLM iteration identifier.</p>\n","type":"text/plain"},"key":"plmIterationId","value":"string"},{"description":{"content":"<p>The cursor to fetch.</p>\n","type":"text/plain"},"key":"page[cursor]","value":"string"},{"description":{"content":"<p>The number of results to query. if omitted, will default to 500.</p>\n","type":"text/plain"},"key":"page[size]","value":"8298"}],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"partId"}]}},"response":[{"id":"0f7397b0-9d84-492c-b24e-c5d2dfc0ee09","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": \"466c219e-8b8f-f623-37bb-19452c2e54c6\",\n      \"createdAt\": \"1980-06-24T07:57:27.001Z\",\n      \"registeredPartId\": \"dbc11cc3-a610-3ecd-5865-8e8174c2e4d9\",\n      \"plmRevisionId\": \"string\",\n      \"plmDisplayName\": \"string\",\n      \"vertexPartRevisionId\": \"string\",\n      \"vertexSceneId\": \"string\",\n      \"plmIterationId\": \"string\"\n    },\n    {\n      \"id\": \"e783ba26-81e5-c787-c1fe-df140c3a6292\",\n      \"createdAt\": \"2018-06-20T10:17:13.885Z\",\n      \"registeredPartId\": \"7329dbd2-1994-c08a-f621-4a3098c8b9fa\",\n      \"plmRevisionId\": \"string\",\n      \"plmDisplayName\": \"string\",\n      \"vertexPartRevisionId\": \"string\",\n      \"vertexSceneId\": \"string\",\n      \"plmIterationId\": \"string\"\n    }\n  ],\n  \"next\": \"string\"\n}"},{"id":"1fc01161-1af3-438e-9622-cf2f99ec4ae1","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"d0de9760-92dd-45ea-a726-4d6f38fbdae1","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"8bd112ff-a90a-422e-9a9a-03d663bcff12","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"7a90353f-ffe2-4096-837a-bef31f8c753a","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"15286c87-0f71-4da3-af48-25dc18bd56b9","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"fd2dd860-b276-4f1e-a8cd-268858b022f8","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"759b7dbd-0bf6-4139-8b50-07f7037646c4","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"38f012a5-93d8-4788-8517-5c53bf24778b","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"947a0dfe-d33a-4a90-b5c5-1e0b0ccf559d","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions?plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"query":[{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"a33abf37-2c79-4d91-9ad6-0ebf951f174f"},{"name":"create Registered Part Revision","id":"6a969e6c-9474-4c77-8b0a-6a9d4244798a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts/:partId/revisions","description":"<p>Associates a new revision with a part registration.</p>\n<p>Each revision requires a PLM version identifier, which is expected to be a stable\nunique identifier from the connected PLM system. If a duplicate version identifier\nis given, then a <code>409 CONFLICT</code> will be returned.</p>\n<p>After a revision has been created, use <code>POST /registered-part-revisions/:id/jobs</code>\nto schedule an import job for the revision.</p>\n","urlObject":{"path":["registered-parts",":partId","revisions"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"partId"}]}},"response":[{"id":"f50d2b5b-4852-488d-b024-399b73e8f90e","name":"Untitled Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"5446a9e7-70d5-0d4a-4f16-25061becf6fb\",\n  \"createdAt\": \"2004-02-18T19:05:07.474Z\",\n  \"registeredPartId\": \"5e245248-7e1e-c3b9-90fa-e58533aca0ce\",\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"vertexPartRevisionId\": \"string\",\n  \"vertexSceneId\": \"string\",\n  \"plmIterationId\": \"string\"\n}"},{"id":"2b194850-ecdd-4f95-a0c4-84d98e957fc9","name":"Client specified an invalid argument.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"28b40ef7-8214-49e7-aba0-2b0429554bdd","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"6d96f2ac-9b85-4456-9709-125e1968ea0b","name":"Permission to resource denied.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"9d3db5cb-2297-47e3-8834-f3d068b76918","name":"A specified resource is not found.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"01fcce54-4420-4545-806a-83795f80ad26","name":"Resource already exists.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"99908c97-40ba-42da-a5a3-25297fa98014","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f3242757-7c4e-46b1-b235-aedf17a00e96","name":"Unknown server error.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"783a20f9-6d24-4483-98b8-dcc9b1b07038","name":"Method not implemented.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f7a60050-61fa-4d0e-b027-394757241d93","name":"Server unavailable.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"metadata\": {\n    \"key_0\": {\n      \"value\": 5619.743668543266,\n      \"type\": \"string\"\n    }\n  },\n  \"plmIterationId\": \"string\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://plm-service.my-company.com/registered-parts/:partId/revisions","host":["https://plm-service.my-company.com"],"path":["registered-parts",":partId","revisions"],"variable":[{"key":"partId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"6a969e6c-9474-4c77-8b0a-6a9d4244798a"}],"id":"a9056569-f04c-4d5d-b9ee-a244e6b33225","_postman_id":"a9056569-f04c-4d5d-b9ee-a244e6b33225","description":""}],"id":"459c6bb8-8ed6-4ab8-8759-4767f5ff9c58","_postman_id":"459c6bb8-8ed6-4ab8-8759-4767f5ff9c58","description":""},{"name":"get Registered Parts","id":"db205122-74f7-4aee-b34d-e74fd9695d82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","description":"<p>Fetches a paged list of part registrations.</p>\n","urlObject":{"path":["registered-parts"],"host":["https://plm-service.my-company.com"],"query":[{"description":{"content":"<p>If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist</p>\n","type":"text/plain"},"key":"plmPartId","value":"string"},{"description":{"content":"<p>The cursor to fetch.</p>\n","type":"text/plain"},"key":"page[cursor]","value":"string"},{"description":{"content":"<p>The number of results to query. if omitted, will default to 500.</p>\n","type":"text/plain"},"key":"page[size]","value":"8298"}],"variable":[]}},"response":[{"id":"1fb4a47c-e4a6-490d-adfb-1af4d30207c1","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": \"e1038a6d-7d6a-cdf8-7399-01b36e9b1251\",\n      \"createdAt\": \"2009-09-05T05:42:25.524Z\",\n      \"plmPartId\": \"string\",\n      \"plmDisplayName\": \"string\",\n      \"vertexPartId\": \"string\",\n      \"sceneOptions\": {\n        \"createSceneForRevisions\": true,\n        \"connect\": {\n          \"workspaceUrn\": \"string\"\n        }\n      }\n    },\n    {\n      \"id\": \"8045fac0-69fb-81a2-b6aa-29f6bf95fb30\",\n      \"createdAt\": \"1969-08-02T11:41:59.012Z\",\n      \"plmPartId\": \"string\",\n      \"plmDisplayName\": \"string\",\n      \"vertexPartId\": \"string\",\n      \"sceneOptions\": {\n        \"createSceneForRevisions\": true,\n        \"connect\": {\n          \"workspaceUrn\": \"string\"\n        }\n      }\n    }\n  ],\n  \"next\": \"string\"\n}"},{"id":"f0d13330-61bf-46bf-905e-0d8b34dde5ba","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"47ccc9b1-7b54-4cca-8e03-60fc71f6ee3e","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"27818732-3043-454a-be9d-3236e0aba549","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"bead4b85-4d23-444a-8b3e-3f86d7f2ea78","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"c259605c-8cdf-41a5-a3d2-38365160d0bf","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"db41c1a5-4421-4672-9ecb-8daef5ef1d7b","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"a961f565-74fb-4822-80c9-2f052059cf52","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"44f8c82c-030a-4f53-967e-178a24e0e374","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"139507fa-51c0-4e0e-8bb1-3c4d9b4a871e","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-parts?plmPartId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-parts"],"query":[{"description":"If supplied, will return a list containing a single registered part that \nmatches the given PLM identifier. Or an empty list if the PLM identifier \ndoesn't exist","key":"plmPartId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"db205122-74f7-4aee-b34d-e74fd9695d82"},{"name":"create Registered Part","id":"4efeac76-6827-4cd6-8967-06ae2445a72b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts","description":"<p>Creates a new part registration. </p>\n<p>Each part registrations requires a PLM ID which is a stable unique identifier from the \nconnected PLM system. Identifiers must be unique. If a duplicate identifier is \nsupplied, then a <code>409 CONFLICT</code> will be returned.</p>\n<p>An optional <code>sceneOptions</code> can be provided to automatically create scenes during the \nexecution of a <code>RegisteredPartRevisionJob</code>.</p>\n<p>After a part registration has been created, use <code>POST /registered-part/:id/revisions</code>\nto associate a revision with a part.</p>\n","urlObject":{"path":["registered-parts"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[]}},"response":[{"id":"34f028e0-f408-4777-b5ff-7e28dd85d135","name":"Untitled Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"23446638-1dae-5625-1dfa-ac4cf6fc04b6\",\n  \"createdAt\": \"1947-01-30T15:58:33.087Z\",\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"vertexPartId\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": false,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}"},{"id":"36bdd01d-2578-4b68-827a-cfbeca013e81","name":"Client specified an invalid argument.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"fb68d94b-2280-4535-899c-c6c4713ff717","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"e05ee06a-61b6-4440-9820-26895c0341c0","name":"Permission to resource denied.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"b59dce3e-eb89-47d4-907c-1db1adb2cb26","name":"A specified resource is not found.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"1c752e75-6981-44f8-a009-237de03fdd2b","name":"Resource already exists.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"24fa83f7-8954-4bd2-b4e0-f39b63d4a0d0","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"49189f6f-df05-4fd1-8524-1924ea5223ca","name":"Unknown server error.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2e57031e-3bbe-4dc3-963e-e3bbec54ef1b","name":"Method not implemented.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"01a49eb7-613b-4f82-af84-f1bfe4fe5f3e","name":"Server unavailable.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"plmPartId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"sceneOptions\": {\n    \"createSceneForRevisions\": true,\n    \"connect\": {\n      \"workspaceUrn\": \"string\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/registered-parts"},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"4efeac76-6827-4cd6-8967-06ae2445a72b"}],"id":"e157927d-2ab0-46e5-90cd-e0518b7ae6a8","_postman_id":"e157927d-2ab0-46e5-90cd-e0518b7ae6a8","description":""},{"name":"registered-part-update-jobs","item":[{"name":"{id}","item":[{"name":"get Update Registered Part Job","id":"e0009537-903d-416a-b44c-6176b58e3732","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/registered-part-update-jobs/:id","description":"<p>Fetches a job to update a registered part.</p>\n","urlObject":{"path":["registered-part-update-jobs",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"73cb8cf3-cca3-4d2f-8a10-d706c7c73f17","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"22274828-80cc-cc08-775b-dc1527d6912a\",\n  \"createdAt\": \"1949-06-09T17:17:08.154Z\",\n  \"status\": \"overridden\",\n  \"completionData\": {\n    \"type\": \"string\",\n    \"vertexSceneId\": \"string\"\n  },\n  \"vertexJobId\": \"d3107038-379e-7c5b-ec00-2b5f70d5ea40\"\n}"},{"id":"b60844c3-6ece-4db7-bb19-1e4e6eae5194","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"2f815d5a-c545-4d06-b64f-91f3892cf75d","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"e4e569a2-088e-4207-be1b-2f77310a71c9","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f7daa16b-ecda-454d-9979-bfae9417afd3","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"7f6828ee-509a-4a6f-9621-94594de95355","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"e6b57ffa-ed67-4e07-b684-b398106dc744","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"18c5e3ac-ef64-401d-9220-dfe943174044","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"18ad7315-a0ad-42d1-987c-8cb678c5f286","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f3727c25-d26a-41da-8d89-ce699a935656","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-update-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-update-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"e0009537-903d-416a-b44c-6176b58e3732"}],"id":"a1cbd134-5133-47f0-9248-f22f90c31334","_postman_id":"a1cbd134-5133-47f0-9248-f22f90c31334","description":""}],"id":"e284203d-c46c-44f6-8d4e-37d9d5a07664","_postman_id":"e284203d-c46c-44f6-8d4e-37d9d5a07664","description":""},{"name":"registered-part-revisions","item":[{"name":"{id}","item":[{"name":"get Registered Part Revision","id":"ec7ef9dd-a00b-4a02-8466-9027a29e2fdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/registered-part-revisions/:id","description":"<p>Fetches a registered part revision.</p>\n","urlObject":{"path":["registered-part-revisions",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"27d562b7-6f20-4c0e-a40c-ad12f47971a1","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"5446a9e7-70d5-0d4a-4f16-25061becf6fb\",\n  \"createdAt\": \"2004-02-18T19:05:07.474Z\",\n  \"registeredPartId\": \"5e245248-7e1e-c3b9-90fa-e58533aca0ce\",\n  \"plmRevisionId\": \"string\",\n  \"plmDisplayName\": \"string\",\n  \"vertexPartRevisionId\": \"string\",\n  \"vertexSceneId\": \"string\",\n  \"plmIterationId\": \"string\"\n}"},{"id":"a14d758c-6d8a-472e-b374-6d5d6b3c84ef","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"96f6c8b2-0d30-4f66-93c0-b1c24a0a5976","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"a0e380f2-3d97-4aa5-bb82-6a25897f29a3","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"f8b816a6-6b01-468a-b1e8-e0b0c475189b","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"0982e49c-a5bd-46f7-af48-a8964a485d16","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"f71717b6-225f-4023-a43b-672cc549cfe9","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"212e90b6-053a-4dac-a566-82c357f59e88","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"a0a2bcd1-bd36-431f-aea6-34b49c394ed9","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2fd590aa-e561-460f-8c10-8e60a9044dc6","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"ec7ef9dd-a00b-4a02-8466-9027a29e2fdc"}],"id":"8fc8ac25-f40c-4fba-98f6-401e8d9bb1bc","_postman_id":"8fc8ac25-f40c-4fba-98f6-401e8d9bb1bc","description":""},{"name":"{revisionId}","item":[{"name":"jobs","item":[{"name":"get Jobs For Registered Part Revision","id":"dfeb79e1-df75-4c5a-b9e2-f59ed606c5c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&statuses=running&page[cursor]=string&page[size]=8298","description":"<p>Fetches a paged list of jobs for a registered part revision.</p>\n","urlObject":{"path":["registered-part-revisions",":revisionId","jobs"],"host":["https://plm-service.my-company.com"],"query":[{"description":{"content":"<p>Filter jobs matching the given status. Supports filtering on multiple statuses.</p>\n","type":"text/plain"},"key":"statuses","value":"running"},{"description":{"content":"<p>Filter jobs matching the given status. Supports filtering on multiple statuses.</p>\n","type":"text/plain"},"key":"statuses","value":"running"},{"description":{"content":"<p>The cursor to fetch.</p>\n","type":"text/plain"},"key":"page[cursor]","value":"string"},{"description":{"content":"<p>The number of results to query. if omitted, will default to 500.</p>\n","type":"text/plain"},"key":"page[size]","value":"8298"}],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"revisionId"}]}},"response":[{"id":"6864fed8-f17f-49b6-a92c-2522f18a08f6","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": \"5e5d92d3-421e-d15f-9c2a-912e679fbc7b\",\n      \"createdAt\": \"1971-10-04T07:46:24.380Z\",\n      \"status\": \"running\",\n      \"completionData\": {\n        \"type\": \"string\",\n        \"vertexSceneId\": \"string\"\n      },\n      \"vertexJobId\": \"453bb33a-1540-b1ec-03d2-922ca58746d9\"\n    },\n    {\n      \"id\": \"2d5b6396-687e-1c25-212b-bf2e1b24b4f7\",\n      \"createdAt\": \"2018-04-24T23:38:24.527Z\",\n      \"status\": \"success\",\n      \"completionData\": {\n        \"type\": \"string\",\n        \"vertexSceneId\": \"string\"\n      },\n      \"vertexJobId\": \"913054d8-7c7a-4e41-1a5a-c77ce8407b10\"\n    }\n  ],\n  \"next\": \"string\"\n}"},{"id":"f97da22d-2549-43cc-82ef-5e77eca212e1","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"1babca57-d26b-41b8-9937-f0bbd2f1283e","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"18bed5e7-4aaa-4db7-9f37-497146f65c57","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"8ec3f207-dd4f-4ed8-a5da-17e42e6c570b","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"16eade11-d808-4553-aa39-c2f8df077312","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"826c7e27-03ea-428c-b65f-fb5d559cc3de","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"1e7a79ea-f651-4e41-8042-b28f879e63ae","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"a582f600-3772-4ee7-b674-12262865dd72","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"72a241ab-bb77-4924-a13d-c5d3068ac684","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs?statuses=running&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"query":[{"description":"Filter jobs matching the given status. Supports filtering on multiple statuses.","key":"statuses","value":"running"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"dfeb79e1-df75-4c5a-b9e2-f59ed606c5c4"},{"name":"create Registered Part Revision Job","id":"7c5c2e9d-47d2-4895-9075-a5c82c7f50b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","value":null},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","description":"<p>Schedules a new import job for a registered part revision.</p>\n<p>The request body may include a CAD file to sync to Vertex. The CAD file must \nhave a filename specified, either as a <code>filename</code> content-disposition header \non <code>file</code>, or as a separate <code>fileName</code> attribute.</p>\n<p>The response will include a <code>Location</code> header that can be used to query the\nstatus of the scheduled job.</p>\n<p>A revision can only have a single job scheduled at a time. If multiple jobs\nare scheduled, this endpoint will return a <code>409 CONFLICT</code> status code.\nWait until a previous job has failed before attempting to schedule a new \njob.</p>\n<p>If a revision already has a job that completed successfully, then a <code>409  CONFLICT</code> will be returned.</p>\n","urlObject":{"path":["registered-part-revisions",":revisionId","jobs"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"revisionId"}]}},"response":[{"id":"f3a6a944-a5ce-4ce9-ad29-e642cd6a8d61","name":"Untitled Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"disabled":false,"description":{"content":"","type":"text/plain"},"key":"Location","value":"string"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"6502be5d-06b7-c48e-d124-79126d3c6f00\",\n  \"createdAt\": \"1950-09-07T11:51:23.399Z\",\n  \"status\": \"failed\",\n  \"completionData\": {\n    \"vertexPartId\": \"string\",\n    \"vertexPartRevisionId\": \"string\",\n    \"type\": \"string\"\n  },\n  \"vertexJobId\": \"da586735-ae72-47ab-763b-5db7cfa30022\"\n}"},{"id":"c7a76c4e-5657-46b7-b2f2-6547fdcc90da","name":"Client specified an invalid argument.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"4efde6d5-37f2-4af6-bc0a-f186b4490c6d","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"61e7b2fb-28f4-46d6-862d-05cfbb66e3ff","name":"Permission to resource denied.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"0a409151-eb39-4835-a14b-af63df001b32","name":"A specified resource is not found.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"f66c501e-52c7-4599-aabd-2e7256fd54f4","name":"Resource already exists.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"052dbfd5-f486-4fe3-bb94-017d795e68b5","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"c5d683fe-9da1-4723-83cd-ad4b56f63118","name":"Unknown server error.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"ef4480bc-1acf-4f32-8b62-f16f1484b075","name":"Method not implemented.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"2ee7b62d-85f8-42ea-ad7b-31729edcaade","name":"Server unavailable.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"multipart/form-data"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"assembly","value":"[object Object]","type":"text"},{"key":"file","type":"file","src":[]},{"key":"fileName","value":"string","type":"text"},{"key":"indexMetadata","value":"false","type":"text"}]},"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions/:revisionId/jobs","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions",":revisionId","jobs"],"variable":[{"key":"revisionId","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"7c5c2e9d-47d2-4895-9075-a5c82c7f50b0"}],"id":"75d49a3c-9345-443a-b504-03fdfc71a06b","_postman_id":"75d49a3c-9345-443a-b504-03fdfc71a06b","description":""}],"id":"7f8ac014-e230-4ef1-ac5e-eb3809109dc2","_postman_id":"7f8ac014-e230-4ef1-ac5e-eb3809109dc2","description":""},{"name":"get Registered Part Revisions","id":"4497ffd7-3f75-4f4b-bfd4-50ef4e2e21f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","description":"<p>Fetches a paged list of registered part revisions.</p>\n","urlObject":{"path":["registered-part-revisions"],"host":["https://plm-service.my-company.com"],"query":[{"description":{"content":"<p>Filter revisions belonging to a PLM part identifier.</p>\n","type":"text/plain"},"key":"plmPartId","value":"string"},{"description":{"content":"<p>Filter revisions that are assigned the given PLM revision identifier.</p>\n","type":"text/plain"},"key":"plmRevisionId","value":"string"},{"description":{"content":"<p>Filter revisions that are assigned the given PLM iteration identifier.</p>\n","type":"text/plain"},"key":"plmIterationId","value":"string"},{"description":{"content":"<p>The cursor to fetch.</p>\n","type":"text/plain"},"key":"page[cursor]","value":"string"},{"description":{"content":"<p>The number of results to query. if omitted, will default to 500.</p>\n","type":"text/plain"},"key":"page[size]","value":"8298"}],"variable":[]}},"response":[{"id":"26c876f0-4305-4c15-9592-c2e33457fbbd","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"items\": [\n    {\n      \"id\": \"466c219e-8b8f-f623-37bb-19452c2e54c6\",\n      \"createdAt\": \"1980-06-24T07:57:27.001Z\",\n      \"registeredPartId\": \"dbc11cc3-a610-3ecd-5865-8e8174c2e4d9\",\n      \"plmRevisionId\": \"string\",\n      \"plmDisplayName\": \"string\",\n      \"vertexPartRevisionId\": \"string\",\n      \"vertexSceneId\": \"string\",\n      \"plmIterationId\": \"string\"\n    },\n    {\n      \"id\": \"e783ba26-81e5-c787-c1fe-df140c3a6292\",\n      \"createdAt\": \"2018-06-20T10:17:13.885Z\",\n      \"registeredPartId\": \"7329dbd2-1994-c08a-f621-4a3098c8b9fa\",\n      \"plmRevisionId\": \"string\",\n      \"plmDisplayName\": \"string\",\n      \"vertexPartRevisionId\": \"string\",\n      \"vertexSceneId\": \"string\",\n      \"plmIterationId\": \"string\"\n    }\n  ],\n  \"next\": \"string\"\n}"},{"id":"d9ad73dc-0cb4-4d63-9aef-8b146faa35d5","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"48f2068e-7a19-4585-993d-ea6ad5229b90","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"589bed69-403c-40ac-8a11-4da2a840f280","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"037cfe65-e5d6-40b5-a99f-00da0c77fbc3","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"622f9c13-8521-4129-a09d-3884de0afcca","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"b2e96631-4236-470e-afba-adb91cd993fd","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"fd02cd45-a1c4-47a6-823d-340028e5d1fa","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"0bd95b9f-baf8-4be8-80fb-c095343a197b","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"5a6441da-3ceb-4a2e-9506-b521c251aea6","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revisions?plmPartId=string&plmRevisionId=string&plmIterationId=string&page[cursor]=string&page[size]=8298","host":["https://plm-service.my-company.com"],"path":["registered-part-revisions"],"query":[{"description":"Filter revisions belonging to a PLM part identifier.","key":"plmPartId","value":"string"},{"description":"Filter revisions that are assigned the given PLM revision identifier.","key":"plmRevisionId","value":"string"},{"description":"Filter revisions that are assigned the given PLM iteration identifier.","key":"plmIterationId","value":"string"},{"description":"The cursor to fetch.","key":"page[cursor]","value":"string"},{"description":"The number of results to query. if omitted, will default to 500.","key":"page[size]","value":"8298"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"4497ffd7-3f75-4f4b-bfd4-50ef4e2e21f6"}],"id":"66efd962-89fb-4b29-ac41-c5c623232673","_postman_id":"66efd962-89fb-4b29-ac41-c5c623232673","description":""},{"name":"registered-part-revision-jobs","item":[{"name":"{id}","item":[{"name":"get Registered Part Revision Job","id":"f7f232db-1eef-4308-ab9a-0888b3fb6dc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","description":"<p>Fetches a registered part revision job.</p>\n","urlObject":{"path":["registered-part-revision-jobs",":id"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[{"type":"any","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59","key":"id"}]}},"response":[{"id":"bd98dbd1-a049-46fd-8b9e-c6db8a75b9f2","name":"Untitled Response","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"6502be5d-06b7-c48e-d124-79126d3c6f00\",\n  \"createdAt\": \"1950-09-07T11:51:23.399Z\",\n  \"status\": \"failed\",\n  \"completionData\": {\n    \"vertexPartId\": \"string\",\n    \"vertexPartRevisionId\": \"string\",\n    \"type\": \"string\"\n  },\n  \"vertexJobId\": \"da586735-ae72-47ab-763b-5db7cfa30022\"\n}"},{"id":"591d2c88-97a0-45d0-ba92-4ec8382dd199","name":"Client specified an invalid argument.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"c87c9f73-3324-4a00-bbbe-f3c143480ceb","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"1f955a73-bb99-4064-9baf-0431f9a0fd3d","name":"Permission to resource denied.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"ddfe08d2-181b-46e1-b9ef-39f459d1aed4","name":"A specified resource is not found.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"ac8170e1-9a8a-4205-bd6b-158ac5e70286","name":"Resource already exists.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"4543f2c1-4349-4b67-a075-d9d1a5c67a0f","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"659d77f3-99bd-4c24-a45e-3048251e40a3","name":"Unknown server error.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"11ecc581-7efd-4532-bd91-20010a9bab01","name":"Method not implemented.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"1d5c5382-6f43-47f9-b74b-63023af432c1","name":"Server unavailable.","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"https://plm-service.my-company.com/registered-part-revision-jobs/:id","host":["https://plm-service.my-company.com"],"path":["registered-part-revision-jobs",":id"],"variable":[{"key":"id","value":"9c99def1-56bf-a7ba-0e0e-10c662c4ff59"}]}},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"f7f232db-1eef-4308-ab9a-0888b3fb6dc4"}],"id":"91a4cb74-f497-4514-b203-48a80df6da80","_postman_id":"91a4cb74-f497-4514-b203-48a80df6da80","description":""}],"id":"c51e252f-1341-4c4d-ab95-33c2655e1443","_postman_id":"c51e252f-1341-4c4d-ab95-33c2655e1443","description":""},{"name":"policies","item":[{"name":"create Policy","id":"0d2879d1-40b9-4703-9f2a-3ca4d18c678c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies","description":"<p>Create a <code>policy</code>.</p>\n","urlObject":{"path":["policies"],"host":["https://plm-service.my-company.com"],"query":[],"variable":[]}},"response":[{"id":"fc7537f5-71bb-4890-90ff-644ddb1062e0","name":"Untitled Response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Created","code":201,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"9f781752-5afc-49f4-a6e7-c2005a34c6f3","name":"Client specified an invalid argument.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"violations\": [\n    \"string\",\n    \"string\"\n  ]\n}"},{"id":"abd5ce4d-3aed-4046-bfdd-1ce55f87418c","name":"Request not authenticated due to missing, invalid, or expired token.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"42b9a8ae-4593-47f9-a123-688cdb3cae8e","name":"Permission to resource denied.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"fde7fa07-fa3c-4d8f-a74c-bc1037cb085b","name":"A specified resource is not found.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"54298686-3a3a-4bd5-9f0b-2bbd364e7bd0","name":"Resource already exists.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\",\n  \"resource\": \"string\"\n}"},{"id":"495b0dd3-31f9-4f72-a342-9a53f9f8da96","name":"Resource quota exceeded or reached rate limit.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"c6bd01d2-ccb3-490b-9c3d-d1ed26381941","name":"Unknown server error.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"a0283b95-0f96-418d-b65c-e639e714bc14","name":"Method not implemented.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Not Implemented","code":501,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"},{"id":"affe4dd1-176c-4a2f-b27e-de9cb79b9eef","name":"Server unavailable.","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"revisionId\": \"d3592494-cc46-6791-0b85-d361ada25cc6\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://plm-service.my-company.com/policies"},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"string\"\n}"}],"_postman_id":"0d2879d1-40b9-4703-9f2a-3ca4d18c678c"}],"id":"3cf8e079-62e8-4f3a-bcfd-0c4edbe0c286","_postman_id":"3cf8e079-62e8-4f3a-bcfd-0c4edbe0c286","description":""}],"event":[{"listen":"prerequest","script":{"id":"7f45f95c-89d6-4128-9a21-9690ff817ddb","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"e62025df-742a-4684-839d-90a418482364","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"id":"c8cdebe9-7911-4f2b-9f14-b836591597cd","key":"baseUrl","value":"https://plm-service.my-company.com"}]}