{"info":{"_postman_id":"8f666c8a-9dfe-4840-a4de-534638957dbb","name":"Guardora VFL API (v0.2.0) ENG","description":"<html><head></head><body><blockquote>\n<p><strong>Important</strong>: To ensure correct display of this documentation, please make sure your browser <strong>does not automatically translate</strong> text or commands into your native language. </p>\n</blockquote>\n<h2 id=\"🧠what-is-guardora-vfl\">🧠What is Guardora VFL?</h2>\n<p><strong>Guardora VFL</strong> is a solution for vertical federated learning (VFL) of machine learning models.</p>\n<p>The product is designed to work with <strong>tabular data</strong>.</p>\n<p>The following model architectures are currently supported:</p>\n<ul>\n<li><p>Gradient Boosting Decision Trees</p>\n</li>\n<li><p>Linear Regression</p>\n</li>\n<li><p>Logistic Regression</p>\n</li>\n<li><p>Softmax Regression</p>\n</li>\n</ul>\n<h2 id=\"🧩key-concepts-and-entities\">🧩Key Concepts and Entities</h2>\n<p><strong>Vertical Federated Learning (VFL):</strong> Applied when participating parties hold <strong>different features (columns)</strong> for the <strong>same entities (rows)</strong>. Only one party needs to have the target variable (label) for model training.</p>\n<p><strong>Active Party:</strong> Initiates model training/inference and sends requests to other parties. It is the <strong>only party that holds the target variable</strong>, which the model aims to predict.</p>\n<p><strong>Passive Party:</strong> Responds to training/inference requests from the active party, processes its own data, and sends results back. There can be <strong>multiple passive parties</strong>. Any party can act as either active or passive, depending on the setup.</p>\n<p><strong>Project:</strong> A workspace created to form a team of parties and upload datasets for model training and validation. The party <strong>with the target variable acts as the active party</strong>, while others act as passive parties. A project can be created by any party.</p>\n<p><strong>Task:</strong> To train a model within a project, a task must be created with a selected model type and hyperparameters. Only the <strong>active party</strong> (owner of the target variable) <strong>can launch a task</strong>. The output is a trained model, with its components distributed among the participating parties.</p>\n<p><strong>Inference:</strong> To use a previously trained model, participating parties must mark datasets for inference. The datasets must contain <strong>the same features</strong> as used in training. Any party can initiate inference. The output is the <strong>model’s predictions</strong>.</p>\n<h2 id=\"📡using-the-api\">📡Using the API</h2>\n<img src=\"https://content.pstmn.io/c76940e0-8f21-43c1-aaf3-545e137f9ebc/VkZMX0FQSV9jb2xvdXJfRU5HLnBuZw==\" width=\"751\" height=\"1840\">\n\n<h3 id=\"uploading-large-data\"><strong>Uploading Large Data</strong></h3>\n<p>To upload CSV files larger than 2 GB, use the terminal with the following command:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -X POST \"https://&lt;HOST&gt;:7171/projects/&lt;project_name&gt;/uploads\" \\\n  -H \"accept: application/json\" \\\n  -H \"Content-Type: multipart/form-data\" \\\n  -F \"file=@/path/data.csv;type=text/csv\"\n\n</code></pre>\n<p>Example command for Linux:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl -X POST \"http://81.11.111.11:7171/projects/big_data/uploads\" \\\n  -H \"accept: application/json\" \\\n  -H \"Content-Type: multipart/form-data\" \\\n  -F \"file=@/home/test_10e3x100.csv;type=text/csv\"\n\n</code></pre>\n<h3 id=\"model-training-results\">Model Training Results</h3>\n<p>Trained models can be downloaded using the <strong>Get Artefact</strong> method.</p>\n<p>Model performance metrics can be viewed in:</p>\n<ul>\n<li><p><strong>MLflow:</strong> <code>http://EXTERNAL_IP:5555</code></p>\n</li>\n<li><p><strong>TensorBoard:</strong> <code>http://EXTERNAL_IP:6006</code></p>\n</li>\n</ul>\n<h2 id=\"🛠product-installation\">🛠Product Installation</h2>\n<blockquote>\n<p><strong>Important:</strong> Minimum resource requirements: <strong>2 vCPUs, 6 GB RAM, 20 GB SSD/HDD</strong>. Actual requirements depend on the volume of uploaded data and the desired model training speed.<br>The RAM requirement for a participating party depends on the maximum size of the uploaded file and the number of CPU cores. </p>\n</blockquote>\n<p>On <strong>each participating party</strong>, the following steps must be performed:</p>\n<p><strong>(1) Clone the repository</strong></p>\n<p><code>git clone</code> <a href=\"https://github.com/guardora-ai/guardora_vfl\"><code>https://github.com/guardora-ai/guardora_vfl</code></a></p>\n<p><strong>(2) Configure the environment</strong></p>\n<p>Edit the <code>.env</code> file and define the following variables:</p>\n<ul>\n<li><p><code>GUARDORA_FOLDER</code>: An empty folder on the host machine where all data will be stored. This folder must exist, and the Docker user must have write access to it.</p>\n</li>\n<li><p><code>EXTERNAL_IP</code>: The IP address to be used by other parties.</p>\n</li>\n<li><p><code>NODE_NAME</code>: Name of the node. Restrictions: only Latin letters, digits, and spaces.</p>\n</li>\n<li><p><code>COMPOSE_PROFILES</code>: List of MLOps services to run. Available options: <code>tensorboard</code>, <code>mlflow</code>.</p>\n</li>\n<li><p><code>USE_GUARDORA_UI</code>: Set to <code>false</code>.</p>\n</li>\n</ul>\n<p>Example <code>.env</code> file:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">GUARDORA_FOLDER=\"/opt/guardora\"\nEXTERNAL_IP=127.0.0.1\nNODE_NAME=\"MySuperNode\"\nCOMPOSE_PROFILES=tensorboard\nUSE_GUARDORA_UI=false\n\n</code></pre>\n<p><strong>(3) Build and run Docker containers</strong></p>\n<ul>\n<li><p>Build: <code>sudo docker-compose build</code></p>\n</li>\n<li><p>Run: <code>sudo docker-compose up -d</code></p>\n</li>\n</ul>\n<h2 id=\"🌐network-accessibility\">🌐<strong>Network Accessibility</strong></h2>\n<p>Only port 7173, used for gRPC communication, must be exposed to the external network.</p>\n<p>Ports 7171, 5555, and 6006 must not be exposed to the external network and must be accessible only from a trusted perimeter:</p>\n<ul>\n<li><p>from the internal corporate network;</p>\n</li>\n<li><p>through the corporate VPN;</p>\n</li>\n<li><p>through other approved secure access channels.</p>\n</li>\n</ul>\n<p>Purpose of the internal ports:</p>\n<ul>\n<li><p>7171 - Guardora VFL API;</p>\n</li>\n<li><p>5555 - MLflow for monitoring model performance metrics;</p>\n</li>\n<li><p>6006 - TensorBoard for monitoring model performance metrics.</p>\n</li>\n</ul>\n<h2 id=\"🚀first-time-setup\">🚀First-Time Setup</h2>\n<p>Once the virtual machine is created, the API becomes available automatically.</p>\n<p>Swagger UI is available at: <code>http://EXTERNAL_IP:7171/docs</code></p>\n<p>To initialize the node and assign its name, make a <strong>POST</strong> request to <code>/node</code>.<br>Restrictions: use only Latin letters, digits, and spaces.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"45704385","collectionId":"8f666c8a-9dfe-4840-a4de-534638957dbb","publishedId":"2sB34mhxvT","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"ccc7eb","highlight":"776aca"},"publishDate":"2025-07-22T14:42:22.000Z"},"item":[{"name":"node","item":[{"name":"Create Node","id":"f3204888-53de-45c6-809b-a7f6d3ad4882","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/node?name={{node_name}}","urlObject":{"path":["node"],"host":[""],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"name","value":"{{node_name}}"}],"variable":[]}},"response":[{"id":"c153a3b5-51f7-4d1d-99fb-f8eb03f927a5","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/node?name={{node_name}}","host":[""],"path":["node"],"query":[{"key":"name","value":"{{node_name}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"Node created\""},{"id":"2225241f-a018-44b9-9064-c254e6901233","name":"409 Conflict","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/node","host":[""],"path":["node"],"query":[{"key":"name","value":"{{node_name}}","description":"(Required) ","disabled":true}]}},"status":"Conflict","code":409,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"Node is already initialized"},{"id":"d3265848-e920-46da-b831-0582c03df27a","name":"422 Unprocessable Entity","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/node","host":[""],"path":["node"],"query":[{"key":"name","value":"{{node_name}}","disabled":true}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": [\n        {\n            \"type\": \"missing\",\n            \"loc\": [\n                \"query\",\n                \"name\"\n            ],\n            \"msg\": \"Field required\",\n            \"input\": null\n        }\n    ]\n}"}],"_postman_id":"f3204888-53de-45c6-809b-a7f6d3ad4882"},{"name":"Get Node Info","id":"7b5fb7ad-00ef-4949-a5f1-a470fc30552d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/node","urlObject":{"path":["node"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"7fbc9c41-03ef-494d-ac11-cb28f894c282","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/node"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"name\": \"{{node_name}}\",\r\n    \"external_ip\": \"{{node_external_ip}}\",\r\n    \"api_port\": 7171,\r\n    \"grpc_port\": 7173,\r\n    \"pke_key_length\": 1024,\r\n    \"he_key_length\": 256,\r\n    \"cert_type\": \"self_signed\",\r\n    \"server_running\": true\r\n}"},{"id":"67f192d0-e52f-45c1-ada9-f6bc7e862e57","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"/node"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"Node is not initialized"}],"_postman_id":"7b5fb7ad-00ef-4949-a5f1-a470fc30552d"},{"name":"Generate Node Public Key","id":"3d26fe93-a9b2-482f-bf07-29e15dfd08ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/node/public_key","urlObject":{"path":["node","public_key"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"9c99e5ad-d376-489e-b829-d21c3c631161","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/node/public_key"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":""},{"id":"1996202f-bbd9-48a3-af84-4a37fc6b11b7","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"/node/public_key"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"Node is not initialized"}],"_postman_id":"3d26fe93-a9b2-482f-bf07-29e15dfd08ee"},{"name":"Start Node","id":"a59abad2-1277-4e5c-9ba0-b80a35399920","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/node/start","urlObject":{"path":["node","start"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"13ac5413-ba26-49ef-9d11-b08b4fa146dd","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/node/start"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"5be4e322-922a-4949-b7c1-5175984b6289","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":"/node/start"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"Node is not initialized"},{"id":"0bce0935-fb47-4964-893e-552f89d76b0c","name":"409 Conflict","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/node/start"},"status":"Conflict","code":409,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"Node Server is already running or starting"}],"_postman_id":"a59abad2-1277-4e5c-9ba0-b80a35399920"},{"name":"Stop Node","id":"cb760f3b-00bb-48d4-9dcd-8a01c035334e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/node/stop","urlObject":{"path":["node","stop"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"d6e5faa0-be0c-4dce-88ef-b9f57b1d5c82","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/node/stop"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Node Server stopped successfully and deleted"},{"id":"f3164c3f-6942-4952-af84-13e4d5ac7d5a","name":"200 OK (already stopped)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/node/stop"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Node Server not created"},{"id":"ce36aa66-c96c-42d7-bfa7-fddcd7055a84","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":"/node/stop"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"Node is not initialized"}],"_postman_id":"cb760f3b-00bb-48d4-9dcd-8a01c035334e"},{"name":"Delete Node","id":"1caff7ac-e281-49c4-a430-0a64f1c947fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/node","urlObject":{"path":["node"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"5af38bcf-03f8-41d5-991a-9d7957067fd2","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/node"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"Node removed\""},{"id":"4cbecea5-0ac9-4bf5-baac-b8c57a55f7f7","name":"500 Internal Server Error","originalRequest":{"method":"DELETE","header":[],"url":"/node"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"detail\": \"Failed to remove node: ...\"\n}"}],"_postman_id":"1caff7ac-e281-49c4-a430-0a64f1c947fa"}],"id":"043e2e0c-9f41-40fb-96b1-3ba19d28de93","_postman_id":"043e2e0c-9f41-40fb-96b1-3ba19d28de93","description":""},{"name":"remotes","item":[{"name":"Add Remote","id":"e56378df-f298-4442-ba20-7f0b72b9eca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"<p>(Required) </p>\n","value":null}]},"url":"/remotes","urlObject":{"path":["remotes"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"e6ebdd48-84fd-4262-967d-4d561b621c2d","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) ","key":"file","type":"file","src":[]}]},"url":"/remotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"d1519c2d-da75-4071-a3e9-020992b4799d","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"description":"(Required) ","key":"file","type":"file","src":[]}]},"url":"/remotes"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"b1bd6647-eb93-475e-a28d-5e72615eeb53","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) ","key":"file","type":"file","src":[]}]},"url":"/remotes"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"e56378df-f298-4442-ba20-7f0b72b9eca6"},{"name":"List Remotes","id":"d75df2a8-32fd-4880-b144-a56825f671d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/remotes","urlObject":{"path":["remotes"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"c1c85998-e66c-4c6b-8ea3-97b0a12686a8","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/remotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[]"},{"id":"057165b9-011f-4e7c-b415-258096e16f15","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"/remotes"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"Node is not initialized"}],"_postman_id":"d75df2a8-32fd-4880-b144-a56825f671d8"},{"name":"Remove Remote","id":"c827a3f6-479e-41d8-969a-e45f335b4ceb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/remotes/:remote_name","urlObject":{"path":["remotes",":remote_name"],"host":[""],"query":[],"variable":[{"id":"90fb2194-a176-4391-908f-130a99a69e06","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"remote_name","key":"remote_name"}]}},"response":[{"id":"0e60e617-7fb1-47e9-a952-35aa13ce343f","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/remotes/:remote_name","host":[""],"path":["remotes",":remote_name"],"variable":[{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"1bbbf9ff-345d-4206-89c8-ae72a49e2af6","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"/remotes/:remote_name","host":[""],"path":["remotes",":remote_name"],"variable":[{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f0599f1a-4dd9-4e94-be1d-ba3d6e04dcff","name":"Validation Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/remotes/:remote_name","host":[""],"path":["remotes",":remote_name"],"variable":[{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"c827a3f6-479e-41d8-969a-e45f335b4ceb"},{"name":"Check Connection","id":"94f6f359-b7aa-4254-906a-89fff8f6bd13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/remotes/:remote_name/check_connection","urlObject":{"path":["remotes",":remote_name","check_connection"],"host":[""],"query":[],"variable":[{"id":"2433d9c8-0060-4b90-a82c-7a486bd0ae68","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"remote_name","key":"remote_name"}]}},"response":[{"id":"e0915d71-caf3-4358-b88a-845737550250","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/remotes/:remote_name/check_connection","host":[""],"path":["remotes",":remote_name","check_connection"],"variable":[{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"07064bef-6921-481e-ab9c-f792f5d646af","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/remotes/:remote_name/check_connection","host":[""],"path":["remotes",":remote_name","check_connection"],"variable":[{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a0b81874-23e2-4eb2-9b56-d67471ed7e8e","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/remotes/:remote_name/check_connection","host":[""],"path":["remotes",":remote_name","check_connection"],"variable":[{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"94f6f359-b7aa-4254-906a-89fff8f6bd13"}],"id":"76e8c4cb-7e08-435b-80cd-6f9dd63cef86","_postman_id":"76e8c4cb-7e08-435b-80cd-6f9dd63cef86","description":""},{"name":"projects","item":[{"name":"Create","id":"13560cb8-68cd-4245-8ed7-89dbe8cc6409","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name?entity_description=entity_description&expected_data_description=expected_data_description","urlObject":{"path":["projects",":project_name"],"host":[""],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"entity_description","value":"entity_description"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"expected_data_description","value":"expected_data_description"}],"variable":[{"id":"6646027d-22de-407c-9c95-5d8d0b98b859","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"a61da375-5656-4955-a13c-0e9e48733afc","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name?entity_description=Ut ut ea&expected_data_description=anim irure magn","host":[""],"path":["projects",":project_name"],"query":[{"key":"entity_description","value":"Ut ut ea"},{"key":"expected_data_description","value":"anim irure magn"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"0ffc58e5-6ad3-4793-8138-2083b2fb87eb","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/projects/:project_name?entity_description=Ut ut ea&expected_data_description=anim irure magn","host":[""],"path":["projects",":project_name"],"query":[{"key":"entity_description","value":"Ut ut ea"},{"key":"expected_data_description","value":"anim irure magn"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f5d109bf-c99b-4979-a35a-0794d41386fd","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name?entity_description=Ut ut ea&expected_data_description=anim irure magn","host":[""],"path":["projects",":project_name"],"query":[{"key":"entity_description","value":"Ut ut ea"},{"key":"expected_data_description","value":"anim irure magn"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"13560cb8-68cd-4245-8ed7-89dbe8cc6409"},{"name":"List Projects","id":"cbe703ac-f11a-4fc9-8120-061a26f99d0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects","urlObject":{"path":["projects"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"71a7c0ea-1484-4ebe-9766-667e0ebcb985","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"9c2a3491-7bca-4a00-bca1-14f9a5a7b861","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"/projects"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cbe703ac-f11a-4fc9-8120-061a26f99d0e"},{"name":"Get Project Details","id":"bcddc5e3-325b-465f-b0e6-a9dd19f54683","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name","urlObject":{"path":["projects",":project_name"],"host":[""],"query":[],"variable":[{"id":"feb1f3a8-6840-4601-9ef5-61c1cdc3170c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"141d0c4c-74f2-4299-9de7-9fae08784e98","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"cc303eab-a364-47fe-9fdb-5078d5a88a90","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"bb498500-9b86-496d-9fd9-9c43225798e8","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"bcddc5e3-325b-465f-b0e6-a9dd19f54683"},{"name":"Update Project Details","id":"7be3b9d5-36d2-4270-b161-2930d6ea6ced","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"entity_description\": \"entity_description\",\n    \"expected_data_description\": \"expected_data_description\",\n}","options":{"raw":{"language":"json"}}},"url":"/projects/:project_name","urlObject":{"path":["projects",":project_name"],"host":[""],"query":[],"variable":[{"id":"6739f469-e582-4d95-9f77-ecb2bacc886a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"849552ad-3f5c-4a07-9664-a4c7d55852e2","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"minim_f\": \"culpa tempor commod\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"a6c4236a-5815-4d31-83a8-a609105b7160","name":"404 Not Found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n  \"minim_f\": \"culpa tempor commod\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"8c5229fa-db07-4df8-9234-e5d22b0bfe32","name":"Validation Error","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"minim_f\": \"culpa tempor commod\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"7be3b9d5-36d2-4270-b161-2930d6ea6ced"},{"name":"Delete","id":"435737c7-9084-4acb-97ee-7e2299280dcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name","urlObject":{"path":["projects",":project_name"],"host":[""],"query":[],"variable":[{"id":"54f7b23e-2945-458a-9eec-7c136db3f6e4","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"00551082-3929-4a66-885e-97e9688485c0","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"2c4ab883-e95a-4c71-b999-80a08793e3e7","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e0b8ca39-a802-4851-bf63-0068e2aeb490","name":"Validation Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name","host":[""],"path":["projects",":project_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"435737c7-9084-4acb-97ee-7e2299280dcd"}],"id":"b170013a-edba-419e-912f-390892cbf1bf","_postman_id":"b170013a-edba-419e-912f-390892cbf1bf","description":""},{"name":"invites","item":[{"name":"Invite","id":"74530821-415f-40fc-a01e-3d51e0f81240","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/invite?remote=remote_name","urlObject":{"path":["projects",":project_name","invite"],"host":[""],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"remote","value":"remote_name"}],"variable":[{"id":"1a36818a-1249-435a-ac15-9977dfca7999","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"213ecd7a-d90a-49e1-83df-6e804b4c7c94","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/invite?remote=laboris aute adipisicing","host":[""],"path":["projects",":project_name","invite"],"query":[{"key":"remote","value":"laboris aute adipisicing"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"7c8c21ac-7f6c-4bf3-85b6-bc8a7ab6e0f5","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/projects/:project_name/invite?remote=laboris aute adipisicing","host":[""],"path":["projects",":project_name","invite"],"query":[{"key":"remote","value":"laboris aute adipisicing"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7908091d-f948-42a8-894a-14fd98d7ee2e","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/invite?remote=laboris aute adipisicing","host":[""],"path":["projects",":project_name","invite"],"query":[{"key":"remote","value":"laboris aute adipisicing"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"74530821-415f-40fc-a01e-3d51e0f81240"},{"name":"Accept","id":"f3654ec3-866b-48bf-a4a4-4c63fef3d730","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/accept","urlObject":{"path":["projects",":project_name","accept"],"host":[""],"query":[],"variable":[{"id":"7d6c551d-32f1-42b0-a528-1c9d251831f1","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"0c572bbf-39ee-478b-a1b9-3c62a053fab9","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/accept","host":[""],"path":["projects",":project_name","accept"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"4a9cd990-cef9-41ce-ac12-631a816a9b1f","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/projects/:project_name/accept","host":[""],"path":["projects",":project_name","accept"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"297560b9-1561-40d8-a73c-7dd9391d34ce","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/accept","host":[""],"path":["projects",":project_name","accept"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"f3654ec3-866b-48bf-a4a4-4c63fef3d730"},{"name":"Decline","id":"6ec1a1ce-d9d3-4e7b-8d73-af8bc417a598","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/decline","urlObject":{"path":["projects",":project_name","decline"],"host":[""],"query":[],"variable":[{"id":"5efb76ae-4765-4365-aba0-c3bb2004d75e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"20f95735-c09f-4490-a83a-2d70934e766c","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/decline","host":[""],"path":["projects",":project_name","decline"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"f2e24e2d-3b46-4c08-b35e-55731bb6d0f4","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/projects/:project_name/decline","host":[""],"path":["projects",":project_name","decline"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"42b3807c-9c05-478f-93ae-9d652986f7b8","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/decline","host":[""],"path":["projects",":project_name","decline"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"6ec1a1ce-d9d3-4e7b-8d73-af8bc417a598"}],"id":"461144d5-c5ed-4ed0-b3b4-dc45d68b9e59","_postman_id":"461144d5-c5ed-4ed0-b3b4-dc45d68b9e59","description":""},{"name":"uploads","item":[{"name":"Upload File","id":"02a4a049-146f-4647-aa7d-ae689b394684","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","description":"<p>(Required) </p>\n","value":null}]},"url":"/projects/:project_name/uploads","urlObject":{"path":["projects",":project_name","uploads"],"host":[""],"query":[],"variable":[{"id":"70b4554c-1aee-4a20-8ed8-7702febe03a9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"0bc18e5e-e337-4927-b3e9-658ee761594a","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) ","key":"file","type":"file","src":[]}]},"url":{"raw":"/projects/:project_name/uploads","host":[""],"path":["projects",":project_name","uploads"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"6801e5ad-10b5-4ed3-a3be-669b841d15c1","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"description":"(Required) ","key":"file","type":"file","src":[]}]},"url":{"raw":"/projects/:project_name/uploads","host":[""],"path":["projects",":project_name","uploads"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7191d7e7-10bf-4929-907e-2f6faf61d2c2","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"description":"(Required) ","key":"file","type":"file","src":[]}]},"url":{"raw":"/projects/:project_name/uploads","host":[""],"path":["projects",":project_name","uploads"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"02a4a049-146f-4647-aa7d-ae689b394684"},{"name":"List Uploaded","id":"9949629d-e672-4c12-b109-74762188d338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/uploads","urlObject":{"path":["projects",":project_name","uploads"],"host":[""],"query":[],"variable":[{"id":"e6d32195-c6a4-4251-8aa0-01bd194d84f2","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"5a5fea56-fe2c-4243-b2e2-3589ef18819c","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/uploads","host":[""],"path":["projects",":project_name","uploads"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"c04697c0-574b-4e36-8648-06c665a19c9e","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name/uploads","host":[""],"path":["projects",":project_name","uploads"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f71f0c0b-b301-4b7d-8c59-81026d9e00c6","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/uploads","host":[""],"path":["projects",":project_name","uploads"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"9949629d-e672-4c12-b109-74762188d338"},{"name":"Delete Uploaded","id":"71ad35c8-4ef1-4331-8f2a-1910ca49b64c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/uploads/:filename","urlObject":{"path":["projects",":project_name","uploads",":filename"],"host":[""],"query":[],"variable":[{"id":"d72058f3-b9d2-4248-b876-92cc8955e0b5","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"66e5dbc6-9fab-47b6-8f6e-d958eea5034a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"file_name","key":"filename"}]}},"response":[{"id":"c5fbb67e-b50d-434f-8dbe-60ca927e49f2","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/uploads/:filename","host":[""],"path":["projects",":project_name","uploads",":filename"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"filename","value":"eu","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"23701019-d482-4652-861c-2e334435a59a","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"/projects/:project_name/uploads/:filename","host":[""],"path":["projects",":project_name","uploads",":filename"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"filename","value":"eu","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"15bd3625-c4e6-4cb4-bfe2-bc77f62dcb33","name":"Validation Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/uploads/:filename","host":[""],"path":["projects",":project_name","uploads",":filename"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"filename","value":"eu","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"71ad35c8-4ef1-4331-8f2a-1910ca49b64c"},{"name":"Get Features","id":"541890ed-3c0b-4422-ab96-7be5a10ccda1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/uploads/:filename/features","urlObject":{"path":["projects",":project_name","uploads",":filename","features"],"host":[""],"query":[],"variable":[{"id":"b7d2cd8b-856e-48ec-b4e2-bf157b196650","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"8ac68156-f177-4346-b47a-346a4dfd1c6e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"file_name","key":"filename"}]}},"response":[{"id":"2df0f7fb-9dea-4ccc-88cc-9e28ac7d37f9","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/uploads/:filename/features","host":[""],"path":["projects",":project_name","uploads",":filename","features"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"filename","value":"eu","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"824c182d-e620-47b4-bc65-ce3667de019c","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name/uploads/:filename/features","host":[""],"path":["projects",":project_name","uploads",":filename","features"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"filename","value":"eu","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"16b35d03-6890-48ad-87bc-b1172d996e27","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/uploads/:filename/features","host":[""],"path":["projects",":project_name","uploads",":filename","features"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"filename","value":"eu","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"541890ed-3c0b-4422-ab96-7be5a10ccda1"}],"id":"4b7b8f9c-8db4-4c19-9f71-326ef89956d2","_postman_id":"4b7b8f9c-8db4-4c19-9f71-326ef89956d2","description":""},{"name":"datasets","item":[{"name":"Create Dataset","id":"03747bfb-ed54-4677-aeca-a7db09ba2de3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/datasets?source=file_name.csv&dataset_name=file_name&id_feature=ID&id_transform=id&use_features=&target_feature=y","urlObject":{"path":["projects",":project_name","datasets"],"host":[""],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"source","value":"file_name.csv"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"dataset_name","value":"file_name"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"id_feature","value":"ID"},{"key":"id_transform","value":"id"},{"key":"use_features","value":""},{"key":"target_feature","value":"y"}],"variable":[{"id":"a4b1adf3-a45e-4d71-af88-7a4bdd6a10d2","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"bc83b9ef-2ef8-464d-829c-ade01b73dc7e","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/datasets?source=sint ipsum&dataset_name=voluptate Lorem Duis minim&id_feature=culpa in&id_transform=id&use_features=mollit sed ipsum Duis&target_feature=elit dolore","host":[""],"path":["projects",":project_name","datasets"],"query":[{"key":"source","value":"sint ipsum"},{"key":"dataset_name","value":"voluptate Lorem Duis minim"},{"key":"id_feature","value":"culpa in"},{"key":"id_transform","value":"id"},{"key":"use_features","value":"mollit sed ipsum Duis"},{"key":"target_feature","value":"elit dolore"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"3b284a19-7d92-40f9-aaa0-73c220083a9e","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/projects/:project_name/datasets?source=sint ipsum&dataset_name=voluptate Lorem Duis minim&id_feature=culpa in&id_transform=id&use_features=mollit sed ipsum Duis&target_feature=elit dolore","host":[""],"path":["projects",":project_name","datasets"],"query":[{"key":"source","value":"sint ipsum"},{"key":"dataset_name","value":"voluptate Lorem Duis minim"},{"key":"id_feature","value":"culpa in"},{"key":"id_transform","value":"id"},{"key":"use_features","value":"mollit sed ipsum Duis"},{"key":"target_feature","value":"elit dolore"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7793af61-04c8-457a-9514-c3f1d3c8d58c","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/datasets?source=sint ipsum&dataset_name=voluptate Lorem Duis minim&id_feature=culpa in&id_transform=id&use_features=mollit sed ipsum Duis&target_feature=elit dolore","host":[""],"path":["projects",":project_name","datasets"],"query":[{"key":"source","value":"sint ipsum"},{"key":"dataset_name","value":"voluptate Lorem Duis minim"},{"key":"id_feature","value":"culpa in"},{"key":"id_transform","value":"id"},{"key":"use_features","value":"mollit sed ipsum Duis"},{"key":"target_feature","value":"elit dolore"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"03747bfb-ed54-4677-aeca-a7db09ba2de3"},{"name":"List Datasets","id":"7d9215b5-e7a5-4e02-8c56-b137076068e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/datasets","urlObject":{"path":["projects",":project_name","datasets"],"host":[""],"query":[],"variable":[{"id":"3d4a6a17-9d35-46c7-8636-1ef2809f3446","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"1d1d73ff-98f9-46e1-b74d-8f6b78a426d2","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/datasets","host":[""],"path":["projects",":project_name","datasets"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"48476088-0183-44bb-a94a-5954b9b1ff4d","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name/datasets","host":[""],"path":["projects",":project_name","datasets"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1d9466db-afb2-41a4-97f9-c6c1daffc9f1","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/datasets","host":[""],"path":["projects",":project_name","datasets"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"7d9215b5-e7a5-4e02-8c56-b137076068e4"},{"name":"Delete Dataset","id":"48562d7e-991a-4c5c-9dec-6e272833f887","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/datasets/:dataset_name","urlObject":{"path":["projects",":project_name","datasets",":dataset_name"],"host":[""],"query":[],"variable":[{"id":"f9be2d81-4ae7-416b-8051-4916e05b4dfe","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"91b76643-ef92-4ece-a766-69cf44f4a522","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"dataset_name","key":"dataset_name"}]}},"response":[{"id":"8d29ddda-c435-4b56-a096-0f860aea1ebc","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/datasets/:dataset_name","host":[""],"path":["projects",":project_name","datasets",":dataset_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"dataset_name","value":"voluptate Lorem Duis minim","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"13f23eaf-aedc-4c46-a4ab-40afc4b266f4","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"/projects/:project_name/datasets/:dataset_name","host":[""],"path":["projects",":project_name","datasets",":dataset_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"dataset_name","value":"voluptate Lorem Duis minim","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"fed0cd86-23b6-4eb0-a0b9-258fd80c7724","name":"Validation Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/datasets/:dataset_name","host":[""],"path":["projects",":project_name","datasets",":dataset_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"dataset_name","value":"voluptate Lorem Duis minim","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"48562d7e-991a-4c5c-9dec-6e272833f887"},{"name":"List Remote Datasets","id":"7326a374-a6c8-49a3-a121-7d1b412ce609","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/remotes/:remote_name/projects/:project_name/datasets","urlObject":{"path":["remotes",":remote_name","projects",":project_name","datasets"],"host":[""],"query":[],"variable":[{"id":"2a9bb2df-7868-4e8e-920c-aa5e9cb35973","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"remote_name","key":"remote_name"},{"id":"c641ea3b-c54b-41bd-b0af-4b888623e166","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"c7dad2da-f3e6-48cf-846c-fb68066950db","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/remotes/:remote_name/projects/:project_name/datasets","host":[""],"path":["remotes",":remote_name","projects",":project_name","datasets"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"9d0e1695-541a-4854-ae06-3f8d09b5b782","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/remotes/:remote_name/projects/:project_name/datasets","host":[""],"path":["remotes",":remote_name","projects",":project_name","datasets"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"32c32c6f-e130-4dea-bd26-90c8fd86b8af","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/remotes/:remote_name/projects/:project_name/datasets","host":[""],"path":["remotes",":remote_name","projects",":project_name","datasets"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"remote_name","value":"velit in","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"7326a374-a6c8-49a3-a121-7d1b412ce609"}],"id":"2ce732be-b39b-4035-85a7-1f58000d9fb4","_postman_id":"2ce732be-b39b-4035-85a7-1f58000d9fb4","description":""},{"name":"psi_sessions","item":[{"name":"Start Psi Session","id":"a4f2040a-dee5-4f3b-8ee6-309e66b19201","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"remote_name1\": \"dataset_name\",\n  \"remote_name2\": \"dataset_name\"\n}","options":{"raw":{"language":"json"}}},"url":"/psi_sessions?project_name=project_name&psi_name=psi_name","urlObject":{"path":["psi_sessions"],"host":[""],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"project_name","value":"project_name"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"psi_name","value":"psi_name"}],"variable":[]}},"response":[{"id":"b7a7cd3e-227f-466c-a7f5-0de37b0d4777","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"magna_37c\": \"commodo cupidatat ex exercitation\",\n  \"elit5a3\": \"voluptate proident in\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/psi_sessions?project_name=anim ex dolore do&psi_name=tempor velit","host":[""],"path":["psi_sessions"],"query":[{"key":"project_name","value":"anim ex dolore do"},{"key":"psi_name","value":"tempor velit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"9baf5027-e405-4f10-b60c-3e5a95b54c9c","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"magna_37c\": \"commodo cupidatat ex exercitation\",\n  \"elit5a3\": \"voluptate proident in\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/psi_sessions?project_name=anim ex dolore do&psi_name=tempor velit","host":[""],"path":["psi_sessions"],"query":[{"key":"project_name","value":"anim ex dolore do"},{"key":"psi_name","value":"tempor velit"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3576a92c-4d40-44c6-ac03-701b6649881e","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"magna_37c\": \"commodo cupidatat ex exercitation\",\n  \"elit5a3\": \"voluptate proident in\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/psi_sessions?project_name=anim ex dolore do&psi_name=tempor velit","host":[""],"path":["psi_sessions"],"query":[{"key":"project_name","value":"anim ex dolore do"},{"key":"psi_name","value":"tempor velit"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"a4f2040a-dee5-4f3b-8ee6-309e66b19201"},{"name":"List Psi Sessions","id":"e4c3c67f-e936-4f62-ba65-cc607827f701","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/psi_sessions?project_name=project_name","urlObject":{"path":["psi_sessions"],"host":[""],"query":[{"key":"project_name","value":"project_name"}],"variable":[]}},"response":[{"id":"19382eb1-a4ac-4ffe-a92b-155907cdf953","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/psi_sessions?project_name=dolor tempor magna Excepteur","host":[""],"path":["psi_sessions"],"query":[{"key":"project_name","value":"dolor tempor magna Excepteur"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"9ab4ae0c-c434-4bfd-ac34-950cf00f35bf","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/psi_sessions?project_name=dolor tempor magna Excepteur","host":[""],"path":["psi_sessions"],"query":[{"key":"project_name","value":"dolor tempor magna Excepteur"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"01c02e91-82ab-4192-a89f-c59d9c2e32e3","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/psi_sessions?project_name=dolor tempor magna Excepteur","host":[""],"path":["psi_sessions"],"query":[{"key":"project_name","value":"dolor tempor magna Excepteur"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"e4c3c67f-e936-4f62-ba65-cc607827f701"},{"name":"Get Psi Session Status","id":"d5da9eb3-783a-47f2-a0c3-9f6b057c7815","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/psi_sessions/:psi_session_id","urlObject":{"path":["psi_sessions",":psi_session_id"],"host":[""],"query":[],"variable":[{"id":"4fbdc245-f762-4e82-b810-81aba2fad2a2","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"psi_session_id","key":"psi_session_id"}]}},"response":[{"id":"2b78ef8b-d188-4c8a-b31c-62f151425e98","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/psi_sessions/:psi_session_id","host":[""],"path":["psi_sessions",":psi_session_id"],"variable":[{"key":"psi_session_id","value":"irure nisi pariatur nulla","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"0aa14f31-2432-43ab-a5d5-298bacc4f1c4","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/psi_sessions/:psi_session_id","host":[""],"path":["psi_sessions",":psi_session_id"],"variable":[{"key":"psi_session_id","value":"irure nisi pariatur nulla","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"8682075d-e321-4067-a952-37df00d46456","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/psi_sessions/:psi_session_id","host":[""],"path":["psi_sessions",":psi_session_id"],"variable":[{"key":"psi_session_id","value":"irure nisi pariatur nulla","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"d5da9eb3-783a-47f2-a0c3-9f6b057c7815"},{"name":"Stop Psi Session","id":"cea92d4c-f5ea-4cdc-99c4-76649d260bc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/psi_sessions/:psi_session_id/stop","urlObject":{"path":["psi_sessions",":psi_session_id","stop"],"host":[""],"query":[],"variable":[{"id":"cc1e57f0-c9b7-4f73-b2cd-923ce5de25e8","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"psi_session_id","key":"psi_session_id"}]}},"response":[{"id":"041829e3-e424-4550-85da-8a6730cb50de","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/psi_sessions/:psi_session_id/stop","host":[""],"path":["psi_sessions",":psi_session_id","stop"],"variable":[{"key":"psi_session_id","value":"irure nisi pariatur nulla","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"da92c7a9-cc27-4e02-b095-e837e9f907f8","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/psi_sessions/:psi_session_id/stop","host":[""],"path":["psi_sessions",":psi_session_id","stop"],"variable":[{"key":"psi_session_id","value":"irure nisi pariatur nulla","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"c36f90f2-c039-409d-9029-2e23e323a58b","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/psi_sessions/:psi_session_id/stop","host":[""],"path":["psi_sessions",":psi_session_id","stop"],"variable":[{"key":"psi_session_id","value":"irure nisi pariatur nulla","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"cea92d4c-f5ea-4cdc-99c4-76649d260bc8"}],"id":"58a0102e-5289-497c-8190-5f98be12178f","_postman_id":"58a0102e-5289-497c-8190-5f98be12178f","description":""},{"name":"psi","item":[{"name":"List Psis","id":"ec56e143-e356-4c78-9aac-9fd2049c327e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/psi","urlObject":{"path":["projects",":project_name","psi"],"host":[""],"query":[],"variable":[{"id":"60a7cc11-3a1e-410e-929f-d2ec3aa3af58","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"67fa1fde-5ea4-43ff-99f6-e29e5e0e04aa","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/psi","host":[""],"path":["projects",":project_name","psi"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"29a7cf65-7f00-476d-ba2f-2fb4137d36de","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name/psi","host":[""],"path":["projects",":project_name","psi"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"2532d4fd-59a2-418b-bee6-60452e37c733","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/psi","host":[""],"path":["projects",":project_name","psi"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"ec56e143-e356-4c78-9aac-9fd2049c327e"},{"name":"Get Psi Details","id":"579ba130-59c1-4e92-82b1-c0a80e91fd8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/psi/:psi_name","urlObject":{"path":["projects",":project_name","psi",":psi_name"],"host":[""],"query":[],"variable":[{"id":"19dc4b00-57c8-4033-9042-0a11550f1ec1","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"c9179590-6d2b-4c07-a09e-a7d692b197f6","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"psi_name","key":"psi_name"}]}},"response":[{"id":"45528776-1de4-4dc4-8654-8e8b0a479561","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/psi/:psi_name","host":[""],"path":["projects",":project_name","psi",":psi_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"psi_name","value":"tempor velit","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"0c6d08ca-7535-4452-8c52-faab3adc6e41","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name/psi/:psi_name","host":[""],"path":["projects",":project_name","psi",":psi_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"psi_name","value":"tempor velit","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"f08c6343-a781-4ae0-b20e-1f7fe768ace0","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/psi/:psi_name","host":[""],"path":["projects",":project_name","psi",":psi_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"psi_name","value":"tempor velit","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"579ba130-59c1-4e92-82b1-c0a80e91fd8f"},{"name":"Delete Psi","id":"a4af2517-1c31-48f5-89b0-b34b2361a2bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/psi/:psi_name","urlObject":{"path":["projects",":project_name","psi",":psi_name"],"host":[""],"query":[],"variable":[{"id":"5fd1494b-b33d-4c27-9e4e-6d4f36264654","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"0a6bb256-28a3-4386-b744-c174e0611355","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"psi_name","key":"psi_name"}]}},"response":[{"id":"c63fccc2-f9c7-4317-b35b-a1499600c7d7","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/psi/:psi_name","host":[""],"path":["projects",":project_name","psi",":psi_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"psi_name","value":"tempor velit","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"e5e6cc5a-c53e-45d6-bba3-f880b35bb03d","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"/projects/:project_name/psi/:psi_name","host":[""],"path":["projects",":project_name","psi",":psi_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"psi_name","value":"tempor velit","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"7cf4d384-4acf-4fa6-a8c9-6434b35f974e","name":"Validation Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/psi/:psi_name","host":[""],"path":["projects",":project_name","psi",":psi_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"psi_name","value":"tempor velit","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"a4af2517-1c31-48f5-89b0-b34b2361a2bb"}],"id":"f8501721-1f69-4f80-8faf-b4b84642fa44","_postman_id":"f8501721-1f69-4f80-8faf-b4b84642fa44","description":""},{"name":"model_types","item":[{"name":"Model Types","id":"3f8aaaf5-3410-4bc4-8a5e-9831d7c1cd20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/model_types","urlObject":{"path":["model_types"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"993354fa-d65a-4220-b77a-dfd1be1bb18b","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/model_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"3fdd9993-2e49-47b6-afe8-9fb3dcec1e5c","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"/model_types"},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3f8aaaf5-3410-4bc4-8a5e-9831d7c1cd20"},{"name":"Get Model Hyperparameters Descriptions","id":"7376a3b3-7a39-4142-88c4-fabffe9486e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/model_types/:model_type/hyperparameters/descriptions","urlObject":{"path":["model_types",":model_type","hyperparameters","descriptions"],"host":[""],"query":[],"variable":[{"id":"7bb81395-af73-4f16-8118-097542dd4a1d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"model_type","key":"model_type"}]}},"response":[{"id":"8714fffc-d59a-4ef7-9723-c3f5484983a9","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/model_types/:model_type/hyperparameters/descriptions","host":[""],"path":["model_types",":model_type","hyperparameters","descriptions"],"variable":[{"key":"model_type","value":"conseq","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"4e90b861-2425-40bb-bb37-e254b9169e0f","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/model_types/:model_type/hyperparameters/descriptions","host":[""],"path":["model_types",":model_type","hyperparameters","descriptions"],"variable":[{"key":"model_type","value":"conseq","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"766b790c-ff04-4e1b-bc6a-bfe7a86d9a03","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/model_types/:model_type/hyperparameters/descriptions","host":[""],"path":["model_types",":model_type","hyperparameters","descriptions"],"variable":[{"key":"model_type","value":"conseq","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"7376a3b3-7a39-4142-88c4-fabffe9486e5"},{"name":"Get Model Hyperparameters Defaults","id":"7883a544-5078-498f-9cb6-1c8fa041815d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/model_types/:model_type/hyperparameters/defaults","urlObject":{"path":["model_types",":model_type","hyperparameters","defaults"],"host":[""],"query":[],"variable":[{"id":"99dd23a3-847c-483b-8059-86331c55ac52","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"model_type","key":"model_type"}]}},"response":[{"id":"d6c56784-2d2f-4421-8ce2-9af0c48264ae","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/model_types/:model_type/hyperparameters/defaults","host":[""],"path":["model_types",":model_type","hyperparameters","defaults"],"variable":[{"key":"model_type","value":"conseq","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"e3570f1b-07d4-45d5-8113-344732fde2e5","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/model_types/:model_type/hyperparameters/defaults","host":[""],"path":["model_types",":model_type","hyperparameters","defaults"],"variable":[{"key":"model_type","value":"conseq","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"6961829b-76a1-484c-bd90-42bd8c360be2","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/model_types/:model_type/hyperparameters/defaults","host":[""],"path":["model_types",":model_type","hyperparameters","defaults"],"variable":[{"key":"model_type","value":"conseq","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"7883a544-5078-498f-9cb6-1c8fa041815d"}],"id":"6a3a0e60-ee93-4b78-a8cf-9b45117659ce","_postman_id":"6a3a0e60-ee93-4b78-a8cf-9b45117659ce","description":""},{"name":"tasks","item":[{"name":"Create Task","id":"c89952e0-94fc-4f1a-87ed-113ce3908098","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"\n{\n  \"saving_period\": 20,\n  \"validation_period\": 5,\n  \"type_of_protection\": \"crypto\",\n  \"init_pred\": 0.5,\n  \"output_thresh\": 0.5,\n  \"type_of_problem\": \"classification\",\n  \"num_trees\": 20,\n  \"max_depth\": 5,\n  \"num_quantiles\": 30,\n  \"quantile_search_method\": 0,\n  \"num_min_samples\": 30,\n  \"lambda\": 1,\n  \"gamma\": 0,\n  \"eta\": 0.3,\n  \"subsample\": 0.8\n}","options":{"raw":{"language":"json"}}},"url":"/projects/:project_name/tasks?task_name=task_name&model_type=model_type&train_psi=train_psi_name&test_psi=test_psi_name","urlObject":{"path":["projects",":project_name","tasks"],"host":[""],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"task_name","value":"task_name"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"model_type","value":"model_type"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"train_psi","value":"train_psi_name"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"test_psi","value":"test_psi_name"}],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"49b34bf3-5541-4716-b852-c1359aa39bbe","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"cupidatat98\": -5940865.180547416,\n  \"cillum__\": true,\n  \"dolore_e\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/projects/:project_name/tasks?task_name=qui in&model_type=conseq&train_psi=laboris&test_psi=ullamco officia qu","host":[""],"path":["projects",":project_name","tasks"],"query":[{"key":"task_name","value":"qui in"},{"key":"model_type","value":"conseq"},{"key":"train_psi","value":"laboris"},{"key":"test_psi","value":"ullamco officia qu"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"723d4c4d-235f-41b3-8445-70a0d4c11589","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"cupidatat98\": -5940865.180547416,\n  \"cillum__\": true,\n  \"dolore_e\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/projects/:project_name/tasks?task_name=qui in&model_type=conseq&train_psi=laboris&test_psi=ullamco officia qu","host":[""],"path":["projects",":project_name","tasks"],"query":[{"key":"task_name","value":"qui in"},{"key":"model_type","value":"conseq"},{"key":"train_psi","value":"laboris"},{"key":"test_psi","value":"ullamco officia qu"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"83f615d4-1942-4a7d-ae6e-cae5df55940a","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"cupidatat98\": -5940865.180547416,\n  \"cillum__\": true,\n  \"dolore_e\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/projects/:project_name/tasks?task_name=qui in&model_type=conseq&train_psi=laboris&test_psi=ullamco officia qu","host":[""],"path":["projects",":project_name","tasks"],"query":[{"key":"task_name","value":"qui in"},{"key":"model_type","value":"conseq"},{"key":"train_psi","value":"laboris"},{"key":"test_psi","value":"ullamco officia qu"}],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"c89952e0-94fc-4f1a-87ed-113ce3908098"},{"name":"List Tasks","id":"20724325-dd3a-46f5-ad40-d19e8d2bc5b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/tasks","urlObject":{"path":["projects",":project_name","tasks"],"host":[""],"query":[],"variable":[{"id":"2661735b-4579-4909-b59d-eded0624eff1","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"035f459b-e604-4265-bb24-e8c1a16b109c","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/tasks","host":[""],"path":["projects",":project_name","tasks"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"5cba9836-e1ce-445f-abb8-817ad444fc75","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name/tasks","host":[""],"path":["projects",":project_name","tasks"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"377380ce-b2a8-4853-87af-267824c386d7","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/tasks","host":[""],"path":["projects",":project_name","tasks"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"20724325-dd3a-46f5-ad40-d19e8d2bc5b4"},{"name":"Delete Task","id":"69c94ab8-179f-48aa-a626-146fec23745d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/tasks/:task_name","urlObject":{"path":["projects",":project_name","tasks",":task_name"],"host":[""],"query":[],"variable":[{"id":"410a32c1-eaf3-4a0a-8bb5-25661775dafe","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"01da4bf8-da18-4ad4-a5aa-1dc5175d887c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"task_name","key":"task_name"}]}},"response":[{"id":"380ed127-491a-4d06-9d00-74b2a1cbba86","name":"200 OK","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/tasks/:task_name","host":[""],"path":["projects",":project_name","tasks",":task_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"c832d871-914e-4d76-bbba-93828d18851d","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"/projects/:project_name/tasks/:task_name","host":[""],"path":["projects",":project_name","tasks",":task_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"02e75644-bfd3-4e2d-9cfc-278d904abad4","name":"Validation Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/tasks/:task_name","host":[""],"path":["projects",":project_name","tasks",":task_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"69c94ab8-179f-48aa-a626-146fec23745d"}],"id":"bfb8adf4-aa80-4227-8b04-ae29b17c74a5","_postman_id":"bfb8adf4-aa80-4227-8b04-ae29b17c74a5","description":""},{"name":"train","item":[{"name":"Start Train Session","id":"efcfdc35-db0e-4cba-a360-4f2da79b9d22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/train_sessions?project_name=project_name&task_name=task_name&resume=false","urlObject":{"path":["train_sessions"],"host":[""],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"project_name","value":"project_name"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"task_name","value":"task_name"},{"key":"resume","value":"false"}],"variable":[]}},"response":[{"id":"32cba805-0749-4621-9a8c-f736d1407946","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/train_sessions?project_name=anim ex dolore do&task_name=qui in&resume=false","host":[""],"path":["train_sessions"],"query":[{"key":"project_name","value":"anim ex dolore do"},{"key":"task_name","value":"qui in"},{"key":"resume","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"0eaa0331-cf85-4f08-b6d0-d9c3d9414e74","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/train_sessions?project_name=anim ex dolore do&task_name=qui in&resume=false","host":[""],"path":["train_sessions"],"query":[{"key":"project_name","value":"anim ex dolore do"},{"key":"task_name","value":"qui in"},{"key":"resume","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"1f81e0ea-8522-48bc-9146-9342aa463d86","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/train_sessions?project_name=anim ex dolore do&task_name=qui in&resume=false","host":[""],"path":["train_sessions"],"query":[{"key":"project_name","value":"anim ex dolore do"},{"key":"task_name","value":"qui in"},{"key":"resume","value":"false"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"efcfdc35-db0e-4cba-a360-4f2da79b9d22"},{"name":"List Train Sessions","id":"568c65a6-f172-4afb-a4d1-4d4e13fda5fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/train_sessions?project_name=project_name","urlObject":{"path":["train_sessions"],"host":[""],"query":[{"key":"project_name","value":"project_name"}],"variable":[]}},"response":[{"id":"5eb1dff9-c3e8-449a-9990-a3d6848f7e2c","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/train_sessions?project_name=dolor tempor magna Excepteur","host":[""],"path":["train_sessions"],"query":[{"key":"project_name","value":"dolor tempor magna Excepteur"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"c2871a68-6781-4297-834c-d301d18a550a","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/train_sessions?project_name=dolor tempor magna Excepteur","host":[""],"path":["train_sessions"],"query":[{"key":"project_name","value":"dolor tempor magna Excepteur"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"25f8ddab-a5ec-4ec4-ba1d-7500c3df1adc","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/train_sessions?project_name=dolor tempor magna Excepteur","host":[""],"path":["train_sessions"],"query":[{"key":"project_name","value":"dolor tempor magna Excepteur"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"568c65a6-f172-4afb-a4d1-4d4e13fda5fa"},{"name":"Get Train Session Status By Id","id":"017e56d7-7be9-4ae7-98ed-34a470840d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/train_sessions/:train_session_id","urlObject":{"path":["train_sessions",":train_session_id"],"host":[""],"query":[],"variable":[{"id":"b946f7a8-61ec-4640-bf6e-94c90188204a","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"train_session_id","key":"train_session_id"}]}},"response":[{"id":"8e08d296-1490-461f-8088-e1f7fda4ac45","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/train_sessions/:train_session_id","host":[""],"path":["train_sessions",":train_session_id"],"variable":[{"key":"train_session_id","value":"in est","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"8633e962-f5a1-43a6-8fda-5e56559bd3f0","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/train_sessions/:train_session_id","host":[""],"path":["train_sessions",":train_session_id"],"variable":[{"key":"train_session_id","value":"in est","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3ea2494a-b455-41c0-baea-9e8e81989c1b","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/train_sessions/:train_session_id","host":[""],"path":["train_sessions",":train_session_id"],"variable":[{"key":"train_session_id","value":"in est","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"017e56d7-7be9-4ae7-98ed-34a470840d46"},{"name":"Stop Train Session","id":"401cb600-3d1f-46eb-9cf0-feb62bf208d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/train_sessions/:train_session_id/stop","urlObject":{"path":["train_sessions",":train_session_id","stop"],"host":[""],"query":[],"variable":[{"id":"47f7a856-6100-4164-a3f9-8acf99cd944d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"train_session_id","key":"train_session_id"}]}},"response":[{"id":"a5d16ff7-745c-483e-95ea-48deedf28f73","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/train_sessions/:train_session_id/stop","host":[""],"path":["train_sessions",":train_session_id","stop"],"variable":[{"key":"train_session_id","value":"in est","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"7b11866d-6e9d-4656-8f59-28267db574e4","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/train_sessions/:train_session_id/stop","host":[""],"path":["train_sessions",":train_session_id","stop"],"variable":[{"key":"train_session_id","value":"in est","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"a8dd4b26-5481-4b47-8ef3-70b1e51c65bc","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/train_sessions/:train_session_id/stop","host":[""],"path":["train_sessions",":train_session_id","stop"],"variable":[{"key":"train_session_id","value":"in est","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"401cb600-3d1f-46eb-9cf0-feb62bf208d5"}],"id":"e0c86a66-bf68-4c38-aea4-14860112aad3","_postman_id":"e0c86a66-bf68-4c38-aea4-14860112aad3","description":""},{"name":"artefacts","item":[{"name":"List Artefacts","id":"14fabe98-7042-4cec-94ac-505bbb9899a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/tasks/:task_name/artefacts","urlObject":{"path":["projects",":project_name","tasks",":task_name","artefacts"],"host":[""],"query":[],"variable":[{"id":"b9c87cc7-864f-4dd0-8cd9-8b2578c0dc01","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"278c4cfd-ba75-4896-8c59-8cf6fe8872ca","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"task_name","key":"task_name"}]}},"response":[{"id":"6589a7d4-5ac0-4bd9-82b7-09ca3ef7fc0f","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/tasks/:task_name/artefacts","host":[""],"path":["projects",":project_name","tasks",":task_name","artefacts"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"481a4f19-1070-44b2-9760-fcbafdca2efb","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name/tasks/:task_name/artefacts","host":[""],"path":["projects",":project_name","tasks",":task_name","artefacts"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"5e559971-93fc-462e-9c05-9e8db804ccbc","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/tasks/:task_name/artefacts","host":[""],"path":["projects",":project_name","tasks",":task_name","artefacts"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"14fabe98-7042-4cec-94ac-505bbb9899a7"},{"name":"Get Artefact","id":"96c56ca1-1210-44fd-a2aa-54a4fbb85a12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/tasks/:task_name/artefacts/:artefact_name","urlObject":{"path":["projects",":project_name","tasks",":task_name","artefacts",":artefact_name"],"host":[""],"query":[],"variable":[{"id":"91720ea1-8c26-4d3b-acff-436ffb2fdf45","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"691b113d-e073-4ffb-a631-04dbf436a902","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"task_name","key":"task_name"},{"id":"c5b99bd9-3041-4fe5-a581-a0e5ebf47a79","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"artefact_name","key":"artefact_name"}]}},"response":[{"id":"a9c26231-e2f7-49a3-a0fd-2feae09b9259","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/tasks/:task_name/artefacts/:artefact_name","host":[""],"path":["projects",":project_name","tasks",":task_name","artefacts",":artefact_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "},{"key":"artefact_name","value":"commodo est ipsum velit","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"89b77879-5415-4361-b61e-abf409bab168","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/projects/:project_name/tasks/:task_name/artefacts/:artefact_name","host":[""],"path":["projects",":project_name","tasks",":task_name","artefacts",":artefact_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "},{"key":"artefact_name","value":"commodo est ipsum velit","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"6c471adf-2927-4434-bba7-d81209da66d1","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/tasks/:task_name/artefacts/:artefact_name","host":[""],"path":["projects",":project_name","tasks",":task_name","artefacts",":artefact_name"],"variable":[{"key":"project_name","value":"anim ex dolore do","description":"(Required) "},{"key":"task_name","value":"qui in","description":"(Required) "},{"key":"artefact_name","value":"commodo est ipsum velit","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"qui mollit cillum minim\",\n        \"dolore Excepteur i\"\n      ],\n      \"msg\": \"ea ex tempor\",\n      \"type\": \"sed cupidatat\"\n    },\n    {\n      \"loc\": [\n        \"magna officia nostrud eu quis\",\n        \"do esse nisi\"\n      ],\n      \"msg\": \"deserunt nulla amet fugiat\",\n      \"type\": \"esse eiusmod Ut pariatur nisi\"\n    }\n  ]\n}"}],"_postman_id":"96c56ca1-1210-44fd-a2aa-54a4fbb85a12"}],"id":"0fdc8c7a-6072-4e94-b226-9aa5140130b4","_postman_id":"0fdc8c7a-6072-4e94-b226-9aa5140130b4","description":""},{"name":"inference","item":[{"name":"Tag Dataset For Inference","id":"6b1c6f95-09f2-4669-ae33-fc39b429010c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/datasets/:dataset_name/tag_for_inference","urlObject":{"path":["projects",":project_name","datasets",":dataset_name","tag_for_inference"],"host":[""],"query":[],"variable":[{"id":"09cb414c-0ebe-4ac7-b0e4-872413f379fc","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"},{"id":"c168003b-1d14-4597-8643-e8d90f87cc3c","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"dataset_name","key":"dataset_name"}]}},"response":[{"id":"7f752433-5e84-4a25-8356-83dff02002ca","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/datasets/:dataset_name/tag_for_inference","host":[""],"path":["projects",":project_name","datasets",":dataset_name","tag_for_inference"],"variable":[{"key":"project_name","value":"consequat Ut non","description":"(Required) "},{"key":"dataset_name","value":"cillum ut","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"fb6bc447-3d75-417d-8b7d-d5a3629e745e","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/projects/:project_name/datasets/:dataset_name/tag_for_inference","host":[""],"path":["projects",":project_name","datasets",":dataset_name","tag_for_inference"],"variable":[{"key":"project_name","value":"consequat Ut non","description":"(Required) "},{"key":"dataset_name","value":"cillum ut","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"48323b6d-8816-44a0-832c-8fbe9a5d2db3","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/datasets/:dataset_name/tag_for_inference","host":[""],"path":["projects",":project_name","datasets",":dataset_name","tag_for_inference"],"variable":[{"key":"project_name","value":"consequat Ut non","description":"(Required) "},{"key":"dataset_name","value":"cillum ut","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"Excepteur velit amet\",\n        \"dolor culpa veniam\"\n      ],\n      \"msg\": \"elit dolor et ut do\",\n      \"type\": \"culpa co\"\n    },\n    {\n      \"loc\": [\n        \"Duis aliquip\",\n        \"laborum est in deserunt\"\n      ],\n      \"msg\": \"est aliqua nulla\",\n      \"type\": \"do velit dolor\"\n    }\n  ]\n}"}],"_postman_id":"6b1c6f95-09f2-4669-ae33-fc39b429010c"},{"name":"Check Inference Tags","id":"d112ce8c-ebeb-4555-bbd4-9f3c263d9725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/projects/:project_name/check_inference_tags","urlObject":{"path":["projects",":project_name","check_inference_tags"],"host":[""],"query":[],"variable":[{"id":"8021647e-c14a-4984-b2a1-a0b56c131a1d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"project_name","key":"project_name"}]}},"response":[{"id":"b83ea259-27d1-4666-8460-5422e5122ab2","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/check_inference_tags","host":[""],"path":["projects",":project_name","check_inference_tags"],"variable":[{"key":"project_name","value":"consequat Ut non","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"b2419d69-1008-48d2-a468-b595e35a5df0","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/projects/:project_name/check_inference_tags","host":[""],"path":["projects",":project_name","check_inference_tags"],"variable":[{"key":"project_name","value":"consequat Ut non","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3896baa9-6b22-48a1-95e1-83809438bce9","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/projects/:project_name/check_inference_tags","host":[""],"path":["projects",":project_name","check_inference_tags"],"variable":[{"key":"project_name","value":"consequat Ut non","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"Excepteur velit amet\",\n        \"dolor culpa veniam\"\n      ],\n      \"msg\": \"elit dolor et ut do\",\n      \"type\": \"culpa co\"\n    },\n    {\n      \"loc\": [\n        \"Duis aliquip\",\n        \"laborum est in deserunt\"\n      ],\n      \"msg\": \"est aliqua nulla\",\n      \"type\": \"do velit dolor\"\n    }\n  ]\n}"}],"_postman_id":"d112ce8c-ebeb-4555-bbd4-9f3c263d9725"},{"name":"Start Inference Session","id":"e94983d6-7672-4a5f-89d5-9a47010ad5e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/inference_sessions?project_name=project_name&task_name=task_name&model_name=aute ex&resume=false","urlObject":{"path":["inference_sessions"],"host":[""],"query":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"project_name","value":"project_name"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"task_name","value":"task_name"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"key":"model_name","value":"aute ex"},{"key":"resume","value":"false"}],"variable":[]}},"response":[{"id":"20186544-beb8-479b-a064-be1c96defc34","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/inference_sessions?project_name=consequat Ut non&task_name=sint Ut veniam tempor exercitation&model_name=aute ex&resume=false","host":[""],"path":["inference_sessions"],"query":[{"key":"project_name","value":"consequat Ut non"},{"key":"task_name","value":"sint Ut veniam tempor exercitation"},{"key":"model_name","value":"aute ex"},{"key":"resume","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"3b66cc6c-822e-47ee-ace2-3fd2f32e9c00","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/inference_sessions?project_name=consequat Ut non&task_name=sint Ut veniam tempor exercitation&model_name=aute ex&resume=false","host":[""],"path":["inference_sessions"],"query":[{"key":"project_name","value":"consequat Ut non"},{"key":"task_name","value":"sint Ut veniam tempor exercitation"},{"key":"model_name","value":"aute ex"},{"key":"resume","value":"false"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"8260a20a-47f1-41c1-9b07-975ca58b508d","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/inference_sessions?project_name=consequat Ut non&task_name=sint Ut veniam tempor exercitation&model_name=aute ex&resume=false","host":[""],"path":["inference_sessions"],"query":[{"key":"project_name","value":"consequat Ut non"},{"key":"task_name","value":"sint Ut veniam tempor exercitation"},{"key":"model_name","value":"aute ex"},{"key":"resume","value":"false"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"Excepteur velit amet\",\n        \"dolor culpa veniam\"\n      ],\n      \"msg\": \"elit dolor et ut do\",\n      \"type\": \"culpa co\"\n    },\n    {\n      \"loc\": [\n        \"Duis aliquip\",\n        \"laborum est in deserunt\"\n      ],\n      \"msg\": \"est aliqua nulla\",\n      \"type\": \"do velit dolor\"\n    }\n  ]\n}"}],"_postman_id":"e94983d6-7672-4a5f-89d5-9a47010ad5e5"},{"name":"List Inference Sessions","id":"8d5710e8-9f20-4e33-9d68-ea0f9cee3ace","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/inference_sessions?project_name=project_name","urlObject":{"path":["inference_sessions"],"host":[""],"query":[{"key":"project_name","value":"project_name"}],"variable":[]}},"response":[{"id":"fca5e619-b61b-4022-b94e-b2b1c0370a84","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/inference_sessions?project_name=deserunt","host":[""],"path":["inference_sessions"],"query":[{"key":"project_name","value":"deserunt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"d82d0767-7f74-4f1d-941b-0b0a50d380aa","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/inference_sessions?project_name=deserunt","host":[""],"path":["inference_sessions"],"query":[{"key":"project_name","value":"deserunt"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3007ab10-ade1-4001-b6a5-039321691aa2","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/inference_sessions?project_name=deserunt","host":[""],"path":["inference_sessions"],"query":[{"key":"project_name","value":"deserunt"}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"Excepteur velit amet\",\n        \"dolor culpa veniam\"\n      ],\n      \"msg\": \"elit dolor et ut do\",\n      \"type\": \"culpa co\"\n    },\n    {\n      \"loc\": [\n        \"Duis aliquip\",\n        \"laborum est in deserunt\"\n      ],\n      \"msg\": \"est aliqua nulla\",\n      \"type\": \"do velit dolor\"\n    }\n  ]\n}"}],"_postman_id":"8d5710e8-9f20-4e33-9d68-ea0f9cee3ace"},{"name":"Get Inference Session Status By Id","id":"535606d3-ec8d-42c7-bb8d-6c297662218d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/inference_sessions/:inference_session_id","urlObject":{"path":["inference_sessions",":inference_session_id"],"host":[""],"query":[],"variable":[{"id":"0a0ec5b8-adf4-4595-a3f3-c9cb90bdb176","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"inference_session_id","key":"inference_session_id"}]}},"response":[{"id":"4d0422e0-8ff0-446a-afc1-01293447e339","name":"200 OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/inference_sessions/:inference_session_id","host":[""],"path":["inference_sessions",":inference_session_id"],"variable":[{"key":"inference_session_id","value":"cupidatat et","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"8e1e911f-5844-4fdb-aaea-09ab8708413c","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"/inference_sessions/:inference_session_id","host":[""],"path":["inference_sessions",":inference_session_id"],"variable":[{"key":"inference_session_id","value":"cupidatat et","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"6e9b378c-c0d4-487e-b252-c8b3c88f3c8b","name":"Validation Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/inference_sessions/:inference_session_id","host":[""],"path":["inference_sessions",":inference_session_id"],"variable":[{"key":"inference_session_id","value":"cupidatat et","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"Excepteur velit amet\",\n        \"dolor culpa veniam\"\n      ],\n      \"msg\": \"elit dolor et ut do\",\n      \"type\": \"culpa co\"\n    },\n    {\n      \"loc\": [\n        \"Duis aliquip\",\n        \"laborum est in deserunt\"\n      ],\n      \"msg\": \"est aliqua nulla\",\n      \"type\": \"do velit dolor\"\n    }\n  ]\n}"}],"_postman_id":"535606d3-ec8d-42c7-bb8d-6c297662218d"},{"name":"Stop Inference Session","id":"c5d392f8-ec87-4172-bb41-a49a45867795","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":"/inference_sessions/:inference_session_id/stop","urlObject":{"path":["inference_sessions",":inference_session_id","stop"],"host":[""],"query":[],"variable":[{"id":"484b972a-2abb-468c-8a96-196427f8080d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"inference_session_id","key":"inference_session_id"}]}},"response":[{"id":"ac7f6d51-dd7e-4bb8-86c5-c79c86c81cb7","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/inference_sessions/:inference_session_id/stop","host":[""],"path":["inference_sessions",":inference_session_id","stop"],"variable":[{"key":"inference_session_id","value":"cupidatat et","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{}"},{"id":"66abaeda-87b7-4c41-bdc2-7493740f26f8","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"/inference_sessions/:inference_session_id/stop","host":[""],"path":["inference_sessions",":inference_session_id","stop"],"variable":[{"key":"inference_session_id","value":"cupidatat et","description":"(Required) "}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"fc14076c-71b4-4c9f-b619-d8350157b538","name":"Validation Error","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/inference_sessions/:inference_session_id/stop","host":[""],"path":["inference_sessions",":inference_session_id","stop"],"variable":[{"key":"inference_session_id","value":"cupidatat et","description":"(Required) "}]}},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"detail\": [\n    {\n      \"loc\": [\n        \"Excepteur velit amet\",\n        \"dolor culpa veniam\"\n      ],\n      \"msg\": \"elit dolor et ut do\",\n      \"type\": \"culpa co\"\n    },\n    {\n      \"loc\": [\n        \"Duis aliquip\",\n        \"laborum est in deserunt\"\n      ],\n      \"msg\": \"est aliqua nulla\",\n      \"type\": \"do velit dolor\"\n    }\n  ]\n}"}],"_postman_id":"c5d392f8-ec87-4172-bb41-a49a45867795"}],"id":"5f956f30-cd1f-4091-9afd-9fdd57371c38","_postman_id":"5f956f30-cd1f-4091-9afd-9fdd57371c38","description":""}],"event":[{"listen":"prerequest","script":{"id":"0f428b11-3e6e-4042-8c9b-ecd7f150b45b","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"663f2cfd-603b-4b06-b01c-96e3b3219f86","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"","type":"string"}]}